:root {
    /* Dark Green & White Palette */
    --primary-color: #064e3b; 
    --secondary-color: #14532d; 
    --accent-color: #f0fdf4; 
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #ffffff;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    
    /* Premium Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    
    /* Spacing */
    --container-width: 1100px;
    --section-padding: 120px 0;
    
    /* Transitions */
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    /* Subtle Dot Pattern */
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 40px 40px;
    line-height: 1.7;
}

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    padding: 10px 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--accent-color);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.navbar.scrolled .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
}

.logo-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.navbar.scrolled .logo-wrapper {
    flex-direction: row;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-weight: 300;
    color: var(--secondary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-cta-btn {
    background: var(--accent-color);
    color: var(--primary-color) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    white-space: nowrap;
    transition: var(--transition);
}

/* Menu Toggle Styles */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: var(--primary-color);
}
    color: var(--primary-color) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-button.outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(240, 253, 244, 0.9), rgba(255, 255, 255, 0.9)), url('assets/reception.jpeg');
    background-size: cover;
    background-position: center;
    padding-top: 220px;
}

.hero-content {
    max-width: 1000px; /* Wider content for centered look */
    text-align: center;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
.hero-logo-box {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    height: 180px; 
    width: auto;
    max-width: 500px; /* Large rectangular logo space */
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    background: var(--white); /* White background as requested */
    padding: 10px; /* Extra space to see the logo text clearly */
    object-fit: contain; /* Never crop the brand logo */
}

.hero-brand-name {
    margin-top: 20px;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center; /* Explicitly centered */
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 0 auto 32px;
    max-width: 700px;
    text-align: center;
    line-height: 1.6;
}

/* About Section */
.about {
    background: var(--white);
    padding: 80px 0;
}

.grid-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.about-img-wrapper {
    position: relative;
    max-width: 300px; /* Smaller as requested */
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    border-radius: 24px; /* Squared profile image as well to match */
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 1/1; 
    border: 3px solid var(--accent-color);
}

.about-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--primary-color);
    text-align: center;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center; 
    max-width: 850px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 24px;
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 24px 32px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--accent-color);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 10px 32px 32px;
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-question span {
    font-size: 1.5rem;
    line-height: 1;
    transition: var(--transition);
}

/* Services Section */
.services {
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

/* Add a subtle divider/line effect */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(6, 78, 59, 0.1), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 32px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
    background: var(--accent-color);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg);
}

.service-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Q&A Section */
.qa-section {
    background: var(--white);
    position: relative;
}

.qa-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--accent-color);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(6, 78, 59, 0.05);
}

/* Contact Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 0 50px;
    position: relative;
}

.footer h3, .footer h2, .footer p {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-info h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

/* Social Links */
.social-links {
    margin-top: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
}

.social-icon:hover {
    background: rgba(255,255,255,0.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Responsive */
@media (max-width: 968px) {
    .grid-about {
        gap: 40px;
    }
    .hero {
        padding-top: 160px;
        min-height: 100vh;
        height: auto;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-logo {
        height: 120px;
        max-width: 300px;
    }
    .hero-brand-name {
        font-size: 1.5rem;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    .logo-img {
        height: 50px;
    }
        gap: 15px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
    .qa-container {
        padding: 40px 24px;
    }
}
