/* =============================================
   CSS Variables & Properties
   ============================================= */
:root {
    /* Premium Beige Luxury Palette */
    --primary-color: #93789F;
    --primary-light: #f5ede4;
    --primary-dark: #5c325c;
    --secondary-color: #b8865f;
    --secondary-light: #f3ebe3;
    --accent-color: #25d366;
    
    /* Text Colors */
    --text-main: #3d3028;
    --text-muted: #8b7d72;
    --text-light: #faf6f0;
    
    /* Background Colors */
    --bg-main: #faf6f0;
    --bg-light: #f5ede4;
    --bg-card: #ffffff;
    --header-bg: rgba(250, 246, 240, 0.95);
    --header-bg-scrolled: rgba(250, 246, 240, 0.98);
    
    /* Border */
    --border-color: #e8ddd0;
    --border-light: #f0e8de;
    --overlay-bg: rgba(61, 48, 40, 0.04);
    
    /* Hero */
    --hero-bg: linear-gradient(135deg, #faf6f0 0%, #f5ede4 100%);
    --hero-glow: radial-gradient(circle, rgba(196, 149, 106, 0.1) 0%, rgba(255,255,255,0) 70%);
    
    /* Footer */
    --footer-bg: #3d3028;
    --footer-bg-dark: #2c2420;
    --footer-text: #b8a99a;
    
    /* Star / Rating */
    --star-color: #5c325c;
    
    /* Dots / Indicators */
    --dot-color: #d1c4b8;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(61, 48, 40, 0.05), 0 1px 2px rgba(61, 48, 40, 0.07);
    --shadow-md: 0 4px 6px rgba(61, 48, 40, 0.05), 0 10px 15px -3px rgba(61, 48, 40, 0.08);
    --shadow-lg: 0 10px 15px rgba(61, 48, 40, 0.04), 0 20px 25px -5px rgba(61, 48, 40, 0.1);
    --shadow-primary: 0 4px 15px rgba(196, 149, 106, 0.25);
    --shadow-primary-hover: 0 8px 25px rgba(196, 149, 106, 0.35);
    --shadow-secondary: 0 10px 20px rgba(184, 134, 95, 0.25);
    
    /* Utility */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* =============================================
   Dark Mode
   ============================================= */
.dark-mode {
    --primary-color: #c4956a;
    --primary-light: #3a2d26;
    --primary-dark: #d4a87a;
    --secondary-color: #b8865f;
    --secondary-light: #3a2d26;
    --accent-color: #25d366;
    
    --text-main: #e8ddd4;
    --text-muted: #a8988c;
    --text-light: #faf6f0;
    
    --bg-main: #1a1412;
    --bg-light: #241d1a;
    --bg-card: #2c2420;
    --header-bg: rgba(26, 20, 18, 0.95);
    --header-bg-scrolled: rgba(26, 20, 18, 0.98);
    
    --border-color: #3d322c;
    --border-light: #332a25;
    --overlay-bg: rgba(255, 255, 255, 0.04);
    
    --hero-bg: linear-gradient(135deg, #1a1412 0%, #241d1a 100%);
    --hero-glow: radial-gradient(circle, rgba(196, 149, 106, 0.08) 0%, rgba(26, 20, 18, 0) 70%);
    
    --footer-bg: #0f0c0a;
    --footer-bg-dark: #080605;
    --footer-text: #8b7d72;
    
    --star-color: #d4a043;
    
    --dot-color: #5a4d44;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3), 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3), 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-primary: 0 4px 15px rgba(196, 149, 106, 0.15);
    --shadow-primary-hover: 0 8px 25px rgba(196, 149, 106, 0.25);
    --shadow-secondary: 0 10px 20px rgba(184, 134, 95, 0.15);
}

/* =============================================
   Theme Transition
   ============================================= */
html.theme-switching *,
html.theme-switching *::before,
html.theme-switching *::after {
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

/* =============================================
   Theme Toggle - Capsule Switch
   ============================================= */
.theme-switch {
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.theme-switch-track {
    width: 54px;
    height: 28px;
    background: var(--bg-light);
    border-radius: 99px;
    position: relative;
    transition: all 0.35s ease;
    border: 2px solid var(--border-color);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}

.theme-switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: transform 0.35s cubic-bezier(0.68, -0.15, 0.27, 1.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--text-light);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.dark-mode .theme-switch-track {
    border-color: var(--primary-color);
}

.dark-mode .theme-switch-thumb {
    transform: translateX(26px);
    background: var(--primary-color);
}

.theme-switch-thumb .fa-sun,
.theme-switch-thumb .fa-moon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-switch-thumb .fa-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-switch-thumb .fa-moon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.dark-mode .theme-switch-thumb .fa-sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.dark-mode .theme-switch-thumb .fa-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Theme Switch hover */
.theme-switch:hover .theme-switch-track {
    border-color: var(--primary-color);
}

.theme-switch:hover .theme-switch-thumb {
    box-shadow: 0 0 0 4px rgba(196, 149, 106, 0.15);
}

/* =============================================
   Base Styles & Reset
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.section-padding {
    padding: 80px 0;
}

@media (min-width: 992px) {
    .section-padding {
        padding: 100px 0;
    }
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   Typography & Utilities
   ============================================= */
.section-subtitle {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.text-center .section-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
}

.hero-content .section-subtitle::after,
.about-content .section-subtitle::after,
.appointment-content .section-subtitle::after,
.contact-info .section-subtitle::after {
    left: 0;
    transform: none;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.8rem;
    }
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.sm-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-hover);
    color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    transform: translateY(-3px);
    border-color: transparent;
}

.btn-whatsapp {
    background-color: var(--accent-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1cbf5a;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.w-100 {
    width: 100%;
}

/* =============================================
   Header & Navigation
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 15px 0;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 10px 0;
    background-color: var(--header-bg-scrolled);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.5rem;
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.dr-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    letter-spacing: -0.3px;
}

.dr-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar {
    display: none;
}

.nav-links {
    display: flex;
    gap: 4px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: var(--border-radius-full);
}

.nav-links a {
    display: block;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 22px;
    border-radius: var(--border-radius-full);
    transition: var(--transition-normal);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 2px 8px rgba(196, 149, 106, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions .btn {
    display: none;
}

.mobile-menu-btn {
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

@media (min-width: 992px) {
    .navbar {
        display: block;
    }
    .nav-actions .btn {
        display: inline-flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1150px) {
    .nav-links a {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    max-height: 100vh;
    background-color: var(--bg-card);
    z-index: 2000;
    padding: 30px;
    box-shadow: -10px 0 20px rgba(0,0,0,0.15);
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-header .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    padding: 12px 0;
    min-height: 44px;
    align-items: center;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--hero-glow);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero {
        padding-top: 80px;
    }
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(196, 149, 106, 0.15);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 105%;
    height: 12px;
    bottom: 4px;
    left: -2.5%;
    background: linear-gradient(90deg, rgba(196, 149, 106, 0.2), rgba(196, 149, 106, 0.08));
    z-index: -1;
    border-radius: 4px;
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 30px;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.stat i {
    color: var(--star-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
}

.main-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 500px;
    width: 100%;
    border: 8px solid var(--bg-card);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-card);
    padding: 15px 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 5s ease-in-out infinite;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    color: var(--text-main);
    font-size: 1rem;
}

.card-text span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =============================================
   About Section
   ============================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
}

.rounded-image {
    border-radius: var(--border-radius-lg);
    width: 100%;
    border: 6px solid var(--bg-card);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--text-light);
    padding: 22px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.profession-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
}

.about-features {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 576px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.about-features li:hover {
    background: var(--primary-light);
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* =============================================
   Services Section
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(196, 149, 106, 0.3);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.review-card.active {
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.review-card:not(.active) {
    opacity: 0.4;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.review-card {
    transition: all 0.5s ease;
}

/* =============================================
   Appointment Section
   ============================================= */
.appointment-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 992px) {
    .appointment-container {
        grid-template-columns: 1fr 1fr;
    }
}

.booking-options {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.booking-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.booking-card:hover .booking-icon {
    transform: scale(1.05);
}

.whatsapp-bg {
    background-color: var(--accent-color);
}

.phone-bg {
    background-color: var(--primary-color);
}

.booking-text h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.booking-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.form-wrapper {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.form-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* =============================================
   Reviews Section
   ============================================= */
.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.stars {
    color: var(--star-color);
    font-size: 1.2rem;
}

.sm-stars {
    font-size: 0.8rem;
}

.reviews-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 100%;
    padding: 40px;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
    opacity: 0.5;
    transition: opacity 0.3s;
    user-select: none;
}

.review-card.active {
    opacity: 1;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.8;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.reviewer-details h4 {
    margin-bottom: 2px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background-color: var(--bg-card);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--border-light);
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--dot-color);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dot.active {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    width: 24px;
    border-radius: 4px;
}

/* =============================================
   Contact & Location
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.info-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-icon.whatsapp { background-color: #25d366; }
.social-icon.facebook { background-color: #1877f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
}

@media (min-width: 992px) {
    .map-container {
        height: 100%;
        min-height: 400px;
    }
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--secondary-color);
}

.footer-desc {
    color: var(--footer-text);
    max-width: 350px;
}

.footer h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--footer-text);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-links a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--footer-text);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 1rem;
}

.footer-bottom {
    background-color: var(--footer-bg-dark);
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--footer-text);
}

/* =============================================
   Floating Elements
   ============================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-color), #1cbf5a);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulse 2.5s ease-in-out infinite;
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--text-light);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    60% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 20px;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
    z-index: 900;
    display: block;
}

@media (min-width: 768px) {
    .mobile-sticky-cta {
        display: none;
    }
}

/* =============================================
   Animations
   ============================================= */
.reveal-left, .reveal-right, .reveal-bottom {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-bottom { transform: translateY(50px); }

.reveal-left.active, .reveal-right.active, .reveal-bottom.active {
    opacity: 1;
    transform: translate(0);
}

/* =============================================
   Gallery Section
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--text-light);
    font-size: 1.8rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 48, 40, 0.6), transparent 60%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

/* =============================================
   Google Form Container
   ============================================= */
.google-form-container {
    height: 600px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.google-form-container iframe {
    display: block;
    min-height: 100%;
}

@media (max-width: 991px) {
    .google-form-container {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .google-form-container {
        height: 480px;
    }
}

@media (max-width: 400px) {
    .google-form-container {
        height: 440px;
    }
}

@media (max-width: 360px) {
    .google-form-container {
        height: 400px;
    }
}

/* =============================================
   Mobile Optimization Overrides
   ============================================= */
@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .main-img {
        height: 350px;
        border-width: 5px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .floating-card {
        padding: 10px 15px;
        bottom: -15px;
        left: -10px;
    }
    
    .icon-box {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .rounded-image {
        height: 280px;
        object-fit: cover;
    }
    
    .experience-badge {
        padding: 12px;
        bottom: 10px;
        right: 0;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.75rem;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .map-container {
        height: 280px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat {
        padding-right: 15px;
    }

    .stat:not(:last-child)::after {
        height: 30px;
    }

    .hero::before {
        width: 300px;
        height: 300px;
    }

    .booking-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .booking-text .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-grid {
        gap: 30px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .footer {
        padding-top: 50px;
    }

    .floating-wa {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .main-img {
        height: 280px;
    }

    .rounded-image {
        height: 240px;
    }

    .floating-card {
        padding: 8px 12px;
    }

    .card-text strong {
        font-size: 0.85rem;
    }

    .card-text span {
        font-size: 0.75rem;
    }

    .gallery-grid {
        gap: 10px;
    }
}

/* =============================================
   Tablet Optimization
   ============================================= */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .main-img {
        height: 400px;
    }

    .rounded-image {
        height: 350px;
        object-fit: cover;
    }

    .experience-badge {
        right: -10px;
        padding: 15px;
    }

    .experience-badge .number {
        font-size: 2rem;
    }

    .about-container {
        gap: 30px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .gallery-grid {
        gap: 15px;
    }

    .footer-container {
        gap: 30px;
    }
}
.logo-img {
    height: 130px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 65px; /* Smaller logo for mobile screens */
    }
}
/* New Location Tabs Styles */
.location-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-light);
    background: var(--bg-card);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.mb-4 { margin-bottom: 1.5rem; }
