/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #3a4557; /* Charcoal gray-blue */
    --secondary-color: #c9a961; /* Champagne gold */
    --accent-color: #2c3544; /* Darker charcoal */
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-light: #f8f8f8;
    --bg-dark: #2c3544;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(42, 53, 68, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

/* Logo Styling FIX */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 100px; /* FINAL LOGO SIZE: Increased to 100px for maximum prominence */
    width: auto;
}

.company-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
}

.nav-cta:hover {
    background: #d4b56f;
    color: var(--text-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23c9a961" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #d4b56f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* New Contact Buttons */
.btn-whatsapp {
    background: #25D366;
    color: var(--text-light);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--text-light);
}

.btn-email {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-email:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

/* ===== SECTION STYLES ===== */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.booking-widget-placeholder {
    max-width: 800px; /* Constrain the widget width */
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Ensure Square widget is responsive */
.booking-widget-placeholder iframe {
    width: 100%;
    min-height: 800px;
    border: none;
}

.contact-buttons-new {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-text {
    text-align: center;
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    color: #444;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.service-link:hover {
    color: var(--primary-color);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.reviews-section .section-title {
    color: var(--text-light);
}

.reviews-section .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.reviewer-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.reviews-container {
    text-align: center;
    margin-top: 50px;
}

.google-reviews-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: var(--text-dark);
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
}

.google-reviews-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.google-icon {
    font-size: 2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

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

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    background: var(--secondary-color);
    color: var(--text-dark); /* FIX: Set to black */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    display: flex; 
    align-items: center; 
    /* FIX: Add subtle white shadow for "outline" effect */
    text-shadow: 1px 1px 0 var(--text-light), -1px -1px 0 var(--text-light), 1px -1px 0 var(--text-light), -1px 1px 0 var(--text-light);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
    text-shadow: none; /* Remove shadow on hover */
}

.social-link i {
    margin-right: 8px;
    font-size: 1.2rem; 
}

/* New Contact Form/Buttons */
.contact-form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Adjusted for better proportionality */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    /* FIX: Ensure logo is centered on mobile and aligned on desktop */
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 100px; /* FINAL FIX: Increased to 100px for prominence in footer */
    width: auto;
}

.footer-info p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info a {
    color: var(--secondary-color);
}

.footer-info a:hover {
    color: var(--text-light);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--secondary-color);
    font-weight: 500;
}

.footer-social a:hover {
    color: var(--text-light);
}

.footer-social a i {
    margin-right: 5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .logo-container {
        gap: 5px;
    }

    .company-name {
        font-size: 1.5rem;
    }
    
    .contact-buttons-new {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
