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

body {
    background-color: #e4dbd2;
    color: #333;
}


@font-face {
    font-family: "PassionsConflict";
    src: url("../Font/PassionsConflict-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "Playfair";
    src: url("../Font/Playfair-VariableFont_opsz,wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}


.nav-links li a {
    color: #C3A17C;
    text-decoration: none;
   
}
.nav-links li a:hover {
    color: #f7f7f7;
}


.nav-links li a:hover::after {
    width: 100%;
}


/* Mobile view hover fix */
@media (max-width: 768px) {
    .nav-links li a:hover {
        color: #f3eee9 !important;
    }

    .nav-links li a:hover::after {
        width: 0% !important;
    }
}


/* Navbar */
/* .navbar {
    background-color: #0d1c17;
    color: white;
    padding: 0px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }
   */

.navbar {
    background-color: #0d1c17;
    color: white;
    padding: 0px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
}



/* Logo */
.logo img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}


/* Hamburger */
.hamburger {
    display: none;
    font-size: 28px;
    color: #C3A17C;
    cursor: pointer;
}

/* Nav container */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
}

.nav-links li {
    color: #C3A17C;
    cursor: pointer;
    position: relative;
    padding: 14px 12px;
    font-size: 17.5px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #c19a6b;
    transition: width 0.3s ease;
}

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

.nav-links li:hover {
    color: #f7f7f7;
}

/* Active link underline */
.nav-links .active::after {
    width: 100%;
}

/* Dropdown arrow */
.arrow {
    font-size: 15px;
    margin-left: 5px;
    user-select: none;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #eacba5;
    list-style: none;
    padding: 10px 0;
    min-width: 140px;
    border-radius: 4px;
    display: none;
    z-index: 999;
}

.dropdown-menu li {
    padding: 10px 18px;
    font-size: 15px;
    color: #000;
    white-space: nowrap;
}

.dropdown-menu li:hover {
    background-color: #d6b47b;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown.active .dropdown-menu {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0d1c17;
        margin-top: 20px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        padding: 15px;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        border-radius: 0;
        background-color: #d9bb90;
    }
}

.nav-links .dropdown::after {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-links li:hover {
        color: #f3eee9 !important;
        /* Keep original color */
    }

    .nav-links li:hover::after {
        width: 0% !important;
        /* Remove underline */
    }
}







/* Contact Section */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    padding: 70px 40px;
    background-color: #fff;
    gap: 70px;
    justify-content: center;
    align-items: center;
}

.contact-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 30px;
}

.contact-left img {
    width: 100%;
    max-width: 400px;
    max-height: 450px;
    object-fit: cover;
    border-radius: 2px;
}

.contact-right {
    max-width: 450px;
    width: 100%;
}

.contact-right h2 {
    font-family: 'PassionsConflict', cursive !important;
    font-size: 90px;
    margin-bottom: 20px;
    color:#00261f;
    text-align: center;
    font-weight: 400;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-right input,
.contact-right textarea {
    padding: 12px 15px;
    background-color: #eacba5;
    border: none;
    font-size: 19px;
    border-radius: 1px;
}

.contact-right textarea {
    height: 100px;
    resize: none;
}

.contact-right button {
    font-size: 15px;
    background-color: #b9956e;
    color: rgb(18, 18, 18);
    padding: 13px 35px;
    border: none;
    font-weight: bold;
    border-radius: 18px;
    cursor: pointer;
    align-self: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.contact-right button:hover {
    background-color: #b08b65;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}






/*faq*/
.faq-section {
    background-color: #e4dbd2;
    padding: 1px 25px;
    font-family: 'Arial', sans-serif;
    margin-bottom: 80px;
}



.faq-header {
    background-color: #0d1c17;
    padding: 20px;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}


.faq-heading {
    color: #C3A17C;
    font-size: 60px;
    font-family: 'PassionsConflict', cursive !important;
    margin: 0;
    font-weight: 400;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}


.faq-left,
.faq-right {
    flex: 1;
    min-width: 300px;
    padding: 0px 15px;
}

.faq-left h3 {
    font-size: 50px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 200;

}

.faq-left p {
    color: #000;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: Playfair;
}


.qa-logo {
    font-size: 40px;
    font-weight: bold;
    margin-top: 20px;
}

.faq-item {
    background-color: transparent;
    margin-bottom: 10px;
}


.faq-item h4 {
    background-color: #eacba5;
    color: #000;
    padding: 30px 10px;
    font-size: 18px;
    border-radius: 0px 2px 0 0;
    margin: 0;
    font-weight: 300;
    position: relative;
}


.faq-divider {
    height: 2px;
    background-color: #000;
    width: 100%;
    margin-bottom: 0;
}

.faq-item p {
    background-color: #E1C09B;
    color: #121212;
    padding: 33px 20px;
    border-radius: 0 0 8px 8px;
    font-size: 15px;
    margin: 0;

}

.qa-logo img {
    height: 200px;
    width: auto;
    object-fit: contain;
    margin-top: 5px;
}


.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    font-size: 18px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}


.faq-item.active .faq-answer {
    display: block;
    max-height: 300px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}


@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        gap: 20px;
    }

    .faq-heading-bar h2 {
        font-size: 26px;
    }

    .faq-left h3 {
        font-size: 28px;
        line-height: 1.4;
    }

    .faq-left p {
        font-size: 16px;
        line-height: 1.6;
    }

    .faq-item h4 {
        font-size: 16px;
        padding: 20px 10px;
    }

    .faq-item p {
        font-size: 14px;
        padding: 25px 15px;
    }

    .qa-logo img {
        height: 140px;
    }
}






@media (max-width: 480px){
    .faq-heading {
        font-size: 40px;
    }

}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #5C4A36;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.modal-content button:hover {
    background-color: #4a3a29;
}



@media (max-width: 480px) {
  .contact-section {
    flex-direction: column;
    padding: 20px 20px;
    gap: 40px;
  }

  .contact-left {
    justify-content: center;
    padding-left: 0;
  }

  .contact-left img {
    max-width: 90%;
    max-height: 300px;
  }

  .contact-right {
    max-width: 80%;
    padding: 0 10px;
  }

  .contact-right h2 {
    font-size: 60px;
  }

  .contact-right input,
  .contact-right textarea {
    font-size: 16px;
    padding: 10px 12px;
  }

  .contact-right button {
    font-size: 14px;
    padding: 11px 25px;
  }
  
.contact-left img {
    display: none;
}


}

/* 

.recaptcha-container {
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-message {
    display: none;
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
}

.recaptcha-container {
    margin: 10px 0;
} */