/* =========================================
   GPT REMOVALS - MASTER STYLESHEET
   ========================================= */

:root {
    /* Color Psychology Variables */
    --primary: #0A3D62;         /* Deep Trust Blue: Stability, security */
    --secondary: #FF6B00;       /* Vibrant Action Orange: High conversion */
    --secondary-hover: #E65C00; /* Darker orange for hover state */
    --text: #2D3436;            /* Soft Charcoal: Easy readability */
    --bg: #F4F7F6;              /* Cool Off-White: Clean background */
    --white: #ffffff;
    --success: #25D366;         /* WhatsApp Green: Communication */
}

/* --- Base Resets & Typography --- */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', system-ui, sans-serif; }
body { color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: var(--primary); transition: color 0.3s ease; }
a:hover { color: var(--secondary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { margin-bottom: 1rem; color: var(--primary); }
h1 { font-size: 2.5rem; font-weight: 800; }

/* --- Header & Navigation --- */
header { background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { font-weight: 600; color: var(--text); }
nav a:hover { color: var(--secondary); }
.phone-cta { background: var(--white); color: var(--primary); padding: 10px 20px; border-radius: 5px; font-weight: bold; border: 2px solid var(--primary); transition: all 0.3s ease; }
.phone-cta:hover { background: var(--primary); color: var(--white); }

/* --- Split Hero Banner (Homepage) --- */
.hero-split { background-color: #E2E8F0; padding: 80px 20px; }
.hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { flex: 1; }
.hero-text h1 { color: var(--primary); font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.hero-text p { font-size: 1.3rem; color: var(--text); margin-bottom: 30px; }
.hero-image { flex: 1; text-align: right; }
.hero-image img { max-width: 100%; height: auto; border-radius: 12px; box-shadow: 0 15px 35px rgba(10, 61, 98, 0.15); border: 5px solid var(--white); }

/* --- Scrolling Testimonials Banner --- */
.scrolling-wrapper {
    background-color: var(--primary);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid var(--secondary);
}
.scrolling-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-left 40s linear infinite; 
}
.scrolling-track:hover {
    animation-play-state: paused;
}
.scroll-card {
    background: var(--white);
    color: var(--text);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    width: 400px; 
    max-width: 85vw; /* Ensures it fits on small phones */
    flex-shrink: 0; 
}
.scroll-card .stars {
    color: #FFC107;
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.scroll-card p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}
.scroll-card .client-name {
    font-weight: bold;
    color: var(--primary);
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* --- High-Converting Buttons --- */
.btn-primary { 
    background: var(--secondary); 
    color: #fff; 
    padding: 15px 30px; 
    font-size: 1.2rem; 
    border-radius: 5px; 
    font-weight: bold; 
    display: inline-block; 
    margin-top: 20px; 
    border: none; 
    cursor: pointer; 
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary:hover { background: var(--secondary-hover); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4); color: #fff; }

/* --- Grids & Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin: 40px 0; }
.card { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 4px solid var(--primary); }

/* --- Forms & Calculator --- */
form { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 15px; }
input, select, textarea { width: 100%; padding: 12px; border: 1px solid #d1d8e0; border-radius: 4px; font-size: 1rem; transition: border-color 0.3s ease; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 5px rgba(255, 107, 0, 0.2); }
.calc-total { font-size: 1.8rem; font-weight: bold; color: var(--secondary); margin-top: 20px; }

/* --- FAQ Accordion --- */
.faq-item { background: var(--white); margin-bottom: 15px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-left: 4px solid var(--primary); overflow: hidden; }
.faq-item summary { padding: 20px; font-size: 1.2rem; font-weight: bold; color: var(--primary); cursor: pointer; list-style: none; position: relative; transition: color 0.3s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--secondary); }
.faq-item summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--secondary); }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 20px 20px 20px; font-size: 1.1rem; color: var(--text); line-height: 1.6; }

/* --- Conversion Elements --- */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: var(--success); color: white; border-radius: 50px; padding: 12px 24px; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000; font-weight: bold; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.05); color: white; }
.sticky-quote { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--secondary); color: white; text-align: center; padding: 15px; display: none; z-index: 999; box-shadow: 0 -4px 10px rgba(0,0,0,0.1); }
.sticky-quote a { color: white; font-weight: bold; text-transform: uppercase; font-size: 1.1rem; display: block; }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    nav ul { display: none; }
    .header-flex { flex-direction: column; gap: 10px; }
    h1 { font-size: 2rem; }
    .hero-flex { flex-direction: column-reverse; text-align: center; gap: 20px; }
    .hero-image { text-align: center; width: 100%; }
    .hero-text h1 { font-size: 2.5rem; }
    .sticky-quote { display: block; }
    .whatsapp-float { bottom: 70px; }
}