/**
 * Regency Nannies - Stylesheet
 * Designed to match Regency Nannies original styling
 * Using Core PHP backend
 */

/* ========================================
   CSS Variables - Matching Original
   ======================================== */
:root {
    /* Primary Colors - Matching original Regency Nannies */
    --primary-color: #ee9d95;        /* Coral pink - matches original */
    --primary-light: #f5b8b0;        /* Light coral */
    --primary-dark: #c77b71;         /* Dark coral */
    
    /* Secondary Colors */
    --secondary-color: #000000;     /* Black */
    --secondary-light: #333333;      /* Dark gray */
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #f4f4f4;
    --light-gray: #e0e0e0;
    --medium-gray: #777777;
    --dark-gray: #444444;
    --black: #000000;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Border Radius */
    --radius-sm: 3px;
    --radius-md: 8px;
    --radius-lg: 15px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: rgba(238, 157, 149, 0.85);
    color: var(--black);
    border-color: rgba(238, 157, 149, 0.85);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline-dark:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-contact {
    background-color: rgba(238, 157, 149, 0.85);
    color: var(--black) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 800;
}

.btn-contact:hover {
    background-color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ========================================
   Header - Matching Original
   ======================================== */
.main-header {
    position: relative;
    background-color: var(--white);
    box-shadow: none;
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
}

.header-top {
    background-color: var(--primary-color);
    color: var(--black);
    padding: 8px 0;
    font-size: 14px;
}

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.header-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
    color: var(--primary-color);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active {
    font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition-fast);
}

/* Mobile Header Contact Button - Hidden on Desktop */
.mobile-header-contact {
    display: none;
}

/* Mobile Header User Button - Hidden on Desktop */
.mobile-header-user {
    display: none;
}

/* Mobile Header Login Button - Hidden on Desktop */
.mobile-header-login {
    display: none;
}

/* Mobile Header Actions Container */
.mobile-header-actions {
    display: none;
}

/* ========================================
   Hero Banner - Matching Original
   ======================================== */
.hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 90% 0;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 80px 0;
}

.hero-banner-content h1 {
    font-size: 50px;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-banner-content p {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

/* Alternate banner layout - image on left */
.hero-banner.banner-alt .hero-banner-image {
    left: 0;
    right: auto;
}

.hero-banner.banner-alt .hero-banner-content {
    left: auto;
    right: 0;
    text-align: left;
}

/* Banner spacing */
.hero-banner {
    margin-bottom: 0;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .slides {
    position: relative;
    width: 100%;
}

.hero-slider .slide {
    display: none;
    animation: fade 0.5s ease-in-out;
}

.hero-slider .slide.active {
    display: block;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: #fff;
    transform: scale(1.1);
}

.slider-nav .dots {
    display: flex;
    gap: 10px;
}

.slider-nav .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav .dot.active {
    background: #ee9d95;
    transform: scale(1.2);
}

.slider-nav .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Hero Section - Matching Original
   ======================================== */
.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    width: 100%;
}

.hero-content .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-text {
    max-width: 700px;
    color: var(--black);
}

.hero-text h1 {
    font-size: 50px;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-tagline {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    text-align: center;
    color: var(--black);
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 45px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 15px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(0,0,0,0.03)" stroke-width="0.5"/></svg>') repeat;
    background-size: 200px;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    color: var(--black);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.page-header h1 {
    font-size: 48px;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    color: var(--medium-gray);
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 700;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-link {
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover {
    color: var(--primary-color);
}

/* ========================================
   Features / Why Choose Us
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--black);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    font-weight: 700;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 700;
}

.feature-item p {
    color: var(--medium-gray);
    font-size: 15px;
}

/* ========================================
   How It Works
   ======================================== */
.how-it-works {
    background-color: var(--off-white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50px;
    font-size: 30px;
    color: var(--primary-color);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--black);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 700;
}

.step-item p {
    color: var(--medium-gray);
    font-size: 15px;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-preview {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--black);
    font-size: 16px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    text-align: center;
}

.cta-content h2 {
    color: var(--black);
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    color: var(--black);
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* ========================================
   About Page
   ======================================== */
.about-content {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: 16px;
}

.mission-list {
    list-style: disc;
    padding-left: 20px;
}

.mission-list li {
    margin-bottom: 12px;
    color: var(--dark-gray);
    font-size: 16px;
}

.about-image .image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Values Section */
.values-section {
    background-color: var(--off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    color: var(--medium-gray);
}

/* Services Offered */
.services-offered {
    background-color: var(--white);
}

.offered-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offered-item {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.offered-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 700;
}

.offered-item p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* ========================================
   Services Detail Page
   ======================================== */
.services-detail {
    background-color: var(--white);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background-color: var(--off-white);
    border-radius: var(--radius-lg);
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--black);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 18px;
    color: var(--black);
    margin: 25px 0 15px;
    font-weight: 700;
}

.service-features, .service-requirements {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
}

.service-features li, .service-requirements li {
    margin-bottom: 10px;
    color: var(--dark-gray);
    font-size: 15px;
}

.service-detail-image .image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.service-detail-image img:hover {
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 700;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-card p {
    color: var(--medium-gray);
    font-size: 15px;
    margin-bottom: 25px;
}

.pricing-card ul {
    text-align: left;
}

.pricing-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 15px;
}

/* ========================================
   Nannies / Find Caregiver Page
   ======================================== */
.search-filter {
    background-color: var(--primary-color);
    padding: 30px 0;
}

.filter-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.filter-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.filter-group {
    flex: 1;
    min-width: 180px;
}

.filter-group label {
    display: block;
    color: var(--black);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.filter-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    background-color: var(--white);
}

/* Nannies Grid */
.nannies-section {
    background-color: var(--white);
}

.nannies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nanny-card {
    background-color: var(--off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.nanny-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.nanny-photo {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    width: 90px;
    height: 90px;
    background-color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
}

.availability-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
}

.availability-badge.available {
    background-color: var(--primary-color);
    color: var(--black);
}

.nanny-info {
    padding: 30px;
}

.nanny-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.nanny-location {
    color: var(--medium-gray);
    font-size: 15px;
    margin-bottom: 15px;
}

.nanny-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.nanny-tags span {
    background-color: var(--primary-color);
    color: var(--black);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.nanny-bio {
    color: var(--dark-gray);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.nanny-details {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    color: var(--dark-gray);
    font-weight: 600;
}

.pagination a.active {
    background-color: var(--primary-color);
    color: var(--black);
    border-color: var(--primary-color);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-content {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background-color: var(--off-white);
    padding: 50px;
    border-radius: var(--radius-md);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Alerts */
.alert {
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info */
.info-card {
    background-color: var(--off-white);
    padding: 35px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 26px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--black);
    font-weight: 600;
}

.info-item p {
    font-size: 15px;
    color: var(--dark-gray);
}

.emergency-phone {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Map */
.map-section {
    padding: 40px 0;
}

.map-placeholder {
    height: 450px;
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
}

/* ========================================
   FAQ Page
   ======================================== */
.faq-content {
    background-color: var(--white);
}

.faq-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.faq-category h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--black);
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.faq-item {
    margin-bottom: 20px;
    background-color: var(--off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--black);
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p, .faq-answer ul {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer ul {
    padding-left: 20px;
    margin-top: 12px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 35px;
    background-color: var(--off-white);
    border-radius: var(--radius-md);
}

.faq-cta h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* ========================================
   Testimonials Page
   ======================================== */
.testimonials-content {
    background-color: var(--white);
}

.testimonials-featured {
    margin-bottom: 80px;
}

.testimonial-large {
    background-color: var(--off-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 100px;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.5;
    font-weight: 700;
}

.testimonial-large .testimonial-text {
    font-size: 22px;
    font-style: italic;
    margin: 25px 0;
    line-height: 1.8;
}

.testimonials-content .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 25px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
    font-size: 18px;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--black);
    font-weight: 700;
}

.author-info span {
    font-size: 15px;
    color: var(--medium-gray);
}

.testimonials-content .testimonial-stars {
    margin-top: 20px;
}

.video-testimonials {
    margin-top: 80px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-placeholder {
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder span {
    font-size: 55px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    background-color: var(--black);
    color: var(--white);
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    color: var(--primary-color);
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 22px;
}

.footer-desc {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--black);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    opacity: 0.8;
}

.contact-icon {
    font-size: 18px;
}

.footer-bottom {
    background-color: #111;
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* ========================================
   Statistics Section
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box {
    padding: 30px;
}

.stat-box .stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 50px;
    font-weight: 700;
    color: var(--black);
}

.stat-box .stat-label {
    font-size: 16px;
    color: var(--black);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1024px) {
    .hero-content .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid,
    .features-grid,
    .steps-container,
    .values-grid,
    .pricing-grid,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Hide desktop elements */
    .nav-menu,
    .header-contact {
        display: none;
    }
    
    /* Show mobile toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero responsive */
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Grid layouts - single column */
    .about-grid,
    .service-detail-card,
    .contact-grid,
    .faq-grid,
    .nannies-grid,
    .offered-grid,
    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing */
    .pricing-card.featured {
        transform: none;
    }
    
    /* Footer */
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Stats */
    .stat-box .stat-number {
        font-size: 32px;
    }
    
    /* Hide top bar on mobile */
    .header-top {
        display: none;
    }
    
    /* Fixed header */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        background: white;
    }
    
    /* Hide header top on mobile */
    .header-top {
        display: none;
    }
    
    .header-main {
        padding: 8px 15px;
        min-height: 50px;
    }
    
    .header-main .container {
        justify-content: space-between;
        align-items: center;
    }
    
    /* Hide desktop nav and actions */
    .desktop-nav,
    .header-actions {
        display: none;
    }
    
    /* Show mobile nav */
    .mobile-nav {
        display: block;
    }
    
    /* Mobile Header Actions Container */
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Mobile Header User Button */
    .mobile-header-user {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: transparent;
        color: var(--black);
        border: 1px solid var(--black);
        border-radius: 50%;
        text-decoration: none;
    }
    
    .mobile-header-user:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
    
    /* Mobile Header Login Button */
    .mobile-header-login {
        display: inline-block;
        padding: 8px 16px;
        background: transparent;
        color: var(--black) !important;
        border: 1px solid var(--black);
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
    }
    
    .mobile-header-login:hover {
        background: var(--primary-color);
        color: white !important;
        border-color: var(--primary-color);
    }
    
    /* Mobile Header Contact Button */
    .mobile-header-contact {
        display: inline-block;
        padding: 8px 16px;
        background: var(--primary-color);
        color: white !important;
        text-decoration: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
    }
    
    .mobile-header-contact:hover {
        background: var(--secondary-color);
    }
    
    /* Adjust for smaller screens */
    .mobile-header-contact {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    /* Logo sizing */
    .logo-img {
        max-width: 120px;
        height: auto;
    }
    
    .logo {
        display: flex;
        align-items: center;
    }
    
    /* Mobile slide-in nav */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: white;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        overflow-y: auto;
    }
    
    .mobile-nav.active {
        transform: translateX(0);
    }
    
    .mobile-nav .nav-menu {
        list-style: none;
        margin: 0;
        padding: 60px 0 10px;
    }
    
    .mobile-nav .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-nav .nav-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        color: var(--black);
        text-decoration: none;
        font-size: 15px;
    }
    
    .mobile-nav .nav-menu a:hover,
    .mobile-nav .nav-menu a.active {
        background: var(--primary-color);
        color: white;
    }
    
    /* Body padding */
    body {
        padding-top: 50px;
    }
    
    /* Ensure main content starts below fixed header */
    main {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* ========================================
   Cart Styles
   ======================================== */
.cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 25px;
    background: var(--primary-color);
    color: var(--black);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.cart-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cart-icon {
    font-size: 18px;
}

.cart-count {
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .cart-link {
        padding: 8px 12px;
    }
    
    .cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

/* ========================================
   Enhanced Mobile Navigation
   ======================================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 990;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--black);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active {
    background: var(--danger);
    border-color: var(--danger);
}

.mobile-menu-toggle.active span {
    background: white;
}

/* ========================================
   NEW Header Styles - Professional Layout
   ======================================== */

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo {
    display: block;
    flex-shrink: 0;
}

.logo-img {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    flex: 1;
    justify-content: center;
}

.desktop-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-menu a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.desktop-nav .nav-menu a:hover,
.desktop-nav .nav-menu a.active {
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-actions .btn-contact {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.header-actions .btn-contact:hover {
    background: var(--primary-dark);
}

.header-actions .btn-dashboard {
    padding: 10px 16px;
    background: transparent;
    color: var(--black);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.header-actions .btn-dashboard:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile Navigation - Hidden by default on desktop */
.mobile-nav {
    display: none;
}

/* Show mobile nav on mobile */
@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
}

/* ========================================
   Responsive Header Styles
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .logo-img {
        max-width: 170px;
    }
    
    .desktop-nav .nav-menu {
        gap: 15px;
    }
    
    .desktop-nav .nav-menu a {
        font-size: 13px;
    }
    
    .header-actions .btn-contact,
    .header-actions .btn-dashboard {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Mobile - Hide desktop nav, show mobile */
@media (max-width: 768px) {
    /* Hide top bar */
    .header-top {
        display: none;
    }
    
    /* Fixed header */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        background: white;
    }
    
    .header-main {
        padding: 10px 15px;
    }
    
    /* Show mobile nav, hide desktop */
    .desktop-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    /* Mobile menu toggle - show */
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    
    /* Logo sizing */
    .logo-img {
        max-width: 140px;
    }
    
    /* Mobile slide-in nav */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-nav.active {
        transform: translateX(0);
    }
    
    .mobile-nav .nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-nav .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-nav .nav-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        color: var(--black);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.2s;
    }
    
    .mobile-nav .nav-menu a:hover,
    .mobile-nav .nav-menu a.active {
        background: var(--primary-color);
        color: white;
    }
    
    .mobile-nav .nav-menu a i {
        width: 20px;
        text-align: center;
    }
    
    /* Body padding for fixed header */
    body {
        padding-top: 55px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .header-main {
        padding: 8px 12px;
    }
    
    .logo-img {
        max-width: 100px;
    }
    
    .mobile-menu-toggle {
        width: 32px;
        height: 32px;
    }
    
    .header-main {
        padding: 6px 10px;
    }
}

/* Very small */
@media (max-width: 360px) {
    .logo-img {
        max-width: 90px;
    }
    
    .mobile-menu-toggle {
        width: 30px;
        height: 30px;
    }
    
    .mobile-menu-toggle span {
        width: 18px;
    }
}

/* Large desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ========================================
   Header Language & Cart Styles
   ======================================== */

/* Language Selector */
.header-lang {
    position: relative;
    display: inline-block;
}

.header-lang .lang-toggle {
    display: flex;
    align-items: center;
    padding: 8px;
    text-decoration: none;
}

.header-lang .lang-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.header-lang .lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    margin: 5px 0 0;
    padding: 5px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.header-lang:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-lang .lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    color: var(--black);
    text-decoration: none;
    transition: background 0.2s;
}

.header-lang .lang-dropdown li a:hover {
    background: var(--bg-light);
}

.header-lang .lang-dropdown img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

/* Cart */
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px;
    text-decoration: none;
}

.header-cart .cart-icon {
    font-size: 18px;
}

.header-cart .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header actions adjustments */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* ========================================
   Mobile Navigation Enhanced Styles
   ======================================== */

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.mobile-nav-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--black);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Mobile Nav Section (Cart, Language) */
.mobile-nav-section {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--black);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

.cart-badge {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

/* Mobile Language Section */
.mobile-lang-section {
    padding: 10px 0;
}

.mobile-lang-options {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

.mobile-lang-options a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 5px;
    background: #f5f5f5;
    transition: all 0.2s;
}

.mobile-lang-options a:hover {
    background: var(--primary-color);
    color: white;
}

.mobile-lang-options img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.mobile-nav-footer .btn-contact,
.mobile-nav-footer .btn-dashboard {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.mobile-nav-footer .btn-contact {
    background: var(--primary-color);
    color: white;
}

.mobile-nav-footer .btn-dashboard {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* ========================================
   Mobile Slider Fixes
   ======================================== */
@media (max-width: 768px) {
    /* Hero Slider Mobile */
    .hero-slider {
        min-height: auto;
    }
    
    .hero-slider .slide {
        min-height: auto;
        padding: 20px;
    }
    
    .hero-banner {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .hero-banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-banner-content {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 60px 20px;
        text-align: center;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .hero-banner-content h1 {
        font-size: 26px !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-banner-content p {
        font-size: 15px !important;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-banner-content .btn {
        display: inline-block;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Alternate banner mobile */
    .hero-banner.banner-alt {
        flex-direction: column;
    }
    
    .hero-banner.banner-alt .hero-banner-image {
        position: absolute;
    }
    
    .hero-banner.banner-alt .hero-banner-content {
        width: 100%;
        text-align: center;
    }
    
    /* Slider Navigation - bigger touch targets */
    .slider-nav {
        bottom: 10px;
        gap: 15px;
    }
    
    .slider-nav button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .slider-nav .dots {
        gap: 8px;
    }
    
    .slider-nav .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.85);
    }
}

@media (max-width: 480px) {
    .hero-slider,
    .hero-banner {
        min-height: auto;
    }
    
    .hero-slider .slide {
        min-height: auto;
        padding: 15px;
    }
    
    .hero-banner-content {
        padding: 40px 15px;
    }
    
    .hero-banner-content h1 {
        font-size: 22px !important;
    }
    
    .hero-banner-content p {
        font-size: 14px !important;
        margin-bottom: 15px;
    }
    
    .hero-banner-content .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .slider-nav button {
        width: 32px;
        height: 32px;
    }
    
    .slider-nav {
        bottom: 5px;
    }
}

@media (max-width: 360px) {
    .hero-slider,
    .hero-banner {
        min-height: auto;
    }
    
    .hero-slider .slide {
        min-height: auto;
    }
    
    .hero-banner-content {
        padding: 30px 12px;
    }
    
    .hero-banner-content h1 {
        font-size: 20px !important;
    }
    
    .hero-banner-content p {
        font-size: 13px !important;
    }
}
