:root {
    --primary-color: #0265DC;
    --primary-dark: #004BB3;
    --secondary-color: #00B5AD;
    --accent-color: #FDBA74;
    /* Soft orange for warmth/highlight */
    --text-dark: #1A202C;
    --text-muted: #596B7E;
    --bg-light: #F4F7FA;
    --bg-white: #FFFFFF;
    --bg-dark: #111827;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-6 {
    margin-top: 4rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: white;
}

.text-white p {
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.btn-light {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-light:hover {
    background-color: transparent;
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Navbar */
.navbar {
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 56px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
}

/* Hero */
.hero {
    padding: 130px 0 80px;
    /* Slight increase in top padding for balance */
    min-height: 95vh;
    display: flex;
    align-items: center;
    background-color: #F8FAFC;
    background-image: radial-gradient(#E2E8F0 1px, transparent 1px);
    background-size: 32px 32px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #FFFAF0;
    border: 1px solid #FDBA74;
    color: #C05621;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-benefits {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-benefits li {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
    /* Adjusted tracking for larger size */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-card .icon {
    font-size: 24px;
    background: #E6FFFA;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card strong {
    display: block;
    color: var(--text-dark);
}

.floating-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
    z-index: 10;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, rgba(2, 101, 220, 0.2) 0%, rgba(0, 181, 173, 0.2) 100%);
    z-index: -1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob-bounce 6s infinite ease-in-out alternate;
    filter: blur(40px);
}

@keyframes blob-bounce {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10px, -10px) scale(1.05);
    }
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* Stronger shadow */
    width: 100%;
    transition: transform 0.5s ease;
    border: 4px solid white;
    /* Clean boarder */
}



.floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: rgba(255, 255, 255, 0.75);
    /* Translucent */
    backdrop-filter: blur(12px);
    /* Glassmorphism */
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
    z-index: 12;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.card {
    background: white;
    padding: 0;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-img-header {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img-header img {
    transform: scale(1.1);
}

.card-body {
    padding: 24px;
    text-align: center;
}

.card-icon {
    /* Keeping this for fallback/other cards, but modifying margin */
    width: 80px;
    height: 80px;
    background-color: rgba(2, 101, 220, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 24px;
    /* Centered with top margin since card has 0 padding now */
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.problem-alert {
    background-color: #FFF5F5;
    border-left: 4px solid #F56565;
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 50px;
    text-align: center;
}

/* Mistakes Section */
.mistakes-section {
    padding: 100px 0;
}

.badge-red {
    color: #C53030;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    background: #FFF5F5;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.mistake-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #FED7D7;
    position: relative;
    transition: transform 0.3s ease;
}

.mistake-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(197, 48, 48, 0.1);
}

.mistake-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #FFF5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.mistake-icon {
    font-size: 40px;
}

.cross-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #C53030;
    color: white;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.mistake-card h3 {
    margin-bottom: 16px;
    color: #742A2A;
    /* Dark Red */
}

.mistake-card p {
    font-size: 0.95rem;
    color: #718096;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #F8FAFC;
}

.service-card {
    background: white;
    padding: 0;
    /* Remove padding from container */
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #F1F5F9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #BAE6FD;
}

/* New Full Bleed Image Styling */
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

/* Content Container */
.service-content {
    padding: 24px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    margin-top: auto;
    /* Push to bottom if needed */
}

.service-link svg {
    transition: transform 0.2s ease;
}

.service-link:hover {
    color: #1e40af;
    border-bottom-color: #1e40af;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(to right, #ffffff, #F8FAFC);
}

.align-center {
    align-items: center;
}

.badge-blue {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
    padding: 6px 12px;
    background: #EBF8FF;
    border-radius: 20px;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* Default gap */
}

.gap-xl {
    gap: 80px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.sol-feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.sol-feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.sol-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #EBF8FF;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sol-feature-item:hover .sol-icon {
    background: var(--primary-color);
    color: white;
}

.sol-text h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.sol-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #64748B;
}

.solution-image-wrapper {
    position: relative;
    padding: 20px;
}

.solution-main-img {
    border-radius: 24px;
    border: 8px solid white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: -20px;
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--secondary-color);
    animation: float 4s ease-in-out infinite;
}

.experience-badge .big-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.experience-badge .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* About / Video Section */
.about-section {
    padding: 100px 0 140px;
    /* Increased bottom padding */
    background-color: white;
}

.about-video-wrapper {
    position: relative;
    padding-bottom: 20px;
}


.about-content h2 {
    margin-bottom: 24px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 10;
    border: 4px solid white;
}

.video-container iframe,
.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.video-placeholder:hover .video-thumb {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-placeholder:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-icon-circle {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-icon-circle {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.video-accent-bg {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
    border-radius: var(--radius-md);
    z-index: 0;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #E2E8F0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .video-accent-bg {
        top: 10px;
        left: -10px;
    }
}

/* Process / Journey Section */
.process-section {
    padding: 140px 0 100px;
    /* Increased top padding */
    position: relative;
    overflow: hidden;
}

.bg-dark-blue {
    background-color: #0F172A;
    /* Deep Slate Blue */
    color: white;
}

.badge-accent {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.process-section h2 {
    color: white;
    margin-bottom: 16px;
}

.process-subtitle {
    color: #94A3B8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 80px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connector Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    /* Aligns with circle center */
    left: 100px;
    right: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 20px;
}

.step-marker {
    width: 80px;
    height: 80px;
    background: #1E293B;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 8px rgba(15, 23, 42, 1);
    /* Spacing from line */
}

.process-step:hover .step-marker {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(15, 23, 42, 1), 0 0 20px rgba(2, 101, 220, 0.5);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.step-content h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-content p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(2, 101, 220, 0.4);
}

.shadow-glow:hover {
    box-shadow: 0 0 30px rgba(2, 101, 220, 0.6);
}

/* Advantages */
.advantages-section {
    padding: 100px 0;
}

.bg-light-gradient {
    background: linear-gradient(to bottom, #FFFFFF, #F1F5F9);
}

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

.advantage-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.adv-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #EBF8FF;
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.advantage-card:hover .adv-icon-wrapper {
    background: var(--primary-color);
    color: white;
    transform: rotate(5deg);
}

.advantage-card h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.advantage-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

/* FAQ */
/* FAQ */
.faq-section {
    padding: 100px 0;
    position: relative;
    background-color: #F8FAFC;
    /* Consistent light background */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    margin-bottom: 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    border: 1px solid #F1F5F9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color), 0 10px 15px -3px rgba(2, 101, 220, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 32px;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Adjust if needed */
    opacity: 1;
}

.faq-answer-content {
    padding: 0 32px 32px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F1F5F9;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .icon-wrapper {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.faq-chevron {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

/* Final CTA */
.final-cta-section {
    padding: 100px 0;
    background: white;
}

.cta-inner-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(2, 101, 220, 0.4);
    color: white;
}

/* Background Pattern */
.cta-inner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 4px, transparent 4px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.cta-inner-card::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-whatsapp {
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    border: 2px solid #25D366;
    font-size: 1.2rem;
    padding: 18px 36px;
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
}

.courage-text {
    margin-top: 24px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Footer */
/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: #94A3B8;
    padding: 80px 0 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-box {
    display: inline-block;
    background: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.footer-logo-box img {
    height: 48px;
    width: auto;
}

.footer-desc {
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links li,
.footer-contact-list li,
.hours-list li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #94A3B8;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

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

.f-icon {
    font-size: 1.1rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.hours-list .time {
    color: white;
    font-weight: 500;
}

.footer-bottom {
    padding-top: 30px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .container {
        width: 100%;
    }

    .hero-container,
    .grid-3,
    .row,
    .grid-2,
    .steps-grid,
    .grid-4 {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .col-half {
        max-width: 100%;
    }

    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        order: -1;
        margin-bottom: 40px;
    }

    .floating-card {
        bottom: -20px;
        left: 10px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Mobile Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobile Process Timeline */
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
        /* Hide horizontal line */
    }

    .process-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
    }

    .step-marker {
        margin: 0;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .step-number {
        font-size: 1.2rem;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 2;
    background: black;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    z-index: 3;
    transition: transform 0.2s ease;
}

.close-modal:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

.modal-video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #F8FAFC, #FFFFFF);
}

.testimonial-slider {
    padding: 20px 10px 80px;
    /* Increased bottom padding */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    cursor: pointer;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(2, 101, 220, 0.3);
}

.video-thumb-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    overflow: hidden;
}

.video-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: transform 0.6s ease;
}

.testimonial-card:hover .video-thumb-img {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.testimonial-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.2);
}

/* Glassmorphism Play Button */
.play-icon-small {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    padding-left: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover .play-icon-small {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
}

.testimonial-caption {
    padding: 24px;
    text-align: center;
    height: 100%;
}

.testimonial-caption h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.testimonial-caption p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Location & Reviews Section */
.location-section {
    padding: 100px 0;
    background-color: white;
    border-top: 1px solid #E2E8F0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    /* Make both columns equal height */
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: 100%;
    /* Fill the grid cell */
    min-height: 450px;
    /* Minimum height to ensure visibility */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.reviews-container {
    padding: 20px;
}

.review-summary-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    text-align: center;
}

.review-summary-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.rating-badge .score {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.rating-badge .stars {
    font-size: 1.5rem;
    color: #F59E0B;
    /* Amber/Gold */
    margin-top: 8px;
    letter-spacing: 4px;
}

.review-count {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.mini-reviews {
    text-align: left;
    margin-bottom: 30px;
    background: #FAFAFA;
    border-radius: 12px;
    padding: 20px;
}

.mini-review-item {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #EEEEEE;
}

.mini-review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

/* Google Branding */
.google-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.google-logo-wrapper span {
    font-size: 1.5rem;
    color: #5f6368;
    font-weight: 400;
    position: relative;
    top: 2px;
}

/* Section Header tweaks */
.section-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
        order: 2;
        /* Reviews first on mobile? Or map first? Let's keep map 2nd or 1st depending on preference. */
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Grid 4 Utility */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    /* Clean background or keep it simple if overriding */
}

.final-cta-section .cta-inner-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.final-cta-section .cta-inner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 40%);
    pointer-events: none;
}

.final-cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #20b857;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.courage-text {
    font-size: 0.9rem !important;
    margin-top: 20px;
}



/* Service Grid for 5 items */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Center the last 2 items if there are 5 items */
    .service-grid:has(> :nth-child(5):last-child) {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-grid:has(> :nth-child(5):last-child)>* {
        width: calc(33.333% - 20px);
        max-width: 380px;
    }
}

@media (max-width: 1023px) {
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* =========================================
   Mobile Navigation & Sticky UI
   ========================================= */

/* Desktop/Mobile Utility Classes */
.desktop-only {
    display: inline-flex;
}

.mobile-only {
    display: none;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Nav Backdrop */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2s infinite;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 24px 40px;
        gap: 20px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .sticky-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .sticky-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #E2E8F0;
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }
}

/* ============================================
   Services Page Specific Styles
   ============================================ */

.service-card-boxed {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.s-card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-card-boxed h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.service-card-boxed p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.75rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .service-card-boxed {
        padding: 1.5rem;
    }
}

.sticky-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2s infinite;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 24px 40px;
        gap: 20px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .sticky-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .sticky-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #E2E8F0;
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }
}

/* ============================================
   Services Page Specific Styles
   ============================================ */

.service-card-boxed {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.s-card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-card-boxed h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.service-card-boxed p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.75rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .service-card-boxed {
        padding: 1.5rem;
    }
}

/* Services Page Specific - Merged */
.section-wrapper {
    padding: 100px 0;
}

.section-wrapper .adv-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.bg-light-gradient {
    background: linear-gradient(to bottom, #F8FAFC, white);
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
}

.final-cta-section .cta-inner-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.final-cta-section .cta-inner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 40%);
    pointer-events: none;
}

.final-cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Spacing Utilities */
.mb-3 {
    margin-bottom: 1.5rem !important;
}

/* Privacy Policy Page */
.page-header {
    padding: 140px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
    border-bottom: 1px solid #E2E8F0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.privacy-content-wrapper {
    padding: 60px 0 100px;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-intro p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid #EBF8FF;
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-box {
    background: #FFFFFF;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    margin-top: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #EBF8FF;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-value {
    display: block;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}


/* Breadcrumb Navigation */
.breadcrumb {
    padding: 1rem 0;
    background-color: transparent;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #CBD5E0;
    margin-right: 8px;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
    pointer-events: none;
    /* Current page shouldn't be clickable */
}

/* Adjustments for specific pages */
.page-header .breadcrumb {
    justify-content: center;
    /* Center breadcrumb in centered headers */
    margin-bottom: 0.5rem;
}

.page-header .breadcrumb-list {
    justify-content: center;
}