/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light mode colors */
    --primary: hsl(30, 85%, 55%);
    --primary-foreground: hsl(35, 15%, 97%);
    --background: hsl(35, 4%, 96%);
    --foreground: hsl(270, 25%, 18%);
    --card: hsl(35, 6%, 94%);
    --card-foreground: hsl(270, 25%, 18%);
    --border: hsl(35, 8%, 88%);
    --muted: hsl(35, 10%, 90%);
    --muted-foreground: hsl(270, 15%, 45%);
    --accent: hsl(25, 18%, 87%);
    --accent-foreground: hsl(270, 25%, 18%);
    --input: hsl(35, 15%, 78%);
    
    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Merriweather', serif;
    --font-cinzel: 'Cinzel', serif;
}

.dark {
    --background: hsl(270, 15%, 8%);
    --foreground: hsl(35, 10%, 90%);
    --card: hsl(270, 10%, 12%);
    --card-foreground: hsl(35, 10%, 90%);
    --border: hsl(270, 12%, 15%);
    --muted: hsl(270, 10%, 16%);
    --muted-foreground: hsl(35, 8%, 65%);
    --accent: hsl(25, 12%, 18%);
    --accent-foreground: hsl(35, 10%, 90%);
    --input: hsl(270, 15%, 25%);
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(var(--background-rgb, 248, 249, 251), 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h1 {
    font-family: var(--font-cinzel);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle, .mobile-menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    color: var(--foreground);
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.theme-toggle:hover, .mobile-menu-toggle:hover {
    background: var(--muted);
}

.mobile-menu-toggle {
    display: none;
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav a {
    display: block;
    padding: 0.5rem 0;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
    padding: 4rem 1rem;
}

.hero-left {
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-image {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.hero-left h1 {
    font-family: var(--font-cinzel);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
    background: hsl(30, 85%, 50%);
    transform: translateY(-2px);
}

.hero-right {
    display: flex;
    justify-content: center;
}

.booking-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.booking-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.booking-card .form-group label {
    color: white !important;
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0.375rem;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 0.875rem;
}

.form-group select option {
    background: var(--card);
    color: var(--card-foreground);
}

.book-btn {
    width: 100%;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background: hsl(30, 85%, 50%);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-cinzel);
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-image {
    height: 12rem;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-content li {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-btn {
    width: 100%;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background: hsl(30, 85%, 50%);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--background);
}

.section-divider {
    width: 4rem;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 1.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.highlight-badge {
    background: rgba(var(--primary-rgb, 223, 146, 55), 0.1);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb, 223, 146, 55), 0.2);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

.services-list-card {
    background: linear-gradient(135deg, rgba(var(--primary-rgb, 223, 146, 55), 0.05) 0%, rgba(var(--accent-rgb, 227, 220, 213), 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.services-list-card h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.services-list div {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    padding: 0.25rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(var(--primary-rgb, 223, 146, 55), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Booking Section */
.booking {
    padding: 4rem 0;
    background: rgba(var(--accent-rgb, 227, 220, 213), 0.2);
}

.booking-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.booking-form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    background: var(--background);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 223, 146, 55), 0.1);
}

.booking-submit-btn {
    width: 100%;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.booking-submit-btn:hover {
    background: hsl(30, 85%, 50%);
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: rgba(var(--card-rgb, 244, 244, 245), 0.5);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-serif);
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.footer-section p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.cities-grid,
.languages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
}

.cities-grid span,
.languages-grid span {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cities-grid span:hover,
.languages-grid span:hover {
    color: var(--primary);
}

.availability-card {
    background: rgba(var(--primary-rgb, 223, 146, 55), 0.05);
    border: 1px solid rgba(var(--primary-rgb, 223, 146, 55), 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1.5rem;
}

.availability-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.availability-card p {
    color: var(--muted-foreground);
    font-size: 0.75rem;
    margin: 0;
}

/* Social Media Styles */
.social-media {
    margin-top: 1.5rem;
}

.social-media h4 {
    font-family: var(--font-serif);
    color: var(--foreground);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: hsl(30, 85%, 50%);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 3.5rem;
    height: 3.5rem;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .hero-left {
        text-align: left;
    }
    
    .hero-logo-icon {
        margin: 0 0 1.5rem;
    }
    
    .hero-left h1 {
        font-size: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-left h1 {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav.show {
        display: block;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .booking-form-card {
        padding: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}