/*====================================
    L.C. ASSOCIATES
    Main Stylesheet — Complete Redesign
=====================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Brand Colors */
    --primary:        #1B6B3A;
    --primary-light:  #2E8B57;
    --primary-dark:   #134F2A;
    --accent:         #25A244;
    --accent-glow:    rgba(37,162,68,.18);

    /* Neutrals */
    --dark:           #0D1117;
    --dark-2:         #161B22;
    --dark-3:         #21262D;
    --mid:            #3D4451;
    --gray:           #6B7280;
    --gray-light:     #9CA3AF;
    --border:         #E5E7EB;
    --border-dark:    #30363D;
    --light:          #F9FAFB;
    --white:          #FFFFFF;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow:     0 4px 20px rgba(0,0,0,.08);
    --shadow-md:  0 8px 30px rgba(0,0,0,.12);
    --shadow-lg:  0 20px 60px rgba(0,0,0,.16);

    /* Typography */
    --font-body:    'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Transitions */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --dur:  .3s;

    /* Spacing */
    --section-py: 100px;
    --radius:     12px;
    --radius-lg:  20px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   UTILITIES
=========================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: var(--section-py) 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-glow);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(37,162,68,.25);
}

.section-title {
    text-align: center;
    margin-bottom: 65px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title p {
    color: var(--gray);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--dur) var(--ease);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27,107,58,.35);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(27,107,58,.25);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--light);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    transform: translateY(-2px);
}

/* ===========================
   HEADER / NAVBAR
=========================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    /* transition: all .4s var(--ease); */
    background: rgb(255,255,255);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

/* header.sticky {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
} */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: padding var(--dur) var(--ease);
}

/* header.sticky .navbar { padding: 14px 0; } */

.logo img {
    width: 220px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    /* border-radius: 8px; */
    /* color: var(--white); */
    transition: all var(--dur) var(--ease);
    position: relative;
    color: var(--mid);
}

/* header.sticky .nav-links a {
    color: var(--mid);
} */

.nav-links a:hover {
    color: var(--primary);
    background: var(--accent-glow);
}

header.sticky .nav-links a:hover {
    color: var(--primary);
}

.nav-links .active-nav {
    /* color: var(--primary) !important; */
    /* background: var(--accent-glow); */
    border-bottom: 3px solid var(--primary);
    font-weight: 600;
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    z-index: 10000;
    transition: color var(--dur);
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* header.sticky .menu-btn { color: var(--dark); } */

/* ===========================
   HERO SECTION
=========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0D2E1A 0%, #134F2A 40%, #1B6B3A 75%, #256D40 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(37,162,68,.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(37,162,68,.1) 0%, transparent 40%);
}

/* Animated grid pattern */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 80px;
}

.hero-text {}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,.9);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge i {
    color: #4ade80;
    font-size: 10px;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -.5px;
}

.hero-text h1 span {
    color: #4ade80;
    position: relative;
}

.hero-text p {
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.hero-trust-stat {
    text-align: center;
    flex: 1;
}

.hero-trust-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #4ade80;
}

.hero-trust-stat span {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.15);
}

/* Hero Image Card */
.hero-image-wrap {
    position: relative;
}

.hero-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.4);
}

.hero-card img {
    border-radius: var(--radius-lg);
    display: block;
}

.hero-card-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(13,17,23,.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-card-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.hero-card-badge-text strong {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.hero-card-badge-text span {
    color: rgba(255,255,255,.5);
    font-size: 12px;
}

/* Floating shapes */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.hero-blob-1 {
    width: 350px;
    height: 350px;
    background: rgba(37,162,68,.12);
    top: -100px;
    right: -100px;
}

.hero-blob-2 {
    width: 250px;
    height: 250px;
    background: rgba(27,107,58,.2);
    bottom: -50px;
    left: -80px;
}

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
    background: linear-gradient(135deg, #0D2E1A 0%, #134F2A 50%, #1B6B3A 100%);
    padding: 120px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    margin-bottom: 20px;
}

.page-hero-breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--dur); }
.page-hero-breadcrumb a:hover { color: #4ade80; }
.page-hero-breadcrumb .sep { color: rgba(255,255,255,.3); }
.page-hero-breadcrumb .current { color: #4ade80; }

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,.7);
    font-size: 17px;
    max-width: 580px;
    margin: 0 auto;
}

/* ===========================
   ABOUT SECTION (index)
=========================== */
.about { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about-image-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
}

.about-image-badge span {
    font-size: 13px;
    opacity: .85;
}

.about-text-wrap {}

.about-text-wrap .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.about-text-wrap p {
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 28px 0 32px;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-2);
    font-size: 14px;
}

.about-check-item i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

/* ===========================
   SERVICES SECTION
=========================== */
.services { background: var(--light); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    background: var(--accent-glow);
    border: 1px solid rgba(37,162,68,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 22px;
    transition: all .35s var(--ease);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.75;
}

/* ===========================
   WHY US / FEATURES
=========================== */
.why-us {}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all .3s var(--ease);
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37,162,68,.2);
}

.feature > i {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 18px;
    display: block;
}

.feature h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ===========================
   COUNTER / STATISTICS
=========================== */
.counter {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.counter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.counter-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.counter-box {
    padding: 20px 0;
}

.counter-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-box p {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { background: var(--light); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all .3s var(--ease);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 18px;
    display: block;
    opacity: .6;
}

.stars {
    color: #F59E0B;
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    color: var(--gray);
    font-style: italic;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
}

.testimonial-author span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
    background: linear-gradient(135deg, #0D2E1A 0%, #134F2A 50%, #1B6B3A 100%);
    padding: var(--section-py) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(37,162,68,.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(37,162,68,.08) 0%, transparent 40%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
}

.cta-inner p {
    color: rgba(255,255,255,.75);
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===========================
   GALLERY
=========================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.gallery-item:hover img { transform: scale(1.08); }

/* .gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    background: rgba(27,107,58,.6);
    opacity: 0;
    transition: opacity .3s;
}

.gallery-item:hover::after { opacity: 1; } */

/* ===========================
   ABOUT PAGE SPECIFIC
=========================== */
.mission-vision-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.mv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all .3s var(--ease);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mv-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(37,162,68,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 24px;
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Timeline */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.timeline-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all .3s var(--ease);
    text-align: left;
}

.timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37,162,68,.25);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.timeline-item h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 15px;
}

.timeline-item p {
    color: var(--gray);
    font-size: 13.5px;
    line-height: 1.7;
}

/* MD Message */
.md-message-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.md-quote {
    font-style: italic;
    font-size: 17px;
    color: var(--gray);
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.md-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 24px;
}

.md-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.md-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* FAQ */
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .3s;
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    cursor: pointer;
}

.faq-question i.fa-circle-question {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.faq-answer {
    padding: 0 24px 22px 56px;
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.8;
}

/* ===========================
   SERVICES PAGE SPECIFIC
=========================== */
.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 42px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: box-shadow .3s;
}

.service-detail-card:hover { box-shadow: var(--shadow-md); }

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(37,162,68,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    flex-shrink: 0;
}

.service-detail-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

.service-detail-header .sub {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

.service-detail-desc {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-detail-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.service-box {
    background: var(--light);
    border-radius: var(--radius);
    padding: 22px;
}

.service-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 15px;
}

.service-box h4 i { color: var(--primary); }

.service-box ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-box ul li {
    color: var(--gray);
    font-size: 14px;
    padding-left: 14px;
    position: relative;
}

.service-box ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.service-box p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.75;
}

.service-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
}

.service-pricing i { color: var(--primary); }

/* ===========================
   CONTACT PAGE SPECIFIC
=========================== */
.contact { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-info-desc {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.75;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: all .3s var(--ease);
}

.contact-info-card:hover {
    border-color: rgba(37,162,68,.3);
    box-shadow: var(--shadow-sm);
}

.contact-info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--accent-glow);
    border: 1px solid rgba(37,162,68,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 14px;
}

.contact-info-card .sub {
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 3px;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 42px;
    box-shadow: var(--shadow);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-desc {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27,107,58,.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Emergency Banner */
.emergency-banner {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.emergency-tag {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.emergency-banner h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.emergency-banner p {
    color: var(--gray);
    font-size: 14px;
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    height: 430px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand img {
    width: 220px;
    margin-bottom: 18px;
    opacity: .9;
}

.footer-desc {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: none;
    /* display: flex; */
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,.6);
    transition: all .3s;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.9);
    margin-bottom: 22px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 1px;
    background: var(--primary);
    transition: width .25s;
}

.footer-links a:hover::before { width: 12px; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list span {
    color: rgba(255,255,255,.5);
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255,255,255,.35);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,.35);
    font-size: 13px;
    transition: color .25s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ===========================
   BACK TO TOP
=========================== */
#topBtn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 48px;
    height: 48px;
    border: none;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    cursor: pointer;
    display: none;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: all .3s var(--ease);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

#topBtn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   REVEAL ANIMATION
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}