﻿:root {
    --primary-color: #FF66CC;
    /* Rose Pink */
    --primary-dark: #E655B8;
    --logo-blue: #007bff;
    /* Brand Blue */
    --secondary-color: #FFB3E6;
    /* Soft Rose */
    --accent-color: #ffd700;
    /* Vibrant Gold */
    --text-color: #2D1B26;
    /* Deep Rose-Charcoal */
    --text-light: #5A4050;
    --bg-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #FF66CC 0%, #E655B8 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(255, 102, 204, 0.2);
    --shadow-lg: 0 20px 50px rgba(255, 102, 204, 0.3);
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 30px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 102, 204, 0.5);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
    /* Smooth transition prevents jitter */
}

/* Scrolled state for thinner header */
.main-header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
}



.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cta a.btn-outline {
    color: #000000;
    border-color: #000000;
}

.header-cta a.btn-outline i {
    color: #000000;
}



/* Hero Section */
.hero {
    background: url('../assets/banner.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    filter: brightness(1.08);
    /* Lift overall brightness */
}

/* Mobile-only hero image (falls back to background on larger viewports) */
.hero-mobile-img {
    display: none;
    width: 100%;
    height: auto;
    max-height: 340px;
    /* limit height to avoid upscaling/blurriness */
    object-fit: cover;
    /* crop cleanly without stretching */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-bottom: 18px;
    image-rendering: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
    display: none;
    /* hidden by default; enabled for mobile only */
}

@media (max-width: 600px) {
    .main-header {
        padding: 6px 0;
    }

    .container-header {
        justify-content: center;
    }

    .header-cta {
        display: none;
    }

    .logo-img {
        height: 38px;
    }

    .hero {
        background-image: none;
        background-attachment: scroll;
        padding: 30px 0 40px;
        min-height: 360px;
    }

    .hero-overlay {
        /* lighter pinkish overlay to improve contrast without hiding image */
        display: block;
        /* show overlay only on small screens */
        background: linear-gradient(180deg, rgba(255, 192, 203, 0.08) 0%, rgba(255, 182, 193, 0.04) 100%);
        backdrop-filter: none;
    }

    .hero-content,
    .hero-content h1,
    .hero-content p {
        color: #ffffff;
        font-weight: 800;
        text-shadow: none;
    }

    .hero-mobile-img {
        display: block;
        opacity: 0.3;
        /* mobile banner image opacity */
        transition: opacity 200ms ease-in-out;
    }

    /* Center-align hero content and controls on small screens */
    .hero-grid {
        align-items: center;
        justify-items: center;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .badge {
        margin: 0 auto 18px;
        /* stronger, more visible badge on mobile */
        background: linear-gradient(90deg, #FF66CC 0%, #E655B8 100%);
        color: #ffffff;
        padding: 8px 18px;
        border-radius: 100px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 18px rgba(230, 85, 150, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.12);
        font-weight: 800;
        letter-spacing: 0.6px;
        position: relative;
        z-index: 3;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}



.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    min-height: inherit;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: #000000;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(255, 102, 204, 0.4);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.badge i {
    color: #ffd700;
    /* Gold for the award icon */
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000000;
    /* Solid black for peak prominence */
    max-width: 700px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    /* Soft light glow to lift from busy backgrounds */
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    word-spacing: normal;
    letter-spacing: -0.5px;
    color: #000000;
    /* Absolute black */
    font-weight: 800;
    /* Extra bold */
}

.hero-content h1 span {
    color: #E60073;
    /* Slightly darker, more prominent pink for the span */
    position: relative;
    display: inline-block;
}

.hero-content p {
    font-size: 1.1rem;
    color: #1a1a1a;
    /* Very dark gray for subtext */
    margin-bottom: 35px;
    max-width: 600px;
    text-align: justify;
    font-weight: 500;
    /* Medium weight for clarity */
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Compact hero buttons by default */
.hero-btns .btn {
    padding: 6px 12px;
    font-size: 0.95rem;
    border-radius: 10px;
    line-height: 1.2;
    width: auto;
    max-width: 220px;
    /* constrain width on larger viewports */
    flex: none;
}

.hero-stats {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2px;
    line-height: 1;
}

.stat-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-light);
    font-weight: 500;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: block;
    max-width: 100%;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floating 3s ease-in-out infinite;
    font-size: 0.9rem;
    white-space: nowrap;
}

.floating-card i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Footer credit */
.main-footer .footer-bottom .credit {
    font-size: 0.9rem;
    color: #7a5a68;
    margin-top: 6px;
    opacity: 0.95;
}

.main-footer .footer-bottom .credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .main-footer .footer-bottom .credit {
        font-size: 0.85rem;
    }
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.wave-bg {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bg svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bg .shape-fill {
    fill: #FFFFFF;
}

/* Services */
.services {
    padding: 60px 0;
    background: linear-gradient(160deg, #fff0f5 0%, #ffffff 40%, #fff0f5 100%);
    background-size: 200% 200%;
    animation: servicesBgShift 8s ease infinite;
    position: relative;
}

@keyframes servicesBgShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

/* Shimmer underline on section heading accent */
.section-header h2 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmerLine 2.5s linear infinite;
}

@keyframes shimmerLine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* â”€â”€ Services Showcase â”€â”€ */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 102, 204, 0.3), rgba(255, 102, 204, 0.3));
    color: var(--primary-color);
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 102, 204, 0.5);
}

.services-showcase {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 10px;
}

/* â”€â”€ Tab List â”€â”€ */
.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    border-radius: 14px;
    border: 1.5px solid #f0e0f5;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-tab:hover {
    border-color: rgba(234, 149, 189, 0.6);
    background: #fff5f8;
    transform: translateX(4px);
}

.service-tab.active {
    background: linear-gradient(135deg, #fff0f5 0%, #ffeef2 100%);
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 102, 204, 0.4);
    transform: translateX(6px);
}

.service-tab.active::before {
    opacity: 1;
}

.tab-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.4;
    font-family: 'Montserrat', sans-serif;
    min-width: 22px;
    transition: opacity 0.3s;
}

.service-tab.active .tab-num {
    opacity: 1;
}

.tab-label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.tab-icon-wrap {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Shared Icon Colors */
.icon-pink {
    background: linear-gradient(145deg, #fff0fb, #fce4f7);
    color: #FF66CC;
    border: 1px solid rgba(255, 102, 204, 0.3);
}

.icon-blue {
    background: linear-gradient(145deg, #f0f7ff, #e1efff);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.icon-purple {
    background: linear-gradient(145deg, #f5f0ff, #e9e1ff);
    color: #6a4c93;
    border: 1px solid rgba(106, 76, 147, 0.1);
}

.icon-teal {
    background: linear-gradient(145deg, #f0ffff, #e1ffff);
    color: #008080;
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.icon-cyan {
    background: linear-gradient(145deg, #f0fbff, #e1f5ff);
    color: #00bcd4;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.icon-orange {
    background: linear-gradient(145deg, #fffaf0, #fff3e1);
    color: #ff8c00;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.icon-coral {
    background: linear-gradient(145deg, #fff0f0, #ffe1e1);
    color: #fa5252;
    border: 1px solid rgba(250, 82, 82, 0.1);
}

.icon-gold {
    background: linear-gradient(145deg, #fffdf0, #fff9e1);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-tab:hover .tab-icon-wrap {
    transform: scale(1.1);
}

.service-tab.active .tab-icon-wrap {
    background: var(--gradient-primary);
    color: white;
}

.tab-label span {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

.service-tab.active .tab-label span {
    color: var(--primary-color);
}

.tab-arrow {
    font-size: 0.75rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s;
}

.service-tab.active .tab-arrow,
.service-tab:hover .tab-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* â”€â”€ Content Panel â”€â”€ */
.services-panel {
    position: relative;
    min-height: auto;
}

.service-panel {
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(135deg, #fff8fe 0%, #ffffff 100%);
    border-radius: 24px;
    box-shadow: 0 8px 50px rgba(255, 102, 204, 0.3);
    border: 1px solid rgba(255, 102, 204, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
}

.panel-image {
    position: relative;
    background: linear-gradient(145deg, #fff0f5 0%, #fff5f8 50%, #fffaff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

/* Decorative background elements */
.panel-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 204, 0.3) 0%, transparent 70%);
    z-index: 1;
}

/* Dot grid pattern overlay */
.panel-img-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 1.5px at 1px 1px, rgba(255, 102, 204, 0.2) 100%, transparent 0);
    background-size: 100% 100%, 25px 25px;
    z-index: 2;
    pointer-events: none;
}

/* Corner decorative blob top-right */
.panel-image .panel-img-glow::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 32, 208, 0.15) 0%, transparent 70%);
    top: -30px;
    right: -30px;
}

/* Corner blob bottom-left */
.panel-image .panel-img-glow::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 204, 0.4) 0%, transparent 70%);
    bottom: -20px;
    left: -20px;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 10px 20px rgba(255, 102, 204, 0.5));
    transition: transform 0.5s ease;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.panel-content {
    padding: 18px 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.panel-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.panel-icon-inner,
.prev-panel,
.next-panel {
    display: none;
}

.panel-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.panel-content h3 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0;
    color: var(--text-color);
}

.panel-content>p {
    font-size: 0.97rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
    text-align: justify;
}

.panel-inline-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff0f5, #fff5f8);
    padding: 12px;
    margin-bottom: 18px;
    filter: drop-shadow(0 6px 16px rgba(255, 102, 204, 0.5));
    transition: transform 0.4s ease;
}

.panel-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.panel-row .panel-inline-img {
    width: 300px;
    height: 280px;
    flex-shrink: 0;
    margin-bottom: 0;
    border-radius: 24px;
    padding: 16px;
}

.panel-row .panel-points {
    flex: 1;
    margin-bottom: 0;
}

.panel-points-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-points-col .panel-points {
    margin-bottom: 0;
}



.panel-points {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.panel-points li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.panel-content .btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.panel-content .btn i {
    transition: transform 0.3s;
}

.panel-content .btn:hover i {
    transform: translateX(5px);
}

/* Hide mobile panel nav arrows on desktop */
.prev-panel,
.next-panel {
    display: none !important;
}

/* â”€â”€ Services Responsive â”€â”€ */
@media (max-width: 1024px) {
    .services-showcase {
        grid-template-columns: 260px 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .services-showcase {
        grid-template-columns: 1fr;
    }

    .services-tabs {
        display: none;
    }

    .service-panel {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 20px;
    }

    .panel-image {
        padding: 20px;
        min-height: 160px;
    }

    .panel-content {
        padding: 24px 20px;
    }

    .panel-title-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: 0 0 20px 0 !important;
        width: 100% !important;
        height: 44px !important;
        /* Fixed height for the entire row */
    }

    /* Standardized flex container for all children of the title wrap */
    .prev-panel,
    .next-panel,
    .panel-title-wrap h3 {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 44px !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: normal !important;
    }

    .panel-title-wrap h3 {
        flex: 1 !important;
        font-size: 1.1rem !important;
        gap: 12px !important;
        font-weight: 700 !important;
        color: var(--text-color) !important;
    }

    .panel-icon-inner {
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 8px !important;
        font-size: 1rem !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    .prev-panel,
    .next-panel {
        display: flex !important;
        /* Restore on mobile */
        width: 44px !important;
        border-radius: 50% !important;
        background: #fff5f8 !important;
        border: 1px solid rgba(255, 102, 204, 0.3) !important;
        color: var(--primary-color) !important;
        font-size: 0.9rem !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
    }

    /* Precise adjustment for FontAwesome icons center of gravity */
    .panel-title-wrap i {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        height: 100% !important;
    }

    .prev-panel:active,
    .next-panel:active {
        background: var(--primary-color);
        color: white;
        transform: scale(0.9);
    }

    .panel-row {
        flex-direction: column;
        gap: 20px;
    }

    .panel-row .panel-inline-img {
        width: 100%;
        height: 220px;
        max-width: 320px;
        margin: 0 auto;
    }

    .panel-points-col {
        width: 100%;
    }

    .services-panel {
        min-height: auto;
    }
}

/* Why Us */
.why-us {
    background-color: var(--bg-light);
    padding: 100px 0;
}


.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-md);
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--accent-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.feature-list {
    margin-top: 30px;
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feat-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: justify;
}

/* Realistic Process Steps */
.process {
    padding: 10px 0;
    background: #fff;
    position: relative;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
    gap: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 182, 193, 0.05);
    transition: all 0.4s ease;
    flex: 1;
    max-width: 280px;
}

/* Step Connectors & Moving Icons */
.step-connector {
    flex: 0.4;
    height: 180px;
    margin-top: 40px;
    /* Aligns line exactly with center of 180px image */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5px;
}

.connector-line {
    width: 100%;
    height: 0;
    border-top: 3px dashed rgba(255, 102, 204, 0.5);
}

.moving-icon {
    position: absolute;
    font-size: 1.8rem;
    animation: moveAlongLine 4s infinite linear;
    z-index: 2;
    background: white;
    /* Give it a little mask */
    border-radius: 50%;
    padding: 2px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.moving-icon.icon-red {
    color: #ff4d4d;
}

.moving-icon.icon-blue {
    color: #3498db;
}

.moving-icon.icon-gold {
    color: #f1c40f;
}

@keyframes moveAlongLine {
    0% {
        left: 0%;
        opacity: 0;
        transform: translateX(-50%) scale(0.6);
    }

    15% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }

    85% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }

    100% {
        left: 100%;
        opacity: 0;
        transform: translateX(-50%) scale(0.6);
    }
}

@keyframes moveAlongLineVertical {
    0% {
        top: 0%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.6);
    }

    15% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }

    85% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        top: 100%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.6);
    }
}

@media (max-width: 600px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .step-connector {
        display: flex;
        width: 100%;
        height: 60px;
        margin-top: 0;
        justify-content: center;
    }

    .connector-line {
        width: 0;
        height: 100%;
        border-top: none !important;
        border-left: 3px dashed rgba(255, 102, 204, 0.5);
    }

    .moving-icon {
        position: absolute;
        animation: moveAlongLineVertical 3s infinite linear;
    }

    .step {
        width: 100%;
        max-width: 350px;
        padding: 30px 20px;
    }

    .step-icon {
        width: 140px;
        height: 140px;
    }
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.1);
}

.step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 102, 178, 0.05);
    /* Slight theme color tint */
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 0;
    font-family: 'Montserrat', sans-serif;
    transform: none;
    left: auto;
}

.step-icon {
    width: 180px;
    /* Increased to 180px for bold impact */
    height: 180px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    background: #fdf8ff;
    overflow: hidden;
    filter: brightness(1.1) contrast(1.05);
    transition: all 0.4s ease;
}

.step-icon:hover {
    transform: scale(1.05);
    filter: brightness(1.15) contrast(1.1);
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    /* Removed padding to make image bigger */
}



/* Realistic Multi-color styling */
.step-icon i {
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
}

.step h4 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}



/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, #fdf4ff 0%, #f8f9fa 50%, #fff5fb 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 30rem;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 182, 193, 0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.dots-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testi-nav {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid rgba(255, 102, 178, 0.15);
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testi-nav:active {
    background: var(--primary-color);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transition: all 0.5s ease;
}



.dots-wrap .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 102, 178, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 102, 178, 0.1);
}

.dots-wrap .dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 10px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 24px 20px;
    box-shadow: 0 4px 15px rgba(255, 102, 178, 0.05);
    border: 1px solid rgba(255, 182, 193, 0.08);
    position: relative;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 182, 193, 0.14);
    border-color: rgba(255, 102, 178, 0.2);
}

/* Featured (highlighted) cards */
.testimonial-card.testimonial-featured {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 10px 40px rgba(255, 182, 193, 0.25);
}

.testimonial-card.testimonial-featured:hover {
    box-shadow: 0 24px 60px rgba(255, 182, 193, 0.35);
}



.testimonial-card.testimonial-featured .testimonial-stars i {
    color: #ffd700;
}

.testimonial-card.testimonial-featured .testimonial-text {
    color: rgba(255, 255, 255, 0.92);
}

.testimonial-card.testimonial-featured .author-info h5 {
    color: #fff;
}

.testimonial-card.testimonial-featured .author-info span {
    color: rgba(255, 255, 255, 0.75);
}

.testimonial-quote-icon {
    margin-bottom: 16px;
}

.testimonial-quote-icon i {
    font-size: 2rem;
    color: rgba(255, 102, 178, 0.18);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.testimonial-stars i {
    color: #f0a500;
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 16px;
    font-style: italic;
    text-align: justify;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 182, 193, 0.08);
    padding-top: 14px;
}

.testimonial-card.testimonial-featured .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 102, 178, 0.2);
}

.testimonial-card.testimonial-featured .author-avatar {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.author-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 3px;
    font-family: 'Montserrat', sans-serif;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}



/* Testimonials Responsive */


.testimonials-external-link i {
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    .testimonials-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 10px 5px 30px !important;
        gap: 20px !important;
        margin: 0 -15px !important;
        /* Bleed off screen edges slightly */
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Hide scrollbar but keep functionality */
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonials-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .testimonial-card {
        flex: 0 0 88% !important;
        /* Show most of one card and a bit of the next */
        scroll-snap-align: center !important;
        min-width: 280px !important;
        padding: 28px 22px 22px !important;
    }

    .testimonial-card:hover {
        transform: none !important;
        /* Disable lift on mobile to avoid snap issues */
    }
}

/* Consultation Form */
.consultation {
    padding: 50px 0;
    background: var(--bg-white);
}

.form-container {
    background: rgba(255, 0, 127, 0.05);
    border-radius: var(--radius-md);
    padding: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Adjusted for better form fit */
    gap: 60px;
}

.form-wrapper {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.5s ease;
}

.close-form {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    display: none;
    /* Only show in floating/modal mode */
}


/* Mobile Modal Form */
@media (max-width: 600px) {
    .form-wrapper.is-modal {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 90vh;
        z-index: 2000;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
        padding-top: 50px;
        overflow-y: auto;
        transform: translateY(100%);
        visibility: hidden;
    }

    .form-wrapper.is-modal.active {
        transform: translateY(0);
        visibility: visible;
    }

    .form-wrapper.is-modal .close-form {
        display: block;
        background: var(--bg-light);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.5rem;
    }

    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 1999;
        display: none;
    }

    .modal-overlay.active {
        display: block;
    }
}

/* Reworked Form Styles */
.form-header-inner {
    margin-bottom: 12px;
    text-align: center;
}

.form-header-inner h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.form-header-inner p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 12px;
    position: relative;
}

.icon-input i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    opacity: 0.6;
    transition: 0.3s;
    pointer-events: none;
    z-index: 10;
}

.icon-input textarea~i {
    top: 25px;
}

.icon-input input,
.icon-input select,
.icon-input textarea {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    background: #fdfdfd;
    transition: all 0.3s ease;
    outline: none;
}

.icon-input textarea {
    height: 70px;
    resize: none;
}

.icon-input input:focus,
.icon-input select:focus,
.icon-input textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 102, 204, 0.5);
}

.icon-input input:focus~i,
.icon-input select:focus~i,
.icon-input textarea:focus~i {
    opacity: 1;
    color: var(--primary-color);
}

/* Phone Prefix Styles */
.phone-control {
    display: flex;
    align-items: center;
}

.phone-prefix {
    position: absolute;
    left: 38px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    z-index: 10;
    pointer-events: none;
    line-height: 1;
}

.phone-control input {
    padding-left: 72px !important;
}

/* Validation Error Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4d4d !important;
    background-color: #fff5f5 !important;
    box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.2) !important;
}

.form-group.error i {
    color: #ff4d4d !important;
    opacity: 1;
}

.form-group.error .phone-prefix {
    color: #ff4d4d !important;
}

.error-message {
    font-size: 0.75rem;
    color: #ff4d4d;
    position: absolute;
    bottom: -18px;
    left: 5px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group.error .error-message {
    opacity: 1;
    transform: translateY(0);
}

.shake {
    animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: 0.4s;
    width: 100%;
}

.btn-block:hover i {
    transform: translateX(5px) rotate(-15deg);
}

/* Form Stats & Emergency Box */
.form-stats {
    margin: 30px 0;
}

.form-stats li {
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-stats i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.emergency-box {
    background: white;
    padding: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    margin-top: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.emergency-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 102, 204, 0.2);
}

.emergency-box i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.emergency-box span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}

.emergency-box p {
    color: var(--text-color);
    font-weight: 700;
    margin: 0;
}

/* Footer */
.main-footer {
    /* subtler, pale background to reduce visual weight */
    background: linear-gradient(180deg, #fff6fb 0%, #fffafc 100%);
    color: #111112;
    /* near-black for better readability on lighter background */
    padding: 24px 0 12px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 0;
    filter: none;
    /* use regular/dark logo on subtle light background */
}

.footer-about p {
    color: #111112;
    margin-bottom: 18px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(17, 17, 18, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111112;
}

.social-links a:hover {
    background: rgba(230, 85, 184, 0.12);
}

.footer-nav h4,
.footer-contact h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #111112;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: #111112;
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.9rem;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: rgba(17, 17, 18, 0.06);
    color: #111112;
}

.footer-bottom {
    border-top: 1px solid rgba(17, 17, 18, 0.1);
    padding: 2px 0;
    color: #111112;
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Mobile CTAs */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.m-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    font-size: 0.75rem;
    font-weight: 600;
}

.m-cta i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.m-cta.call {
    background: #007bff;
    color: white;
}

.m-cta.whatsapp {
    background: #25D366;
    color: white;
}

.m-cta.book {
    background: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-btns {
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 40px 0 60px;
        min-height: 420px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-btns {
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }

    .hero-btns .btn {
        display: inline-block;
        padding: 6px 12px;
        font-size: 0.95rem;
        min-width: 120px;
        max-width: 220px;
        border-radius: 10px;
        flex: unset;
    }

    .hero-stats {
        gap: 30px;
        margin-top: 30px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .content-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hide-mobile {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        padding: 40px 20px;
        box-shadow: var(--shadow-md);
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
    }

    .mobile-sticky-footer {
        display: grid;
    }

    .main-footer {
        padding-top: 10px;
        padding-bottom: 60px;
        /* reduced to shrink footer height */
    }

    /* Stack footer columns and compact spacing */
    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        margin: 0 auto;
    }

    .footer-contact p {
        justify-content: flex-start;
        text-align: left;
        margin-bottom: 6px;
        font-size: 0.95rem;
    }

    /* Center-align footer and use near-black text for readability on mobile */
    .main-footer {
        text-align: center;
        color: #111112;
    }

    .footer-about p,
    .footer-nav a {
        color: #111112;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .footer-logo {
        filter: none;
        /* use dark logo on light/near-white text */
        margin: 0 auto 6px;
        height: 36px;
    }

    .social-links a {
        background: rgba(0, 0, 0, 0.06);
        color: #111112;
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        color: rgba(17, 17, 18, 0.7);
        border-top-color: rgba(0, 0, 0, 0.06);
        padding: 15px 0;
        font-size: 0.85rem;
    }

    .footer-bottom .container {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    /* Compact mobile sticky CTAs slightly */
    .mobile-sticky-footer .m-cta {
        padding: 8px 0;
        font-size: 0.72rem;
    }

    .mobile-sticky-footer .m-cta i {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .hero {
        padding: 40px 0 60px;
        min-height: 550px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 4px 12px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 30px 0 40px;
        min-height: 420px;
        background-attachment: scroll;
        background-image: none;
        background-color: transparent;
    }

    /* Make mobile banner behave like desktop: image as background with overlay */
    .hero-mobile-img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 420px;
        object-fit: cover;
        z-index: 0;
        border-radius: 0;
    }

    /* show overlay similar to desktop for text contrast */
    .hero-overlay {
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.08) 100%);
        z-index: 1;
    }

    /* container acts as positioned context */
    .container.hero-grid {
        position: relative;
        padding: 0 16px;
        max-width: 100%;
        z-index: 2;
    }

    /* keep hero content above overlay */
    .hero-content {
        position: relative;
        z-index: 3;
        background: transparent;
        padding: 0;
        border-radius: 0;
        color: #111112;
    }

    .hero-content h1,
    .hero-content p,
    .hero-content .badge {
        color: #111112;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .badge {
        font-size: 0.7rem;
        padding: 3px 10px;
        margin-bottom: 12px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 25px;
    }

    .hero-btns .btn {
        padding: 8px 12px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .hero-btns .btn-lg {
        padding: 8px 14px;
        font-size: 0.98rem;
    }

    /* Ensure hero CTAs are full-width and tappable on very small screens */
    .hero-btns {
        align-items: stretch;
        width: 100%;
    }

    .hero-btns .btn {
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 12px;
    }

    /* give primary CTA slight visual priority */
    .hero-btns .btn-primary {
        box-shadow: 0 12px 24px rgba(230, 85, 184, 0.18);
    }

    .hero-stats {
        gap: 15px;
        margin-top: 20px;
    }

    .stat-item {
        flex: 1;
    }

    .stat-item h3 {
        font-size: 1.1rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* ── When To Choose Section (Compact & Readable) ── */
.when-choose-us {
    padding: 16px 0;
    position: relative;
    background-color: #fff9fc;
}

.choose-wrapper {
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 102, 204, 0.1);
    overflow: hidden;
    min-height: 300px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.choose-left {
    flex: 0 0 40%;
    background: var(--gradient-primary);
    padding: 18px 25px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Abstract shapes background */
.choose-left::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.choose-left::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: -1;
}



.choose-left h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.choose-left h2 span {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    margin-top: 2px;
}

.choose-left p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 400;
}

@keyframes btn-shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes icon-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-4px);
    }

    60% {
        transform: translateY(-2px);
    }
}

.choose-left .btn-white {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    align-self: flex-start;
    padding: 13px 30px;
    border-radius: 50px;
    box-shadow:
        0 4px 18px rgba(255, 102, 204, 0.35),
        0 1px 4px rgba(0, 0, 0, 0.10);
    transition: all 0.35s ease;
    border: 2px solid rgba(255, 102, 204, 0.25);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* shimmer sweep */
.choose-left .btn-white::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.55) 50%,
            transparent 60%);
    background-size: 200% 100%;
    animation: btn-shimmer 2.4s linear infinite;
    pointer-events: none;
}

.choose-left .btn-white i {
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}

.choose-left .btn-white:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 8px 28px rgba(255, 102, 204, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--primary-color);
    border-color: rgba(255, 102, 204, 0.5);
}

.choose-left .btn-white:hover i {
    animation: icon-bounce 0.6s ease;
}

.choose-left .btn-white:active {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(255, 102, 204, 0.3);
}

/* Right Side - Grid Layout */
.choose-right {
    flex: 1;
    padding: 14px 25px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

/* 2-column 4-row grid layout */
.choose-list-simple {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 10px 20px;
    padding: 4px 4px;
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 1.05rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
    padding: 6px 14px;
    background: rgba(255, 102, 204, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 102, 204, 0.1);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.choose-item:hover {
    background: rgba(255, 102, 204, 0.09);
    box-shadow: 0 2px 10px rgba(255, 102, 204, 0.12);
}

.choose-item i {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Individual icon badge colors (bg + icon color) */
.ci-blue {
    background: rgba(74, 144, 226, 0.12);
    color: #4A90E2;
}

.ci-red {
    background: rgba(224, 82, 82, 0.12);
    color: #E05252;
}

.ci-amber {
    background: rgba(245, 166, 35, 0.12);
    color: #F5A623;
}

.ci-teal {
    background: rgba(38, 184, 154, 0.12);
    color: #26B89A;
}

.ci-indigo {
    background: rgba(108, 99, 255, 0.12);
    color: #6C63FF;
}

.ci-cyan {
    background: rgba(41, 182, 212, 0.12);
    color: #29B6D4;
}

.ci-rose {
    background: rgba(233, 30, 140, 0.12);
    color: #E91E8C;
}

.ci-purple {
    background: rgba(155, 89, 182, 0.12);
    color: #9B59B6;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .choose-wrapper {
        flex-direction: column;
    }

    .choose-left {
        padding: 40px 25px;
        text-align: center;
        align-items: center;
    }

    .choose-right {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .choose-list-simple {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .choose-left h2 {
        font-size: 1.8rem;
    }

    .choose-left h2 span {
        font-size: 2rem;
    }
}

/* Desktop: stack hero CTAs and enlarge slightly for emphasis */
@media (min-width: 601px) {
    .hero-btns {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .hero-btns .btn {
        padding: 12px 22px;
        font-size: 1.05rem;
        border-radius: 12px;
        max-width: 240px;
        /* slightly wider on desktop */
        width: auto;
    }

    .hero-btns .btn-lg {
        padding: 14px 26px;
        font-size: 1.08rem;
    }

    /* keep CTAs left-aligned with the content on wide layouts */
    .hero-content .hero-btns {
        align-items: flex-start;
    }
}

/* ── Desktop Premium Popup ── */
.desktop-popup {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.desktop-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.popup-inner {
    background: white;
    width: 90%;
    max-width: 850px;
    display: grid;
    grid-template-columns: 45% 55%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(40px) scale(0.9);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.desktop-popup.active .popup-inner {
    transform: translateY(0) scale(1);
}

.popup-image {
    position: relative;
    overflow: hidden;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-content {
    padding: 30px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.popup-form {
    margin-top: 5px;
}

.popup-form .form-group {
    margin-bottom: 8px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    height: 40px;
    font-size: 0.9rem;
    padding-top: 5px;
    padding-bottom: 5px;
}

.popup-form textarea {
    height: 60px;
}

.popup-form .btn {
    margin-top: 8px;
    height: 48px;
}

.popup-badge {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.popup-content h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.popup-content h2 span {
    color: var(--primary-color);
    display: block;
}

.popup-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.popup-actions .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
}

.popup-note {
    font-size: 0.85rem !important;
    margin-top: 25px;
    margin-bottom: 0 !important;
    opacity: 0.7;
    font-style: italic;
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* ── Floating WhatsApp Button ── */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    overflow: hidden;
}

.floating-whatsapp span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0;
    transition: all 0.4s ease;
    font-family: 'Montserrat', sans-serif;
}

.floating-whatsapp:hover {
    width: 180px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    transform: translateY(-5px);
}

.floating-whatsapp:hover span {
    max-width: 120px;
    margin-left: 10px;
}

.floating-whatsapp i {
    flex-shrink: 0;
}

/* Pulsing effect */
@keyframes whatsapp-pulse {
    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);
    }
}

.floating-whatsapp {
    animation: whatsapp-pulse 2s infinite;
}

@media (max-width: 600px) {
    .desktop-popup {
        display: none !important;
    }
}

@media (min-width: 601px) {
    .hide-desktop {
        display: none !important;
    }
}