/* ============================================
   LUXURY SPA CSS - Dubai Home Spa
   Color Palette: #716486 (Primary)
   ============================================ */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Color */
    --primary: #716486;
    --primary-light: #8F7A9E;
    --primary-dark: #5A4A6B;
    --primary-soft: #E8E0ED;
    --primary-gradient: linear-gradient(135deg, #716486 0%, #8F7A9E 100%);
    
    /* Neutrals */
    --cream: #FDF8F5;
    --cream-dark: #F5EDE8;
    --cream-200: #EDE4DD;
    --cream-300: #E0D5CC;
    
    /* Text Colors */
    --taupe: #A69080;
    --taupe-dark: #8A7A6A;
    --charcoal: #3D3540;
    --charcoal-light: #5A5260;
    --charcoal-soft: #7A7280;
    
    /* Accents */
    --gold: #C9A96E;
    --gold-light: #E8D5B5;
    --gold-soft: #F5EDE0;
    
    /* White */
    --white: #FFFFFF;
    --white-soft: #FCFAF8;
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, rgba(113,100,134,0.85) 0%, rgba(58,48,68,0.6) 100%);
    --card-shadow: 0 8px 40px rgba(113,100,134,0.12);
    --card-shadow-hover: 0 20px 60px rgba(113,100,134,0.2);
    
    /* Section Backgrounds */
    --bg-light: #F8F5F9;
    --bg-soft: #F3EFF5;
    --bg-warm: #FAF6F3;
    
    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-sans); 
    background: var(--cream); 
    color: var(--charcoal); 
    line-height: 1.7; 
    -webkit-font-smoothing: antialiased; 
}
h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-serif); 
    font-weight: 400; 
    letter-spacing: 0.02em; 
    line-height: 1.2; 
}
h1 { font-size: 4rem; }
h2 { font-size: 3rem; margin-bottom: 1.5rem; color: var(--charcoal); }
h3 { font-size: 1.75rem; }
p { 
    font-size: 1.125rem; 
    color: var(--charcoal-light); 
    line-height: 1.8; 
}
a { text-decoration: none; transition: all 0.3s ease; }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}
.btn-lg { padding: 1.125rem 3rem; font-size: 1.0625rem; }

.btn-primary { 
    background: var(--primary-gradient); 
    color: var(--white); 
    box-shadow: 0 4px 20px rgba(113,100,134,0.3);
}
.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 40px rgba(113,100,134,0.4);
    color: var(--white);
}

.btn-secondary { 
    background: transparent; 
    color: var(--charcoal); 
    border: 2px solid var(--primary); 
}
.btn-secondary:hover { 
    background: var(--primary); 
    color: var(--white); 
    border-color: var(--primary);
}

.btn-outline-light { 
    background: transparent; 
    color: var(--white); 
    border: 2px solid rgba(255,255,255,0.3); 
}
.btn-outline-light:hover { 
    background: var(--white); 
    color: var(--primary); 
    border-color: var(--white);
}

.btn-block { width: 100%; text-align: center; }
.btn-sm { padding: 0.5rem 1.5rem; font-size: 0.875rem; }

/* ============================================
   HEADER - PROPER ALIGNMENT & SIZING
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    padding: 0.5rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
}

/* ===== LOGO ===== */
.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;  /* Increased from 1.35rem */
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo .logo-icon {
    color: var(--primary);
    font-size: 1.6rem;  /* Increased from 1.25rem */
}

.logo .logo-img {
    max-height: 65px;  /* Added - controls image logo size */
    width: auto;
}

.logo:hover {
    color: var(--primary);
}

.logo:hover .logo-icon {
    color: var(--primary-dark);
}

/* Responsive Logo */
@media (max-width: 992px) {
    .logo {
        font-size: 1.25rem;
    }
    .logo .logo-icon {
        font-size: 1.2rem;
    }
    .logo .logo-img {
        max-height: 45px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.1rem;
    }
    .logo .logo-icon {
        font-size: 1.1rem;
    }
    .logo .logo-img {
        max-height: 38px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 0.95rem;
    }
    .logo .logo-icon {
        font-size: 0.95rem;
    }
    .logo .logo-img {
        max-height: 32px;
    }
}

/* ===== NAVIGATION - CENTER ALIGNED ===== */
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex: 1;
    margin: 0 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--charcoal-light);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.4rem 0;
    line-height: 1;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--primary);
}

.nav a.active {
    color: var(--primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* ===== BOOK NOW BUTTON ===== */
.nav-cta {
    background: var(--primary-gradient);
    color: var(--white) !important;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    line-height: 1;
    display: inline-block;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(113, 100, 134, 0.35);
    color: var(--white) !important;
}

.nav-cta::after {
    display: none !important;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.mobile-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    padding: 2rem 1.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cream-200);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal-light);
    padding: 0.5rem;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--cream-100);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mobile-menu .nav-cta {
    border: none;
    text-align: center;
    background: var(--primary-gradient);
    color: var(--white) !important;
    padding: 0.85rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-size: 1.1rem;
    width: 100%;
    min-width: auto;
}

/* ============================================
   RESPONSIVE HEADER
   ============================================ */
@media (max-width: 1100px) {
    .nav { gap: 1.5rem; margin: 0 1.5rem; }
    .nav a { font-size: 0.875rem; }
    .nav-cta { padding: 0.65rem 2rem; font-size: 0.875rem; min-width: 100px; }
}

@media (max-width: 992px) {
    .nav { gap: 1.25rem; margin: 0 1rem; }
    .nav a { font-size: 0.8125rem; }
    .nav-cta { padding: 0.55rem 1.5rem; font-size: 0.8125rem; min-width: 80px; }
    .logo { font-size: 1.1rem; }
    .header-inner { height: 64px; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-toggle { display: block; }
    .mobile-menu { display: block; }
    .logo { font-size: 1.1rem; }
    .logo .logo-icon { font-size: 1.1rem; }
    .header-inner { height: 60px; }
}

@media (max-width: 480px) {
    .logo { font-size: 0.95rem; }
    .logo .logo-icon { font-size: 0.95rem; }
    .header-inner { height: 56px; }
    .mobile-toggle { font-size: 1.25rem; }
}

/* ============================================
   HERO SECTION - STARTS AFTER HEADER
   ============================================ */
.hero-section {
    position: relative;
    height: calc(100vh - 74px);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal-900);
    margin-top: 74px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.08) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    color: var(--white);
    padding: 2rem 0;
}

.hero-tag {
    display: inline-block;
    padding: 0.25rem 1.25rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 550px;
    text-shadow: 0 1px 20px rgba(0,0,0,0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-section {
        height: calc(100vh - 64px);
        min-height: 500px;
        margin-top: 64px;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 60px);
        min-height: 450px;
        margin-top: 60px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: calc(100vh - 56px);
        min-height: 400px;
        margin-top: 56px;
    }
    .hero-content h1 {
        font-size: 1.75rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 70px;
}
.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(113,100,134,0.7) 0%, rgba(58,48,68,0.4) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}
.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}
.page-hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 4rem 0;
    background: var(--primary-gradient);
    color: var(--white);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item .stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}
.stat-item .stat-label {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 6rem 0; }
.section-light { background: var(--bg-light); }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-alt { background: var(--white); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}
.section-header.text-center { text-align: center; }
.section-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}
.section-header p {
    font-size: 1.125rem;
    color: var(--charcoal-light);
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */
.intro-section .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.intro-content .intro-text {
    font-size: 1.125rem;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
}
.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}
.intro-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--primary-soft);
    border-radius: 8px;
    border: 1px solid rgba(113,100,134,0.1);
}
.intro-feature i {
    color: var(--primary);
    font-size: 1.125rem;
}
.intro-feature span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
}
.intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}
.intro-image-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(113,100,134,0.3);
}
.intro-image-badge span {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
}
.intro-image-badge small {
    font-size: 0.875rem;
    opacity: 0.85;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.premium-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}
.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--card-shadow-hover);
}
.premium-card .service-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.premium-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.premium-card:hover .service-image img {
    transform: scale(1.08);
}
.premium-card .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(113,100,134,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}
.premium-card:hover .service-overlay {
    opacity: 1;
}
.premium-card .service-info {
    padding: 1.75rem;
}
.premium-card .service-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}
.premium-card .service-info p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
}
.premium-card .service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.premium-card .service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}
.premium-card .service-duration {
    font-size: 0.875rem;
    color: var(--charcoal-soft);
}
.view-all-wrap {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--bg-light); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.step-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
}
.step-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}
.step-item .step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}
.step-item .step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.step-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}
.step-item p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-section { background: var(--bg-soft); }
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.package-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}
.package-card .package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}
.package-card .package-image {
    height: 200px;
    overflow: hidden;
}
.package-card .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.package-card:hover .package-image img {
    transform: scale(1.05);
}
.package-card .package-content {
    padding: 1.75rem;
}
.package-card .package-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}
.package-card .package-content p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
}
.package-card .package-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.package-card .package-regular {
    font-size: 0.9375rem;
    color: var(--charcoal-soft);
    text-decoration: line-through;
}
.package-card .package-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-us { background: var(--bg-warm); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(113,100,134,0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
}
.feature-item .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}
.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}
.feature-item p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-light); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(113,100,134,0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
}
.testimonial-card .testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
}
.testimonial-card blockquote {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}
.testimonial-card .author-info strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--charcoal);
}
.testimonial-card .author-info span {
    font-size: 0.8125rem;
    color: var(--charcoal-soft);
}

/* ============================================
   AREAS
   ============================================ */
.areas-section { background: var(--bg-soft); }
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}
.area-tag {
    padding: 0.625rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(113,100,134,0.12);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--charcoal-light);
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.area-tag:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(113,100,134,0.3);
}

/* ============================================
   BLOG
   ============================================ */
.blog-section { background: var(--white); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}
.blog-card .blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}
.blog-card .blog-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
}
.blog-card .blog-content {
    padding: 1.75rem;
}
.blog-card .blog-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}
.blog-card .blog-content p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
}
.blog-card .blog-read-more {
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s ease;
}
.blog-card .blog-read-more:hover {
    color: var(--primary-dark);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-description {
    font-size: 1.0625rem;
    color: var(--charcoal-light);
    margin-bottom: 2rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(113,100,134,0.06);
    transition: all 0.3s ease;
}
.contact-item:hover {
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: var(--card-shadow);
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.contact-item:hover .contact-icon {
    background: var(--primary-gradient);
    color: var(--white);
}
.contact-item h4 {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--charcoal-soft);
    margin-bottom: 0.1rem;
}
.contact-item a,
.contact-item p {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 500;
}
.contact-item a:hover { color: var(--primary); }

.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(113,100,134,0.08);
}
.contact-social h4 {
    font-size: 0.875rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}
.contact-social-icons {
    display: flex;
    gap: 0.75rem;
}
.contact-social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}
.contact-social-icons a:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(113,100,134,0.3);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(113,100,134,0.06);
}
.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    font-family: var(--font-serif);
}
.contact-form .form-group {
    margin-bottom: 1.25rem;
}
.contact-form .form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
}
.contact-form .form-group .required { color: #e74c3c; }
.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--cream-200);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: var(--cream);
    color: var(--charcoal);
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(113,100,134,0.08);
    background: var(--white);
}
.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}
.contact-form .alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.contact-form .alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.btn-submit {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================
   PREMIUM CTA
   ============================================ */
.premium-cta {
    background: var(--primary-gradient);
    padding: 6rem 2rem;
    text-align: center;
}
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.cta-tag {
    display: inline-block;
    padding: 0.25rem 1.25rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.premium-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}
.premium-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.footer p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
}
.footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}
.footer a:hover {
    color: var(--primary-light);
    padding-left: 0.25rem;
}
.footer .logo {
    color: var(--white);
    font-size: 1.5rem;
}
.footer .logo span { color: var(--primary-light); }
.footer .logo:hover { color: var(--primary-light); }
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    padding: 0;
}
.footer-social a:hover {
    background: var(--primary);
    padding-left: 0;
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}
.footer-bottom a {
    display: inline-block;
    padding: 0;
}
.footer-bottom a:hover { padding-left: 0; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 25px rgba(37,211,102,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37,211,102,0.5);
    color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="150"] { transition-delay: 0.15s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="250"] { transition-delay: 0.25s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="350"] { transition-delay: 0.35s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }

/* ============================================
   LOGO STYLES
   ============================================ */
.logo-img {
    max-height: 65px;
    width: auto;
    display: block;
}
@media (max-width: 768px) {
    .logo-img { max-height: 40px; }
}
@media (max-width: 480px) {
    .logo-img { max-height: 32px; }
}

.footer-logo-img {
    max-height: 65px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
    .footer-logo-img { max-height: 35px; }
}

/* ============================================
   BOOKING PAGE - PREMIUM STYLES
   ============================================ */
.booking-section {
    background: var(--cream);
    padding: 4rem 0;
}
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}
.booking-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(113,100,134,0.06);
    position: sticky;
    top: 100px;
}
.booking-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.booking-info-card h3 i {
    color: var(--primary);
    font-size: 1.5rem;
}
.booking-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}
.booking-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(113,100,134,0.06);
}
.booking-benefits li:last-child {
    border-bottom: none;
}
.booking-benefits li i {
    color: var(--primary);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}
.booking-benefits li strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--charcoal);
    margin-bottom: 0.125rem;
}
.booking-benefits li span {
    font-size: 0.875rem;
    color: var(--charcoal-light);
}
.booking-info-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(113,100,134,0.08);
    text-align: center;
}
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    color: var(--white);
}
.booking-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(113,100,134,0.06);
}
.booking-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-family: var(--font-serif);
}
.booking-subtitle {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    margin-bottom: 2rem;
}
.booking-form .form-group {
    margin-bottom: 1.25rem;
}
.booking-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
}
.booking-form .form-group label i {
    color: var(--primary);
    font-size: 0.875rem;
    width: 1.125rem;
}
.booking-form .form-group .required {
    color: #e74c3c;
    font-weight: 700;
}
.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--cream-200);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: var(--cream);
    color: var(--charcoal);
}
.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(113,100,134,0.08);
    background: var(--white);
}
.booking-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.booking-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
.form-disclaimer {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--charcoal-soft);
    margin-top: 1rem;
}
.form-disclaimer i {
    color: var(--primary);
    margin-right: 0.25rem;
}
.why-choose-mini {
    background: var(--bg-light);
    padding: 3rem 0;
}
.mini-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.mini-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(113,100,134,0.06);
    transition: all 0.3s ease;
}
.mini-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary);
}
.mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}
.mini-feature h4 {
    font-size: 0.9375rem;
    color: var(--charcoal);
    margin-bottom: 0.125rem;
}
.mini-feature p {
    font-size: 0.8125rem;
    color: var(--charcoal-light);
    margin: 0;
}

/* ============================================
   BLOG PAGE - COMPLETE STYLES
   ============================================ */
.blog-main-section {
    background: var(--cream);
    padding: 4rem 0;
}
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.blog-card-large {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}
.blog-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}
.blog-card-large .blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-card-large .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card-large:hover .blog-image img {
    transform: scale(1.05);
}
.blog-card-large .blog-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    text-align: center;
    min-width: 50px;
    box-shadow: 0 4px 15px rgba(113,100,134,0.3);
}
.blog-card-large .blog-date .blog-day {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}
.blog-card-large .blog-date .blog-month {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}
.blog-card-large .blog-content {
    padding: 1.75rem;
}
.blog-card-large .blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--charcoal-soft);
}
.blog-card-large .blog-meta i {
    margin-right: 0.25rem;
    color: var(--primary);
}
.blog-card-large .blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.blog-card-large .blog-content h3 a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-card-large .blog-content h3 a:hover {
    color: var(--primary);
}
.blog-card-large .blog-content p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
}
.blog-card-large .blog-read-more {
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.blog-card-large .blog-read-more:hover {
    color: var(--primary-dark);
    gap: 1rem;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-200);
}
.pagination a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid var(--cream-200);
}
.pagination a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.pagination a.active {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary);
}
.pagination-numbers {
    display: flex;
    gap: 0.25rem;
}
.pagination-numbers a {
    min-width: 40px;
    justify-content: center;
}
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}
.no-posts i {
    font-size: 3rem;
    color: var(--primary-soft);
    margin-bottom: 1rem;
}
.no-posts h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.no-posts p {
    color: var(--charcoal-light);
}
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.sidebar-widget {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(113,100,134,0.06);
}
.sidebar-widget h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
}
.sidebar-widget h4 i {
    color: var(--primary);
}
.search-form {
    display: flex;
    gap: 0.5rem;
}
.search-form input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 2px solid var(--cream-200);
    border-radius: 10px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: var(--cream);
}
.search-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(113,100,134,0.08);
}
.search-form button {
    padding: 0.625rem 1rem;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-form button:hover {
    transform: translateX(2px);
    box-shadow: 0 4px 15px rgba(113,100,134,0.3);
}
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.categories-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream-100);
}
.categories-list li:last-child {
    border-bottom: none;
}
.categories-list a {
    color: var(--charcoal-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}
.categories-list a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}
.recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recent-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream-100);
}
.recent-list li:last-child {
    border-bottom: none;
}
.recent-list a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
}
.recent-list a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}
.recent-list .recent-title {
    font-weight: 500;
    font-size: 0.9375rem;
}
.recent-list .recent-date {
    font-size: 0.75rem;
    color: var(--charcoal-soft);
}
.newsletter-widget p {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
}
.newsletter-form input {
    width: 100%;
    padding: 0.625rem 1rem;
    border: 2px solid var(--cream-200);
    border-radius: 10px;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    background: var(--cream);
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(113,100,134,0.08);
}
.cta-widget {
    background: var(--primary-gradient);
    border: none;
    padding: 2rem;
    text-align: center;
}
.cta-widget-content {
    color: var(--white);
}
.cta-widget-content i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}
.cta-widget-content h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}
.cta-widget-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}
.cta-widget-content .btn {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
}
.cta-widget-content .btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}
.about-text p {
    margin-bottom: 1rem;
    color: var(--charcoal-light);
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-soft);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
}
.about-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
}
.about-stat-label {
    font-size: 0.875rem;
    color: var(--charcoal-light);
}
.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}
.about-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 30px rgba(113,100,134,0.3);
}
.about-image-badge i {
    font-size: 1.5rem;
}

/* ============================================
   VALUES
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(113,100,134,0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary);
}
.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}
.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}
.value-card p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}
.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-info {
    padding: 1.5rem;
}
.team-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}
.team-info span {
    display: block;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.team-info p {
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .intro-section .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .booking-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .booking-info-card { position: static; }
    .mini-features { grid-template-columns: repeat(2, 1fr); }
    .blog-layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .mini-features { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .booking-form-wrapper { padding: 1.5rem; }
    .booking-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .booking-form .form-group { margin-bottom: 1rem; }
    .booking-info-card { padding: 1.5rem; }
    .booking-benefits li { padding: 0.5rem 0; }
    .contact-form-wrapper { padding: 1.5rem; }
    .sidebar-widget { padding: 1.25rem; }
    .page-hero { min-height: 300px; margin-top: 70px; }
    .page-hero-content h1 { font-size: 2.25rem; }
    .page-hero-content p { font-size: 1rem; }
    .section-header h2 { font-size: 2rem; }
    .premium-cta h2 { font-size: 2rem; }
    .intro-image img { height: 300px; }
    .intro-image-badge { right: 0; }
    .intro-features { grid-template-columns: 1fr; }
    .about-image img { height: 300px; }
    .about-image-badge { left: 1rem; bottom: 1rem; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .container { padding: 0 1rem; }
    .section { padding: 4rem 0; }
    .stat-item .stat-number { font-size: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form-wrapper { padding: 1.5rem; }
    .about-stat { padding: 1rem; }
    .blog-card-large .blog-image { height: 200px; }
    .pagination { flex-wrap: wrap; gap: 0.5rem; }
    .pagination-numbers { order: 3; width: 100%; justify-content: center; }
    .pagination-prev { order: 1; }
    .pagination-next { order: 2; }
}

@media (max-width: 480px) {
    .btn { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
    .btn-lg { padding: 0.875rem 1.75rem; font-size: 0.9375rem; }
    .float-whatsapp { width: 50px; height: 50px; font-size: 1.5rem; bottom: 1rem; right: 1rem; }
    .about-stats { grid-template-columns: 1fr; }
    .page-hero-content h1 { font-size: 1.75rem; }
    .team-image { height: 200px; }
    .blog-card-large .blog-image { height: 180px; }
    .blog-card-large .blog-content { padding: 1.25rem; }
    .blog-card-large .blog-meta { font-size: 0.75rem; gap: 1rem; }
    .blog-card-large .blog-content h3 { font-size: 1.0625rem; }
    .booking-form-wrapper { padding: 1rem; }
    .mini-features { grid-template-columns: 1fr; }
    .booking-info-card h3 { font-size: 1.125rem; }
    .booking-form-card h3 { font-size: 1.25rem; }
    .contact-form-wrapper { padding: 1rem; }
    .contact-item { flex-direction: row; align-items: center; padding: 0.75rem; }
    .contact-item:hover { transform: translateX(0); }
}
/* ============================================
   FOOTER - DARK BACKGROUND, COMPACT
   ============================================ */
.footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.7);
    padding: 2.5rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer h4 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.4rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: #8F7A9E;
}

.footer p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    display: block;
    padding: 0.15rem 0;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer a:hover {
    color: #8F7A9E;
    padding-left: 0.25rem;
}

.footer .logo {
    color: #ffffff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.footer .logo:hover {
    color: #8F7A9E;
    padding-left: 0;
}

.footer .logo .logo-icon {
    color: #8F7A9E;
}

/* Footer Logo */
.footer-logo-img {
    max-height: 38px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .footer-logo-img {
        max-height: 30px;
    }
}

/* Social Links */
.footer-social-link {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    color: rgba(255,255,255,0.5) !important;
}

.footer-social-link:hover {
    background: #716486 !important;
    padding-left: 0 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.footer-bottom a {
    display: inline-block;
    padding: 0;
}

.footer-bottom a:hover {
    padding-left: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 0.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: center;
    }
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer h4 {
        text-align: center;
    }
    .footer a {
        text-align: center;
    }
    .footer .logo {
        justify-content: center;
    }
    .footer-social-link {
        margin: 0 auto;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
        padding-top: 0.8rem;
    }
    .footer-bottom > div {
        justify-content: center;
        gap: 1rem;
    }
}