/* ===================================
   KARMA CARE - MAIN STYLESHEET
   =================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #1B9560;
    --primary-dark: #157048;
    --primary-light: #89BB3E;
    --secondary-color: #89BB3E;
    --accent-color: #a8d060;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --text-light: #777777;
    --bg-white: #ffffff;
    --bg-light: #f4faf6;
    --bg-gray: #eef7f1;
    --border-color: #d6ede2;
    --shadow-sm: 0 2px 8px rgba(27, 149, 96, 0.08);
    --shadow-md: 0 4px 16px rgba(27, 149, 96, 0.12);
    --shadow-lg: 0 8px 32px rgba(27, 149, 96, 0.16);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: clip; /* clip instead of hidden — allows fixed children to show */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* === CONTAINER === */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 34px;
    min-width: 160px;
    height: 52px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.975rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

/* Primary — solid #1B9560 */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(27, 149, 96, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 149, 96, 0.45);
}

/* Secondary — solid #89BB3E */
.btn-secondary {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
    box-shadow: 0 4px 14px rgba(137, 187, 62, 0.35);
}

.btn-secondary:hover {
    background: #74a232;
    border-color: #74a232;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 187, 62, 0.45);
}

/* Outline — transparent with #1B9560 border */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* White — used on dark/coloured backgrounds */
.btn-white {
    background: white;
    color: var(--primary-color);
    border-color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

/* === TOP BAR === */
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar a {
    color: white;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.top-bar i {
    margin-right: 6px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* === NAVBAR === */
.navbar {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* === DROPDOWN === */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(27,149,96,.15), 0 2px 8px rgba(0,0,0,.08);
    border: 1px solid var(--border-color);
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 999;
    list-style: none;
}

/* arrow tip */
/* .nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    rotate: 45deg;
} */

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-dropdown-menu li a i {
    width: 28px;
    height: 28px;
    background: var(--bg-light);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-dropdown-menu li a:hover i {
    background: var(--primary-color);
    color: white;
}

.nav-dropdown-menu li a::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO SLIDER === */
.hero-slider-section {
    position: relative;
    width: 100%;
}

.hero-swiper {
    width: 100%;
    height: calc(100vh - 150px);
    min-height: 600px;
    max-height: 860px;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* display: flex; */
    align-content: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.432) 50%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}


.hero-content {
    max-width: 680px;
    color: white;
}

.swiper-slide-active .hero-content {
    animation: heroFadeUp 0.8s ease both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Override AOS animations so all elements animate from bottom to up */
[data-aos] {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    will-change: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 22px;
    color: white;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-highlight {
    color: #89BB3E;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.2rem;
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 34px;
    min-width: 160px;
    height: 52px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.975rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    background: transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
}

/* Swiper nav arrows */
.hero-prev,
.hero-next {
    width: 52px !important;
    height: 52px !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white !important;
    transition: var(--transition);
    top: 50% !important;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-prev::after,
.hero-next::after {
    font-size: 1rem !important;
    font-weight: 700;
}

/* Swiper pagination */
.hero-pagination {
    bottom: 28px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 90vh;
        min-height: 520px;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-prev,
    .hero-next {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.875rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* === SECTION STYLES === */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* === SERVICE CARDS === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    transform: scaleY(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(27, 149, 96, 0.1), rgba(137, 187, 62, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

.service-card h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

/* === ABOUT PREVIEW === */
.about-preview {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    border-radius: 20px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.about-badge-text strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.about-badge-text span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* === STATS === */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px 30px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 16px;
    border: 1px solid rgba(255,255,255,.2);
}

.stat-item h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-item p {
    color: rgba(255,255,255,.8);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* === WHY CHOOSE US — split layout === */
.why-section {
    background: linear-gradient(145deg, #0d4a2e 0%, #1B9560 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.why-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
}

.why-image-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.why-image-badge strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.why-image-badge span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.why-content-col h2 {
    margin: 12px 0 16px;
    color: white;
}

.why-content-col > p {
    margin-bottom: 30px;
    color: rgba(255,255,255,.75);
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 34px;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(255,255,255,.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.why-feature-item h5 {
    font-size: 1rem;
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.why-feature-item p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255,255,255,.7);
}

.why-content-col .section-badge {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.2);
}

/* === HOW IT WORKS — timeline === */
/* .how-section {
    background: var(--bg-light);
} */

.how-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 20px;
}

.how-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.how-step-num {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    background: var(--primary-light);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.how-step-icon {
    width: 72px;
    height: 72px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(27,149,96,.15);
    transition: var(--transition);
}

.how-step:hover .how-step-icon {
    background: var(--primary-color);
    color: white;
}

.how-step h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.how-step p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.how-connector {
    flex: 0 0 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    margin-top: 36px;
    border-radius: 2px;
    opacity: 0.4;
}

/* === TESTIMONIALS — full width === */
.testimonials-section {
    background: var(--bg-light);
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '\201C';
    position: absolute;
    top: -60px;
    left: 4%;
    font-size: 28rem;
    line-height: 1;
    color: rgba(27,149,96,.06);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonials-section .section-header h2 {
    color: var(--text-dark);
}

.testimonials-section .section-header p {
    color: var(--text-gray);
}

.testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(27,149,96,.1);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid rgba(27,149,96,.2);
}

/* Swiper */
.tf-swiper {
    padding: 10px 4px 50px !important;
}

.tf-swiper .swiper-slide {
    height: auto;
}

/* Card */
.tf-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tf-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tf-quote-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 14px;
    opacity: 0.6;
}

.tf-stars {
    color: #f9a825;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.tf-card p {
    color: var(--text-gray);
    font-size: 0.975rem;
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}

.tf-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.tf-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.tf-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
}

.tf-author span {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Dots — sit below the cards with clear space */
.tf-pagination {
    bottom: 4px !important;
    left: 0 !important;
    width: 100% !important;
    text-align: center !important;
}

.tf-pagination .swiper-pagination-bullet {
    background: var(--border-color);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.tf-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .how-timeline {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .how-connector {
        width: 3px;
        height: 30px;
        flex: none;
        margin: 0;
        background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    }

    .how-step {
        width: 100%;
        max-width: 280px;
    }
}

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === ABOUT PAGE === */

/* Hero — split layout */
.about-hero {
    background: linear-gradient(135deg, rgba(27,149,96,0.96), rgba(13,74,46,0.97)),
        url('assets/images/main.jpg') center/cover;
    padding: 80px 0 0;
    text-align: left;
    overflow: hidden;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
}

.about-hero-content {
    padding-bottom: 60px;
}

.about-hero-content h1 {
    color: white;
    font-size: 2.8rem;
    margin: 16px 0 20px;
    line-height: 1.2;
}

.about-hero-content p {
    color: rgba(255,255,255,.82);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.about-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-hero-image {
    align-self: flex-end;
}

.about-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px 20px 0 0;
    display: block;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,.8);
}

.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: white; }

/* Stats bar */
.about-stats-bar {
    background: white;
    box-shadow: 0 4px 24px rgba(27,149,96,.1);
    position: relative;
    z-index: 2;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    divide-x: 1px solid var(--border-color);
}

.about-stat {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.about-stat:last-child { border-right: none; }

.about-stat strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat span {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Mission & Vision — dark section */
.about-mv-section {
    background: linear-gradient(145deg, #0d4a2e 0%, #1B9560 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-mv-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 20px;
}

.mv-divider {
    width: 1px;
    background: rgba(255,255,255,.2);
    margin: 0 50px;
    min-height: 200px;
}

.mv-card-new {
    padding: 10px 0;
}

.mv-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 20px;
}

.mv-card-new h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.mv-card-new p {
    color: rgba(255,255,255,.78);
    font-size: 0.975rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Core Values — numbered cards */
.values-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-new-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.value-new-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.value-new-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(27,149,96,.08);
    font-family: var(--font-heading);
    line-height: 1;
}

.value-new-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(27,149,96,.12), rgba(137,187,62,.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.value-new-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-new-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Commitment strip */
.about-commitment {
    background: var(--bg-light);
    padding: 80px 0;
}

.commitment-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.commitment-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.commitment-text p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.commitment-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.commitment-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.commitment-points span i {
    color: var(--primary-color);
}

.commitment-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* page-hero generic (services, contact) */
.page-hero:not(.about-hero) {
    background: linear-gradient(135deg, rgba(27,149,96,0.95), rgba(21,112,72,0.9)),
        url('assets/images/brain.jpg') center/cover;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero:not(.about-hero) h1 { color: white; margin-bottom: 15px; }
.page-hero:not(.about-hero) p {
    color: rgba(255,255,255,.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-hero-image { display: none; }
    .about-hero { padding: 80px 0 60px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .mv-grid { grid-template-columns: 1fr; }
    .mv-divider { display: none; }
    .values-new-grid { grid-template-columns: repeat(2, 1fr); }
    .commitment-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-new-grid { grid-template-columns: 1fr; }
    .about-hero-content h1 { font-size: 2rem; }
}

/* === SERVICES PAGE === */

/* Trust bar */
.trust-bar {
    background: var(--primary-color);
    padding: 14px 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-bar-inner span {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.trust-bar-inner span i {
    color: #c8f0a0;
    font-size: 1rem;
}

/* Service rows */
.svc-row {
    padding: 80px 0;
    background: #fff;
}

.svc-row--alt {
    background: var(--bg-light);
}

.svc-row-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Alternate: image on right */
.svc-row--alt .svc-row-inner {
    direction: rtl;
}
.svc-row--alt .svc-content {
    direction: ltr;
}

/* Image */
.svc-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.svc-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.svc-image-wrap:hover img {
    transform: scale(1.03);
}

/* Label badge on image */
.svc-img-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.svc-img-label i {
    font-size: 1rem;
}

/* Content */
.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-gray);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid var(--border-color);
}

.svc-content h2 {
    font-size: 2.25rem;
    margin-bottom: 18px;
    line-height: 1.25;
    color: var(--text-dark);
}

.svc-content p {
    font-size: 0.975rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.75;
}

/* 2-column feature list */
.svc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin: 22px 0 28px;
    list-style: none;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-dark);
}

.svc-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Actions row */
.svc-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.svc-learn-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.svc-learn-more:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 900px) {
    .svc-row-inner,
    .svc-row--alt .svc-row-inner {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 36px;
    }

    .svc-image-wrap img {
        height: 300px;
    }

    .svc-content h2 {
        font-size: 1.75rem;
    }

    .trust-bar-inner {
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .svc-features {
        grid-template-columns: 1fr;
    }

    .trust-bar-inner span:nth-child(n+4) {
        display: none;
    }
}

/* === CONTACT PAGE === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: var(--border-radius);
    padding: 40px;
}

.contact-info-card h3 {
    color: white;
    margin-bottom: 10px;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-text strong {
    display: block;
    margin-bottom: 3px;
}

.contact-detail-text a,
.contact-detail-text span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-form-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-success {
    display: none;
    background: #e8f5e9;
    border: 1px solid var(--primary-color);
    color: var(--primary-dark);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Submitted confirmation card */
.form-submitted {
    text-align: center;
    padding: 40px 20px;
}

.form-submitted-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 6px 20px rgba(27, 149, 96, 0.35);
}

.form-submitted h4 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-submitted p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.form-submitted-sub {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
}

.form-submitted-sub a {
    color: var(--primary-color);
    font-weight: 600;
}

.form-error {
    display: none;
    background: #ffebee;
    border: 1px solid #ef5350;
    color: #c62828;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.map-section {
    padding: 0 0 80px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: none;
}

/* === FOOTER === */
.footer {
    background: #0d2318;
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 250px;
    height: auto;
}

.footer-brand .logo-name {
    color: white;
}

.footer-brand .logo-tagline {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-col ul li a i {
    font-size: 0.75rem;
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: var(--primary-light);
}

.ndis-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 149, 96, 0.3);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-top: 15px;
}

.footer-bottom {
    max-width: 1600px;
    margin: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* === MOBILE SIDEBAR === */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1100;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    height: 100dvh;
    background: white;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-sidebar.open {
    transform: translateX(0) !important;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-light);
}

.sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-close:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
}

.sidebar-link i {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.sidebar-link.active i,
.sidebar-link:hover i {
    background: var(--primary-color);
    color: white;
}

/* Sidebar accordion for Services */
.sidebar-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.sidebar-accordion-toggle span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-accordion-toggle span i {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.sidebar-accordion-toggle:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.sidebar-chevron {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.sidebar-accordion.open .sidebar-chevron {
    transform: rotate(180deg);
}

.sidebar-accordion.open .sidebar-accordion-toggle {
    background: var(--bg-light);
    color: var(--primary-color);
}

.sidebar-accordion.open .sidebar-accordion-toggle span i {
    background: var(--primary-color);
    color: white;
}

.sidebar-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.sidebar-accordion.open .sidebar-accordion-body {
    max-height: 400px;
}

.sidebar-accordion-body a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-accordion-body a i {
    font-size: 0.8rem;
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.sidebar-accordion-body a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-contact a i {
    color: var(--primary-color);
    width: 16px;
}

.sidebar-contact a:hover {
    color: var(--primary-color);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .why-split { grid-template-columns: 1fr; gap: 40px; }
    .why-image-wrap img { height: 360px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar {
        position: relative;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 10px;
        font-size: 0.8rem;
    }

    .about-badge {
        left: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .scroll-top {
        right: 20px;
        bottom: 85px;
    }
}

/* ===================================
   IMAGE SERVICES GRID
   =================================== */

.img-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 320px 320px 320px;
    gap: 12px;
}

/* Row 1 — 1 col */
.isg-r1c1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* Row 1 — 2 cols wide */
.isg-r1c2 {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

/* Row 2 — col 1 */
.isg-r2c1 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Row 2 — col 2 */
.isg-r2c2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Col 3 — spans rows 2 & 3 */
.isg-r2c3 {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

/* Row 3 — 2 cols wide */
.isg-r3c1 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

/* Base card styles */
.img-service-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.img-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.img-service-card:hover img {
    transform: scale(1.06);
}

/* Overlay */
.img-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.55) 100%);
    transition: background 0.3s ease;
}

.img-service-card:hover .img-service-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.72) 100%);
}

/* + button — centered, appears on hover */
.img-service-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) scale(0.7);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.img-service-card:hover .img-service-plus {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Bottom bar */
.img-service-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
}

.img-service-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.img-service-icon-badge {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.img-service-card:hover .img-service-icon-badge {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 900px) {
    .img-services-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 280px);
    }

    .isg-r1c1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .isg-r1c2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .isg-r2c1 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .isg-r2c2 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .isg-r2c3 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .isg-r3c1 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
}

@media (max-width: 560px) {
    .img-services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 260px);
    }

    .isg-r1c1,
    .isg-r1c2,
    .isg-r2c1,
    .isg-r2c2,
    .isg-r2c3,
    .isg-r3c1 {
        grid-column: 1 / 2 !important;
        grid-row: unset !important;
    }
}