/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #D4AF37;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #D4AF37;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: 
                url('../images/rectangle263321-btgr-1500w.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: relative;
}


.hero-content {
    /* max-width: 600px; */
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: #D4AF37;
    color: white;
}

.btn-primary:hover {
    background: #B8941F;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}
.book-site-visit-btn:hover {
  background: #B8941F;}

.btn-tertiary {
    background: transparent;
    color: white;
    border: 2px solid #ffffff;;
}

.btn-tertiary:hover {
    background: #D4AF37;
    color: white;
}

.hero-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.hero-logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.faq-category {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-category-title {
    background: #E8D5B7;
    color: #8B4513;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    margin: 0;
    position: relative;
}

.faq-category-title::before {
    content: '📋';
    margin-right: 10px;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Open Sans', sans-serif;

    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-icon {
    font-size: 1.5rem;
    color: #D4AF37;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Still Have Questions Section */
.still-questions {
    /* background: #E8D5B7; */
    background: linear-gradient(0deg, rgba(216, 174, 94, 0.23) 0%, rgba(255, 255, 255, 0.23) 100%);

    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.still-questions-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-style: italic;
}

.still-questions-text {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;

    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.still-questions-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info span {
    color: #8B4513;
    font-weight: 500;
    font-size: 0.9rem;
    justify-content: center;
}

.phone, .email {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Contact Section
.contact-section {
    padding: 5rem 0;
    background: white;
} */

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-map {
    flex: 1;
}

.map-img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
}

.contact-form {
    flex: 1;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #D4AF37;
    margin-bottom: 2rem;
}



.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #D4AF37;
}

.btn-submit {
    background: #D4AF37;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #B8941F;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo span {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.footer-tagline {
    font-style: italic;
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #999;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-center h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    /* color: #D4AF37; */
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h4 {
    /* color: #D4AF37; */
    margin-bottom: 1rem;
}

.footer-right p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo {
        position: static;
        margin-top: 2rem;
    }

    .faq-category-title {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 1rem 1.5rem;
    }

    .still-questions {
        padding: 2rem 1rem;
    }

    .still-questions-title {
        font-size: 1.8rem;
    }

    .still-questions-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .still-questions-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .faq-category-title {
        font-size: 1.1rem;
    }

    .faq-question {
        font-size: 0.85rem;
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
}