:root {
    /* --- COLOR PALETTE: DEEP ROYAL BLUE & CLEAN WHITES --- */
    --primary-color: #0F4C75;
    /* Deep Royal Blue - Authority & Trust */
    --primary-light: #3282B8;
    /* Bright Professional Blue - Communication */
    --primary-dark: #1B262C;
    /* Dark Navy/Charcoal - Text & Footers */

    --accent-color: #FFA500;
    /* Golden Orange - Calls to Action (High Contrast) */
    --accent-hover: #f1a313;
    /* Darker Gold for hover states */

    --success-color: #25D366;
    /* WhatsApp Green */
    --success-hover: hsl(142, 90%, 27%);
    /* Darker Green */

    --bg-body: #FAFAFA;
    /* Off-White Background - Cleaner than pure white */
    --bg-surface: #FFFFFF;
    /* Pure White Surface - Cards & Sections */
    --bg-alt: #F0F4F8;
    /* Cool Gray-Blue Tint - Alternating Sections */

    --text-main: #1B262C;
    /* Dark Charcoal - Main Text */
    --text-muted: #52616B;
    /* Muted Blue-Gray - Subtitles */
    --text-light: #F8F9FA;
    /* Off-White Text on Dark Backgrounds */

    /* --- TYPOGRAPHY --- */
    --font-primary: 'Poppins', sans-serif;

    /* --- SPACING & LAYOUT --- */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* --- EFFECTS --- */
    --shadow-sm: 0 2px 8px rgba(15, 76, 117, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 76, 117, 0.1);
    --shadow-lg: 0 20px 40px rgba(15, 76, 117, 0.12);
    --box-shadow: 0 4px 15px rgba(15, 76, 117, 0.08);
    --box-shadow-light: 0 2px 8px rgba(15, 76, 117, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* --- TYPOGRAPHY SCALE --- */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;

    /* --- LEGACY COLORS (mapped to new palette) --- */
    --white-color: #FFFFFF;
    --dark-color: #1B262C;
    --gray-color: #52616B;
    --light-gray: #F0F4F8;
    --secondary-color: #E8F1F5;
    --secondary-light: ;
    --secondary-alt: ;
    --cta-color: #FFA500;
    --danger-color: #DC3545;
    --whatsapp-color: #25D366;
    --accent-sky: #0FA3D0;
    --accent-cyan: #00BED4;
    --accent-teal: #009688;
    --light-color: #F8F9FA;
}


/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: var(--font-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-body);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--bg-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: var(--primary-light);
    padding: 6px;
    border-radius: 6px;
    display: block;
    filter: brightness(1.1);
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--success-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(248, 249, 250, 0.95);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}


/* ===== HERO RIGHT - IMAGE GALLERY ===== */
.hero-right {
    position: relative;
    width: 100%;
    height: 520px;
    animation: fadeInRight 0.8s ease-out;
}

/* TOP IMAGE - Top Right Position */
.hero-img-top {
    position: absolute;
    width: 240px;
    height: 200px;
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, box-shadow;
}

.hero-img-top:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    transform: translateY(-8px);
}

/* CENTER IMAGE - Main Focus (Center Left) */
.hero-img-center {
    position: absolute;
    width: 280px;
    height: 350px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.22);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, box-shadow;
}

.hero-img-center:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
    transform: translateY(-50%) scale(1.02);
}

/* BOTTOM IMAGE - Bottom Right Position */
.hero-img-bottom {
    position: absolute;
    width: 250px;
    height: 210px;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, box-shadow;
}

.hero-img-bottom:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    transform: translateY(8px);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 22px;
}

.hero-img-main {
    object-position: center;
}

.image-shadow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.15) 0%, rgba(77, 168, 255, 0.1) 100%);
    border-radius: 22px;
    pointer-events: none;
}

.image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.image-badge i {
    font-size: 1rem;
}

/* Mobile Swiper - Hidden by Default on Desktop */
.hero-mobile-swiper {
    display: none !important;
    width: 100%;
}

.hero-mobile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
}

/* Floating Animation - Subtle & Smooth */
@keyframes floatTopImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatBottomImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

@keyframes floatCenterImage {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.02);
    }
}

.hero-img-top {
    animation: floatTopImage 6s ease-in-out infinite;
}

.hero-img-bottom {
    animation: floatBottomImage 5.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.hero-img-center {
    animation: floatCenterImage 7s ease-in-out infinite;
    animation-delay: 0.6s;
}


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 40px 20px;
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===== About SHORT SECTION ===== */
.About-short {
    padding: 50px 20px;
    background: var(--secondary-light);
}

.About-short h2 {
    text-align: center;
    margin-bottom: 50px;
}

.About-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.About-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-light);
}

.About-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.About-card i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.About-card h3 {
    margin-bottom: 10px;
    color: var(--text-main);
}

.About-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== DIFFERENTIATOR SECTION ===== */
.differentiator {
    padding: 50px 20px;
}

.differentiator h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.differentiator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step h3 {
    margin-bottom: 5px;
    color: var(--text-main);
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.differentiator-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 50px;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.differentiator-cta h3 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 50px 20px;
    background: var(--secondary-alt);
}

.services h2,
.services .section-subtitle {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-surface);
    padding: 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-light);
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
    border-top-color: var(--accent-color);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
    border-top-color: var(--primary-light);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.service-card:nth-child(2) i,
.service-card:nth-child(5) i {
    color: var(--accent-color);
}

.service-card:nth-child(3) i,
.service-card:nth-child(6) i {
    color: var(--primary-light);
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
    color: var(--gray-color);
}

/* ===== FEATURED SERVICES CAROUSEL ===== */
.featured-services {
    padding: 40px 10px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
}

.featured-services .container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.featured-services h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #141413;
    order: 1;
}

.featured-services > .container > p {
    text-align: center;
    color: rgb(7, 7, 7);
    margin-bottom: 50px;
    font-size: 1rem;
    order: 2;
}

/* Services Carousel Wrapper with Navigation */
.services-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-bottom: 30px;
    order: 3;
}

.serviceSwiper {
    max-width: 100%;
    flex: 1;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.featured-services .service-card {
    background: #fff;
    border-radius: 25px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(240, 4, 4, 0.08);
    transition: 0.3s;
    cursor: pointer;
}

.featured-services .service-card:hover {
    transform: translateY(-5px);
}

/* IMAGE CONTAINER */
.service-img {
    width: 100%;
    height: auto;
    aspect-ratio: 12 / 7;
    border-radius: 18px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: center;
    padding: 3px;
}

.featured-services .service-card h4 {
    margin-top: 12px;
    font-weight: 600;
    color: black;
    font-size: 16px;
    margin-bottom: 8px;
}

.featured-services .rating {
    color: #141413;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-services .rating span {
    margin-left: 4px;
    font-weight: 700;
}

/* Services Pagination */
.services-pagination-wrapper {
    text-align: center;
    margin-top: 20px;
    order: 4;
    width: 100%;
}

.services-pagination {
    display: flex !important;
    gap: 8px;
    justify-content: center;
    position: relative !important;
    bottom: auto !important;
    top: auto !important;
}

.services-pagination.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--light-gray);
    opacity: 1;
    border-radius: 50%;
    transition: var(--transition);
}

.services-pagination.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 5px;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.4rem;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow-prev,
.carousel-arrow-next {
    display: none;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 50px 20px;
    background: hsl(193, 24%, 93%);
}

.pricing h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 50px;
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    background: #add8e6;
    color: black;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(47, 163, 177, 0.2);
}

.pricing-box h3 {
    color: black;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.pricing-breakdown {
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ffffff33;
    font-size: 1rem;
}

.price-item.highlight {
    background: var(--white-color);
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
    border-bottom: none;
}

.price-item strong {
    font-weight: 700;
    font-size: 1.1rem;
}

.payment-rule {
    background: whitesmoke;
    padding: 20px;
    border-radius: 5px;
    font-size: 0.95rem;
}

/* ===== SALARY INFO SECTION ===== */
.salary-info {
    padding: 50px 20px;
    background: var(--secondary-light);
}

.salary-info h2 {
    text-align: center;
    margin-bottom: 50px;
}

.salary-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.salary-item {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    
}

.salary-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.salary-amount {
    color: black;
    font-size: 2rem;
    font-weight: 700;
}

.salary-notes {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.salary-notes p {
    padding: 10px 0;
    font-size: 0.95rem;
}

.salary-notes i {
    color: var(--success-color);
    margin-right: 10px;
}

/* ===== REPLACEMENT POLICY SECTION ===== */
.replacement {
    padding: 50px 20px;
    background: var(--secondary-color);
}

.replacement h2,
.replacement .section-subtitle {
    text-align: center;
   
}
.replacement-item h2 {
    color: black;
}

.replacement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.replacement-item {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--border-radius-md);
    text-align: center;
    border-top: 4px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.replacement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.replacement-item i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.replacement-item h3 {
    margin-bottom: 10px;
    color:rgb(10, 131, 196);
}

.replacement-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== MAID PROFILES SECTION ===== */
.maid-profiles {
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--white-color) 100%);
}

.maid-profiles .container {
    display: flex;
    flex-direction: column;
}

.maid-profiles h2,
.maid-profiles .section-subtitle {
    text-align: center;
}

.maid-profiles h2 {
    order: 1;
}

.maid-profiles .section-subtitle {
    order: 2;
}

/* Maid Carousel Wrapper with Navigation */
.maid-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-bottom: 30px;
    order: 3;
}

/* Swiper Maid Profiles */
.maid-swiper {
    max-width: 100%;
    padding: 30px 0 40px 0;
    position: relative;
    flex: 1;
}

.swiper-wrapper {
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.maid-profile-card {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 3px solid var(--success-color);
}

.maid-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

/* Circular Profile Image */
.maid-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.maid-profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--bg-surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.maid-profile-card:hover .maid-profile-image {
    transform: scale(1.05);
}

.maid-image-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.maid-profile-card:hover .maid-image-border {
    opacity: 0.5;
}

/* Maid Info */
.maid-info {
    width: 100%;
}

.maid-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.maid-location {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.maid-location i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* Swiper Pagination */
.maid-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    bottom: auto !important;
    top: auto !important;
    margin-top: 20px !important;
    position: relative !important;
    order: 4;
}

.maid-pagination.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--light-gray);
    opacity: 1;
    border-radius: 50%;
    transition: var(--transition);
}

.maid-pagination.swiper-pagination-bullet-active {
    background: var(--success-color);
    width: 28px;
    border-radius: 5px;
}

.maid-profiles-cta {
    text-align: center;
    margin-top: 40px;
    order: 5;
}

.maid-profiles-cta p {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* 
.maid-carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.maid-carousel-dots .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.maid-carousel-dots .carousel-dot.active {
    background: var(--success-color);
    width: 30px;
    border-radius: 5px;
} */

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-alt) 100%);
}

.testimonials h2,
.testimonials .section-subtitle {
    text-align: center;
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.testimonials-carousel {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    min-width: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
    transition: transform 0.5s ease;
    touch-action: pan-y;
    width: 100%;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 1fr);
}

.testimonial-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}

.stars i {
    width: 20px;
}

.testimonial-text {
    margin-bottom: 15px;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-author {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-alt);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    width: fit-content;
}

.location-badge i {
    font-size: 0.9rem;
}

/* Carousel Controls */
.carousel-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.carousel-btn-prev,
.carousel-btn-next {
    z-index: 10;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-alt);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    text-align: center;
}

.final-cta h2 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 2.3rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background: var(--success-hover);
    box-shadow: var(--shadow-lg);
}

/* ===== Contact  PAGE STYLES ===== */
.contact-section {
    padding: 80px 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-group label span {
    color: #DC3545;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--bg-surface);
    color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}

.form-group button {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-message {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

/* ===== SERVICE OPTIONS ===== */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    background: #f9f9f9;
}

.service-option:hover {
    border-color: var(--primary-color);
    background: #f0f4ff;
}

.service-option input[type="radio"] {
    margin: 0;
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.service-option .option-label {
    flex: 1;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
}

.service-option input[type="radio"]:checked+.option-label {
    color: var(--primary-color);
    font-weight: 600;
}

.service-option input[type="radio"]:checked {
    accent-color: var(--primary-color);
}

/* ===== TIME DURATION OPTIONS ===== */
.time-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.time-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    background: #f9f9f9;
}

.time-option:hover {
    border-color: var(--primary-color);
    background: #f0f4ff;
}

.time-option input[type="radio"] {
    margin: 0;
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.time-option .option-label {
    flex: 1;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    line-height: 1.4;
}

.time-option .option-label small {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-color);
    font-weight: 400;
    margin-top: 3px;
}

.time-option input[type="radio"]:checked+.option-label {
    color: var(--primary-color);
    font-weight: 600;
}

.time-option input[type="radio"]:checked+.option-label small {
    color: var(--primary-color);
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.location-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.location-input-wrapper input {
    flex: 1;
}

.btn-location {
    padding: 10px 15px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-location:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-location:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.location-status {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.location-status.loading {
    color: var(--primary-color);
    font-weight: 500;
}

.location-status.success {
    color: var(--success-color);
}

.location-status.error {
    color: #dc3545;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact-info-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 8px;
    color: var(--text-main);
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-content p.small {
    font-size: 0.85rem;
    color: #999;
}

.info-content a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--accent-color);
}

.working-hours {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-color);
}

.working-hours h3 {
    margin-bottom: 15px;
    color: var(--text-main);
}

.hours-list p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* ===== QUICK Contact  SECTION ===== */
.quick-contact {
    padding: 60px 20px;
    background: var(--white-color);
}

.quick-contact h2,
.quick-contact .section-subtitle {
    text-align: center;
}

.quick-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quick-method-btn {
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border: 2px solid transparent;
}

.quick-method-btn i {
    font-size: 2rem;
}

.phone-btn {
    background: var(--bg-alt);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.phone-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.whatsapp-btn {
    background: var(--bg-alt);
    color: var(--success-color);
    box-shadow: var(--shadow-sm);
}

.whatsapp-btn:hover {
    background: var(--success-color);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.email-btn {
    background: var(--bg-alt);
    color: #ff6b6b;
    box-shadow: var(--shadow-sm);
}

.email-btn:hover {
    background: #ff6b6b;
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 80px 20px;
}

.faq h2,
.faq .section-subtitle {
    text-align: center;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--bg-surface);
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--text-main);
}

.faq-question:hover {
    background: var(--bg-alt);
    border-left: 4px solid var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: var(--text-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--text-light);
}

.faq-answer {
    padding: 20px;
    background: var(--bg-alt);
    display: none;
    border-top: 1px solid #ddd;
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    color: var(--text-main);
    line-height: 1.6;
}

/* ===== SERVICES DETAILED PAGE ===== */
.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    background: var(--bg-surface);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-md);
}

.service-detail-card.highlighted {
    border: 3px solid var(--primary-light);
    background: linear-gradient(135deg, rgba(50, 130, 184, 0.05) 0%, rgba(15, 163, 177, 0.05) 100%);
    box-shadow: var(--shadow-md);
    animation: highlightPulse 0.6s ease-out;
}

@keyframes highlightPulse {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(0, 190, 212, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 190, 212, 0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(0, 190, 212, 0.2);
    }
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.service-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-header h2 {
    margin-bottom: 0;
    color: var(--text-main);
}

.service-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-info ul {
    list-style: none;
    margin-bottom: 15px;
}

.service-info ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-info ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-info p {
    color: var(--text-muted);
}

/* ===== About PAGE STYLES ===== */
.company-overview {
    padding: 60px 20px;
}

.overview-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
}

.overview-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1200px;
}

.overview-image-wrapper {
    flex: 0 0 45%;
    text-align: center;
}

.overview-image {
    margin-bottom: 20px;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
}

.team-label {
    font-size: 2 rem;
    font-weight: 1000;
    color: var(--primary-color);
    margin: 0;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team-label i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.overview-text {
    flex: 0 0 55%;
}

.overview-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.3rem;
    color: var(--text-main);
}

.mission-values {
    padding: 80px 20px;
    background: var(--light-color);
}

.mission-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 50px;
    border-radius: var(--border-radius-md);
    margin-bottom: 60px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mission-box h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-box p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
    color: var(--text-main);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.why-choose {
    padding: 80px 20px;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-card h3 {
    margin-bottom: 10px;
    color: var(--text-main);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.experience {
    padding: 80px 20px;
    background: var(--white-color);
}

.experience h2 {
    text-align: center;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--bg-alt);
    padding: 50px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-card h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.service-areas {
    padding: 80px 20px;
}

.service-areas h2,
.service-areas .section-subtitle {
    text-align: center;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.area-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.area-column ul {
    list-style: none;
}

.area-column ul li {
    padding: 10px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-column ul li i {
    color: var(--success-color);
    font-size: 0.8rem;
}

.why-services {
    padding: 80px 20px;
    background: var(--white-color);
}

.why-services h2 {
    text-align: center;
    margin-bottom: 50px;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.why-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.why-item h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.pricing-summary {
    padding: 80px 20px;
    background: var(--white-color);
}

.pricing-summary h2 {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-table {
    max-width: 600px;
    margin: 0 auto;
    background: #E8F1F5;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--text-main);
}

.pricing-table h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.table-item.highlight {
    background: rgba(30, 78, 216, 0.1);
    padding: 15px;
    border-radius: 5px;
    border-bottom: none;
    margin-top: 10px;
}

.table-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--box-shadow);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
    }

    /* Tablet/Laptop: Hide arrows, show pagination below */
    .carousel-arrow-prev,
    .carousel-arrow-next {
        display: none;
    }

    .services-pagination-wrapper,
    .maid-pagination {
        display: flex !important;
        justify-content: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .cta-buttons .btn {
        justify-content: center;
    }

    .trust-points {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-right {
        height: 400px;
    }

    /* TABLET: Hide mobile swiper, show desktop images */
    .hero-mobile-swiper {
        display: none;
    }

    .hero-img-top {
        width: 180px;
        height: 160px;
        top: 0;
        right: 0;
    }

    .hero-img-bottom {
        width: 190px;
        height: 170px;
        bottom: 0;
        right: 0;
    }

    .hero-img-center {
        width: 220px;
        height: 280px;
        left: 15%;
    }

    .differentiator-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        margin-bottom: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    .service-detail-card {
        padding: 25px;
    }

    .service-body {
        grid-template-columns: 1fr;
    }

    /* Featured Services Responsive */
    .featured-services {
        padding: 60px 20px;
    }

    .featured-services h2 {
        font-size: 1.8rem;
    }

    .serviceSwiper {
        margin: 0 -20px;
    }

    .final-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .final-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .About-grid,
    .services-grid,
    .replacement-grid,
    .testimonials-grid,
    .values-grid,
    .why-grid,
    .stats-grid,
    .areas-list,
    .quick-methods {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .differentiator-cta {
        padding: 30px;
    }

    .pricing-box {
        padding: 30px;
    }

    .mission-box {
        padding: 30px;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    /* Testimonials Responsive */
    .testimonials-wrapper {
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 30px;
    }

    /* Maid Profiles Responsive */
    .maid-profiles-wrapper {
        gap: 15px;
    }

    .maid-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mf-card-photo {
        height: 220px;
    }

    .mf-card-body {
        padding: 20px;
    }

    .mf-card-title {
        font-size: 1.2rem;
    }

    .swiper-button-prev-custom {
        left: -50px;
    }

    .swiper-button-next-custom {
        right: -50px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .location-input-wrapper {
        flex-direction: column;
    }

    .location-input-wrapper input {
        width: 100%;
    }

    .btn-location {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 50px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-left {
        text-align: center;
    }

    /* MOBILE: Hide Desktop Collage Images */
    .hero-right {
        display: none;
    }

    /* MOBILE: Show Swiper Carousel */
    .hero-mobile-swiper {
        display: block !important;
        margin: 2rem 0;
    }

    .heroSwiper {
        width: 100%;
    }

    .heroSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-mobile-img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: 20px;
    }

    .heroSwiper .swiper-pagination {
        bottom: -40px;
    }

    .heroSwiper .swiper-pagination-bullet {
        background: rgba(248, 249, 250, 0.6);
        opacity: 1;
    }

    .heroSwiper .swiper-pagination-bullet-active {
        background: var(--accent-color);
    }

    /* MOBILE: Button Layout - Side by Side */
    .cta-buttons {
        gap: 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .cta-buttons .btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
        font-weight: 600;
        flex: 1;
        min-width: 110px;
    }

    /* MOBILE: Trust Badges - Horizontal Rows */
    .trust-points {
        gap: 0.8rem;
        align-items: center;
        justify-content: center;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .trust-item {
        padding: 6px 10px;
        font-size: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .hero-img-top {
        width: 140px;
        height: 130px;
        top: 0;
        right: 0;
    }

    .hero-img-bottom {
        width: 145px;
        height: 140px;
        bottom: 0;
        right: 0;
    }

    .hero-img-center {
        width: 160px;
        height: 220px;
        left: 10%;
    }

    .image-badge {
        bottom: 0.5rem;
        left: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }

    .image-badge i {
        font-size: 0.8rem;
    }

    .page-header {
        padding: 40px 20px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .padding-section {
        padding: 50px 20px;
    }

    .final-cta {
        padding: 50px 20px;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-header i {
        font-size: 2rem;
    }

    .footer-content {
        gap: 30px;
    }

    .contact-form {
        gap: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .whatsapp-button {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3rem;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-card i {
        font-size: 1.5rem;
        width: auto;
    }

    .pricing-box,
    .mission-box {
        padding: 20px;
    }

    .salary-amount {
        font-size: 1.5rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
    }

    .why-item i {
        margin-top: 0;
    }

    /* Testimonials Mobile */
    .testimonials-wrapper {
        gap: 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .carousel-dots {
        gap: 6px;
    }

    /* Mobile Navigation Arrows */
    .carousel-arrow-prev,
    .carousel-arrow-next {
        display: flex;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Mobile Pagination */
    .services-pagination,
    .maid-pagination {
        gap: 6px;
    }

    .services-pagination.swiper-pagination-bullet,
    .maid-pagination.swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .services-pagination.swiper-pagination-bullet-active,
    .maid-pagination.swiper-pagination-bullet-active {
        width: 24px;
    }

    /* Maid Profiles Mobile */
    .maid-swiper {
        padding: 50px 0 70px 0;
    }

    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .swiper-button-prev-custom {
        left: -60px;
    }

    .swiper-button-next-custom {
        right: -60px;
    }

    .mf-profile-card {
        max-width: 100%;
    }

    .mf-card-photo {
        height: 220px;
    }

    .mf-card-body {
        padding: 20px 15px;
    }

    .mf-card-title {
        font-size: 1.2rem;
    }

    .mf-card-list li {
        font-size: 0.9rem;
    }

    .btn-contact {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .swiper-pagination-custom {
        gap: 6px;
    }

    /* Responsive: Overview Content */
    .overview-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .overview-content {
        flex-direction: column;
        gap: 40px;
    }

    .overview-image-wrapper {
        flex: 0 0 100%;
        text-align: center;
    }

    .overview-image img {
        height: 300px;
    }

    .overview-text {
        flex: 0 0 100%;
    }
}

/* ===== INDIA PRESENCE SECTION ===== */
.india-presence {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--white-color) 0%, var(--secondary-color) 100%);
}

.india-presence h2 {
    text-align: center;
    margin-bottom: 15px;
}

.india-presence .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.city-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.city-card {
    background: var(--bg-surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.city-card-featured {
    grid-column: 1 / 2;
    border: 3px solid var(--primary-color);
}

.city-card-featured:hover {
    box-shadow: var(--shadow-lg);
}

.city-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 76, 117, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.city-info {
    padding: 25px;
    text-align: center;
}

.city-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.city-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.india-presence-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-surface);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.india-presence-cta p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 500;
}

.many-cities-banner {
    text-align: center;
    padding: 40px 20px;
    margin: 30px 0;
}

.many-cities-banner h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    font-style: italic;
}

/* Responsive - City Cards */
@media (max-width: 1024px) {
    .city-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .city-card-featured {
        grid-column: 1 / 2;
    }
}

@media (max-width: 768px) {
    .india-presence {
        padding: 60px 0;
    }

    .city-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .city-card-featured {
        grid-column: 1 / 2;
    }

    .city-image {
        height: 200px;
    }

    .india-presence-cta {
        padding: 30px 20px;
    }
}

/* ===== HOW IT WORKS - PREMIUM SECTION ===== */
.how-it-works-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #F4F8FC 0%, #EAF3FB 50%, #F0F6FA 100%);
    overflow: hidden;
}

/* Decorative Elements */
.section-decorative-top,
.section-decorative-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    opacity: 0.15;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 50%, #1E73BE 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #4DA8FF 0%, transparent 50%);
}

.section-decorative-top {
    top: 0;
    animation: float 6s ease-in-out infinite;
}

.section-decorative-bottom {
    bottom: 0;
    animation: float-reverse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

/* Header Styling */
.how-it-works-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #1E73BE;
    margin-bottom: 15px;
    padding: 8px 20px;
    background-color: rgba(30, 115, 190, 0.08);
    border-radius: 50px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0B1F33;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.how-it-works-header .section-subtitle {
    font-size: 1.125rem;
    color: #5F6C7B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid Layout */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Individual Card */
.how-it-works-card {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 50px 35px 40px;
    box-shadow: 0 10px 35px rgba(30, 115, 190, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(30, 115, 190, 0.05);
}

.how-it-works-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 115, 190, 0.15);
}

/* Background Shape Animation */
.card-background-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at bottom right, rgba(77, 168, 255, 0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: transform 0.4s ease;
}

.how-it-works-card:hover .card-background-shape {
    transform: translate(40%, -40%);
}

/* Header with Icons */
.card-header {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Accent - Faded number behind */
.icon-accent {
    position: absolute;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(30, 115, 190, 0.06);
    line-height: 1;
    z-index: 0;
}

/* Icon Container */
.icon-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.1), rgba(77, 168, 255, 0.08));
    border-radius: 18px;
    border: 2px solid rgba(30, 115, 190, 0.15);
    transition: all 0.4s ease;
}

.how-it-works-card:hover .icon-container {
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.15), rgba(77, 168, 255, 0.12));
    border-color: rgba(72, 142, 203, 0.25);
    transform: scale(1.08);
}

/* Icon SVG */
.card-icon {
    width: 50px;
    height: 50px;
    stroke: #1E73BE;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.4s ease;
}

.how-it-works-card:hover .card-icon {
    stroke: #0F5FA8;
    stroke-width: 2;
}

/* Step Number */
.step-number {
    display: none;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.how-it-works-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0B1F33;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.how-it-works-card p {
    font-size: 0.95rem;
    color: #5F6C7B;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.how-it-works-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-lg {
    padding: 16px 50px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    letter-spacing: 0.3px;
}

.btn-primary.btn-lg {
    background: linear-gradient(135deg, #1E73BE 0%, #0F4C93 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 12px 25px rgba(30, 115, 190, 0.25);
}

.btn-primary.btn-lg:hover {
    background: linear-gradient(135deg, #0F4C93 0%, #0B3666 100%);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(30, 115, 190, 0.35);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet - 2 columns */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .how-it-works-card {
        padding: 40px 30px 35px;
    }

    .icon-container {
        width: 80px;
        height: 80px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }
}

/* Mobile - Vertical stack */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 40px 0;
    }

    .section-label {
        font-size: 0.75rem;
        padding: 6px 16px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .how-it-works-header .section-subtitle {
        font-size: 1rem;
    }

    .how-it-works-header {
        margin-bottom: 40px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .how-it-works-card {
        padding: 30px 20px 25px;
        border-radius: 16px;
    }

    .icon-container {
        width: 75px;
        height: 75px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .step-number {
        font-size: 3rem;
    }

    .how-it-works-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .how-it-works-card p {
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 40px;
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .how-it-works-card {
        padding: 30px 20px 25px;
    }

    .icon-container {
        width: 70px;
        height: 70px;
    }

    .card-icon {
        width: 38px;
        height: 38px;
    }

    .how-it-works-card h3 {
        font-size: 1.1rem;
    }

    .how-it-works-card p {
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 12px 32px;
        font-size: 0.95rem;
    }

    .section-decorative-top,
    .section-decorative-bottom {
        height: 80px;
    }
}

/* ===== HOW IT WORKS PAGE ===== */
.process-overview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.process-overview h2 {
    color: #1A1A1A;
    margin-bottom: 15px;
    font-size: 2.5rem;
    text-align: center;
}

.process-overview .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background-color: var(--bg-alt);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(15, 76, 117, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.step-header h3 {
    color: var(--text-main);
    font-size: 1.8rem;
    margin: 0;
    padding-top: 10px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.requirements-list li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.requirements-list strong {
    color: var(--text-main);
}

.step-note {
    background-color: rgba(15, 76, 117, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.cta-contact {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.cta-contact .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-contact .btn-primary {
    background-color: transparent;
    color: black;
    border: 2px solid #1E88E5;
}

/* .cta-contact .btn-primary:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
} */

.cta-contact .btn-secondary {
    background-color: transparent;
    color: #141413;
    border: 2px solid #25D366;
}

/* .cta-contact .btn-secondary:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);

} */
.cta-contact .btn-outline {
    background-color: transparent;
    color: hsl(16, 79%, 51%);
    border: 2px solid #1E88E5;
}

/* .cta-contact .btn-outline:hover {
    background-color: #E3F2FD;
    transform: translateY(0);
    box-shadow: none; */

.step-arrow {
    text-align: center;
    color: #1E88E5;
    font-size: 2rem;
    margin: 30px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.interview-benefits {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #E5E7EB;
}

.interview-benefits h4 {
    color: #1A1A1A;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #1E88E5;
    flex-shrink: 0;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.benefit-item strong {
    color: #1A1A1A;
}

.pricing-summary {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid #E3F2FD;
}

.pricing-summary h4 {
    color: #1A1A1A;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.pricing-breakdown {
    display: grid;
    gap: 12px;
    margin-bottom: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    color: #666;
    font-size: 0.95rem;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item strong {
    color: #1E88E5;
    font-weight: 600;
}

.price-item.highlight strong {
    color: #2E7D32;
    font-size: 1.1rem;
}

.pricing-note {
    color: #666;
    font-size: 0.85rem;
    margin-top: 10px;
    font-style: italic;
}

/* Why Process Works Section */
.why-process-works {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.why-process-works h2 {
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.process-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: #1E88E5;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #1A1A1A;
    font-size: 1.2rem;
    margin: 15px 0;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.process-faq {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.process-faq h2 {
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.faq-question {
    background-color: #F8FAFC;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
    background-color: #E3F2FD;
}

.faq-question h4 {
    color: #1A1A1A;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #1E88E5;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Ready CTA */
.ready-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    text-align: center;
}

.ready-cta h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ready-cta p {
    color: rgba(248, 249, 250, 0.95);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.ready-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ready-cta .btn-large {
    padding: 16px 40px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--text-light);
}

.ready-cta .btn-primary {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.ready-cta .btn-primary:hover {
    background-color: transparent;
    color: var(--text-light);
}

.ready-cta .btn-secondary {
    background-color: var(--success-color);
    color: var(--text-light);
}

.ready-cta .btn-secondary:hover {
    background-color: var(--success-hover);
}

.ready-cta .btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.ready-cta .btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-overview {
        padding: 60px 0;
    }

    .process-overview h2 {
        font-size: 2rem;
    }

    .process-step {
        padding: 25px;
        margin-bottom: 40px;
    }

    .step-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .cta-contact {
        flex-direction: column;
    }

    .cta-contact .btn {
        width: 100%;
        text-align: center;
    }

    .why-process-works h2 {
        font-size: 2rem;
    }

    .process-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-faq h2 {
        font-size: 2rem;
    }

    .ready-cta {
        padding: 60px 0;
    }

    .ready-cta h2 {
        font-size: 2rem;
    }

    .ready-cta-buttons {
        flex-direction: column;
    }

    .ready-cta .btn-large {
        width: 100%;
    }
}