/* ==========================================================================
   S3 SANITARY & PEST CONTROL - MAIN STYLESHEET
   ========================================================================== */

:root {
    --primary: #1976D2;
    --primary-dark: #0D47A1;
    --secondary: #F5F5F5;
    --light-bg: #FFFFFF;
    --text-color: #333333;
    --text-light: #666666;
    --card-bg: #FFFFFF;
    --accent-blue: #2196F3;
    --success: #2E7D32;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(25, 118, 210, 0.2);
    /* Mobile/Responsive Variables */
    --header-height: 80px; 
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape on iOS */
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a { 
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow {
    max-width: 900px;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    padding: 10px 0;
    font-size: 13px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info a {
    color: #ffffff;
    font-weight: 500;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 1;
}

/* ==========================================================================
   SITE HEADER / LOGO SECTION
   ========================================================================== */
.site-header {
    background: var(--light-bg);
    padding: 15px 0;
    border-bottom: 1px solid #E8E8E8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo-text-main {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text-sub {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 4px;
}

.header-contact-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.header-contact-item {
    text-align: right;
}

.header-contact-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.header-contact-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: block;
    transition: color 0.3s;
}

.header-contact-value:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.nav-bar {
    background: var(--primary-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
    padding: 15px 0;
}

.nav a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 5px; /* Increase touch target */
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #FFD700;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #FFD700;
    left: 0;
    bottom: 5px;
    transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav-question {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    display: flex;
    align-items: center;
    padding: 100px 40px;
    gap: 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
}

.hero-text { 
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 { 
    font-size: 52px;
    color: var(--primary-dark);
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Subpage Hero */
.subpage-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
}

.subpage-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
}

.subpage-hero .container {
    position: relative;
    z-index: 1;
}

.subpage-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 30px 0;
    line-height: 1.2;
    color: white;
}

.subpage-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    color: rgba(255,255,255,0.9);
}

.hero-text p { 
    font-size: 19px;
    margin-top: 0;
    margin-bottom: 35px;
    line-height: 1.8;
    color: var(--text-color);
}

.cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.cta-btn:hover { 
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

.cta-btn.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-btn.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero img { 
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    height: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    transition: transform 0.3s;
}

.hero img:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   QUICK QUOTE FORM
   ========================================================================== */
.quick-quote {
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    color: white;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-quote::before, .quick-quote::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-quote::before {
    top: -200px;
    right: -200px;
}

.quick-quote::after {
    bottom: -200px;
    left: -200px;
}

.quick-quote .container {
    position: relative;
    z-index: 1;
}

.quick-quote h2 { 
    color: white;
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: 700;
}

.quick-quote p { 
    margin-bottom: 50px;
    opacity: 0.95;
    font-size: 18px;
}

.quote-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: box-shadow 0.3s;
    width: 100%;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.quote-form textarea { 
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

.quote-form button {
    grid-column: 1 / -1;
    background: white;
    color: var(--primary);
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */
.trust-badges {
    background: linear-gradient(135deg, var(--secondary), #ffffff);
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.badge {
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.badge .number { 
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.badge .label { 
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTIONS (SERVICES, WHY US, TESTIMONIALS)
   ========================================================================== */
.section-common, .services, .testimonials, .why-us, .service-areas {
    padding: 100px 40px;
}

.services, .testimonials {
    background: var(--light-bg);
}

.services h2, .testimonials h2, .why-us h2, .service-areas h2 { 
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.services-subtitle, .testimonials-subtitle, .why-us .intro, .service-areas-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.8;
}

.service-boxes {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(25, 118, 210, 0.12);
    text-align: left;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    height: 100%;
}

.service-box:hover { 
    transform: translateY(-10px);
    box-shadow: 0 16px 40px var(--shadow-hover);
    border-color: var(--primary);
}

.service-box img { 
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.service-box:hover img {
    transform: scale(1.1);
}

.service-box-content {
    padding: 30px;
}

.service-box h3 { 
    color: var(--primary-dark);
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
}

.service-box p { 
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

.why-us {
    background: linear-gradient(135deg, var(--secondary), #ffffff);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover { 
    transform: translateY(-10px);
    box-shadow: 0 12px 32px var(--shadow-hover);
}

.benefit-card .icon { 
    font-size: 56px;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.benefit-card h3 { 
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.benefit-card p { 
    color: var(--text-color);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card .text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

/* ==========================================================================
   SERVICE AREAS
   ========================================================================== */
.service-areas {
    background: linear-gradient(135deg, var(--secondary), #ffffff);
    text-align: center;
}

.service-areas-note {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 30px;
    font-style: italic;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.area-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    color: var(--text-color);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.2);
    color: var(--primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 40px 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-blue), var(--primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section-title {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-blue));
    border-radius: 2px;
}

.footer-section-text {
    color: #CCCCCC;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.footer-contact-info a {
    color: #CCCCCC;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.footer-contact-info a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact-info i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.footer-quick-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-quick-links a {
    color: #CCCCCC;
    transition: all 0.3s;
    display: inline-block;
    font-size: 15px;
}

.footer-quick-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: #bc1888;
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

/* ==========================================================================
   GENERIC / ABOUT PAGE STYLES
   ========================================================================== */
.section {
    padding: 100px 40px;
    background: var(--light-bg);
}

.section.split {
    background: linear-gradient(135deg, var(--secondary), #ffffff);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFD700;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-list li {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 50px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
}

.service-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15);
    border-left-color: var(--accent-blue);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(25, 118, 210, 0.2);
}

.avatar-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    display: block;
    border: 4px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-category {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary);
}

.client-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15);
}

.client-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.client-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-color);
    border-bottom: 1px solid #F0F0F0;
    transition: color 0.3s, padding-left 0.3s;
}

.client-list li:last-child {
    border-bottom: none;
}

.client-list li:hover {
    color: var(--primary);
    padding-left: 10px;
}

.client-list li::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.client-list li:hover::before {
    opacity: 1;
}

/* ==========================================================================
   MEDIA QUERIES (MOBILE FIRST OPTIMIZATIONS)
   ========================================================================== */
@media (max-width: 900px) {
    .hero-text h1 { font-size: 38px; }
    .hero-text p { font-size: 17px; }
    .hero { padding: 60px 20px; }
    .nav-wrapper { flex-direction: column; text-align: center; }
    .header-contact-section { justify-content: center; margin-top: 15px; }
    .header-contact-item { text-align: center; }
    .nav-bar .container { flex-direction: column; align-items: stretch; }
    .nav { justify-content: center; flex-wrap: wrap; gap: 15px; }
    .nav-question { width: 100%; text-align: center; padding-bottom: 15px; display: none; /* Hide question on mobile to save space */ }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .social-icons-footer { justify-content: center; }
    .split-grid { grid-template-columns: 1fr; gap: 40px; }
    .subpage-hero h1 { font-size: 36px; }
}

@media (max-width: 600px) {
    .container { padding: 0 15px; }
    .hero { padding: 40px 15px; text-align: center;}
    .hero-text h1 { font-size: 32px; }
    .hero-text p { font-size: 16px; }
    .hero-image-wrapper { margin-top: 30px; }
    .trust-badges { grid-template-columns: 1fr; gap: 20px;}
    .quote-form { grid-template-columns: 1fr; }
    .cta-buttons { justify-content: center; flex-direction: column; }
    .cta-btn { width: 100%; }
    .nav { flex-direction: column; gap: 10px; }
    .nav a { width: 100%; text-align: center; padding: 12px; background: rgba(255,255,255,0.05); border-radius: 4px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .top-bar .container { justify-content: center; flex-direction: column; gap: 5px; }
    .contact-info { justify-content: center; flex-direction: column; gap: 5px; }
}
