/* =========================
   General Styling
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222222;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Georgia, "Times New Roman", serif;
}

a {
    text-decoration: none;
}

:root {
    --primary-color: #46e0a8;
    --primary-dark: #2db887;
    --gold-color: #ae9a64;
    --dark-color: #202020;
    --light-color: #f7f7f3;
    --white-color: #ffffff;
}


/* =========================
   Navbar
========================= */

.site-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e7e7e7;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.site-header .navbar {
    min-height: 95px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-brand {
    color: #222222;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link {
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 12px 16px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-dark);
}

.dropdown-menu {
    min-width: 230px;
    padding: 10px 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.dropdown-item {
    color: #333333;
    font-size: 14px;
    padding: 11px 20px;
}

.dropdown-item:hover {
    color: #ffffff;
    background-color: var(--primary-dark);
}

.social-icons {
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: #ffffff;
    background-color: #222222;
    border-radius: 50%;
    transition: 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.navbar-toggler {
    color: #222222;
    border: 1px solid #222222;
    border-radius: 0;
    padding: 8px 12px;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* =========================
   Tagline
========================= */

.tagline-section {
    padding: 11px 15px;
    color: #ffffff;
    background-color: var(--gold-color);
}

.tagline-section p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.4px;
}


/* =========================
   Hero Carousel
========================= */

.hero-slider {
    width: 100%;
}

.hero-slider .carousel-item {
    height: 760px;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.48)
        );
}

.carousel-caption {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    padding: 0 70px;
    transform: translateY(-50%);
}

.hero-small-title {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.carousel-caption h1,
.carousel-caption h2 {
    max-width: 950px;
    margin: 0 auto 22px;
    color: #ffffff;
    font-size: 76px;
    font-weight: 700;
    line-height: 1.08;
}

.carousel-caption p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.7;
}

.hero-btn {
    padding: 14px 30px;
    color: #18251f;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
}

.carousel-control-prev:hover .slider-arrow,
.carousel-control-next:hover .slider-arrow {
    color: #17231e;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-indicators {
    margin-bottom: 28px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin-right: 6px;
    margin-left: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    border: none;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}


/* =========================
   Shared Section Styling
========================= */

.section-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.main-section-title {
    color: var(--dark-color);
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
}

.section-number {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
}


/* =========================
   About Section
========================= */

.about-section {
    padding: 110px 0;
    background-color: var(--light-color);
}

.about-intro {
    max-width: 820px;
    margin: 22px auto 0;
    color: #555555;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.8;
}

.value-card {
    padding: 42px 30px;
    text-align: center;
   
    border-bottom: 4px solid transparent;
    
    transition: 0.3s ease;
}

.value-card:hover {
    border-bottom-color: var(--primary-color);
    transform: translateY(-8px);
}

.value-number {
    margin-bottom: 16px;
    color: #aaaaaa;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    margin-bottom: 22px;
    color: #17231e;
    background-color: var(--primary-color);
    border-radius: 50%;
    font-size: 28px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #222222;
    font-size: 25px;
    font-weight: 700;
}

.value-card p {
    margin-bottom: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.mission-content {
    padding: 35px;
}

.mission-content h2 {
    margin-bottom: 22px;
    color: #222222;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.mission-content p {
    color: #555555;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.9;
}

.custom-btn {
    margin-top: 14px;
    padding: 14px 26px;
    color: #ffffff  ;
    background-color: #222222;
    border: 2px solid #222222;
    border-radius: 0;
    font-weight: 700;
}

.custom-btn:hover {
    color: #ffffff;
    background-color: #222222;
    border-color: #222222;
}


/* =========================
   Concept Section
========================= */

.concept-section {
    background-color: var(--primary-color);
}

.concept-image {
    min-height: 850px;
}

.concept-image img {
    width: 100%;
    height: 100%;
    min-height: 850px;
    object-fit: cover;
}

.concept-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 850px;
    padding: 80px;
}

.concept-block h2 {
    margin-bottom: 22px;
    color: #222222;
    font-size: 48px;
    font-weight: 700;
}

.concept-block p {
    color: #555555;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.9;
}

.concept-divider {
    width: 100%;
    height: 1px;
    margin: 45px 0;
    background-color: #dddddd;
}


/* =========================
   Partners
========================= */

.partners-section {
    padding: 110px 0;
    background-color: #202020;
}

.partners-section .main-section-title {
    color: var(--primary-color);
}

.partners-description {
    max-width: 730px;
    margin: 20px auto 0;
    color: #cccccc;
    font-size: 17px;
    line-height: 1.8;
}

.partner-card {
    height: 100%;
    padding: 45px 25px;
    color: #ffffff;
    text-align: center;
    border: 1px solid #444444;
    transition: 0.3s ease;
}

.partner-card:hover {
    color: #17231e;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-7px);
}

.partner-card i {
    margin-bottom: 22px;
    color: var(--primary-color);
    font-size: 42px;
}

.partner-card:hover i {
    color: #17231e;
}

.partner-card h3 {
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 700;
}


/* =========================
   Booking CTA
========================= */

/* Testimonials Section */

.testimonials-section {
    background-color: #ffffff;
}

.testimonial-slide {
    display: flex;
    align-items: center;
    min-height: 921px;
    padding: 80px 70px 130px;
    background-image:
        url("https://static.wixstatic.com/media/667e03_8441b51d79634e70baf102beb2de1d69~mv2.jpg/v1/fill/w_1959,h_1382,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/667e03_8441b51d79634e70baf102beb2de1d69~mv2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.testimonials-heading {
    margin-bottom: 80px;
    color: #46e0a8;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.25em;
    text-align: center;
    text-decoration: underline;
    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, 0.5),
        -1px 1px 0 rgba(0, 0, 0, 0.5),
        1px 1px 0 rgba(0, 0, 0, 0.5),
        1px -1px 0 rgba(0, 0, 0, 0.5);
}

.testimonial-text {
    margin-bottom: 20px;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    width: 8%;
}

.testimonial-arrow {
    color: #000000;
    font-size: 34px;
}

.testimonial-indicators {
    bottom: 55px;
}

.testimonial-indicators button {
    width: 9px !important;
    height: 9px !important;
    margin-right: 6px !important;
    margin-left: 6px !important;
    background-color: #000000 !important;
    border-radius: 50%;
}

.testimonial-button-area {
    padding-top: 25px;
    padding-bottom: 40px;
    background-color: #ffffff;
}

.more-reviews-btn {
    display: inline-block;
    padding: 12px 28px;
    color: #ffffff;
    background-color: #ae9a64;
    border: 1px solid #ae9a64;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.more-reviews-btn:hover {
    color: #ae9a64;
    background-color: transparent;
}



/* Contact and Location Section */

.contact-location-section {
    background-color: #ffffff;
}

.contact-heading {
    margin-bottom: 15px;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.contact-subheading {
    color: #000000;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
}

.contact-input {
    min-height: 48px;
    padding: 12px 15px;
    color: #000000;
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 0;
    font-size: 15px;
}

.contact-input::placeholder {
    color: #000000;
    opacity: 1;
}

.contact-input:focus {
    color: #000000;
    background-color: transparent;
    border-color: #46e0a8;
    box-shadow: none;
}

.contact-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-submit-btn {
    min-width: 130px;
    padding: 12px 25px;
    color: #ffffff;
    background-color: #ae9a64;
    border: 1px solid #ae9a64;
    border-radius: 0;
    font-size: 15px;
}

.contact-submit-btn:hover {
    color: #ae9a64;
    background-color: transparent;
    border-color: #ae9a64;
}

.submit-message {
    color: #d98e6f;
    font-size: 15px;
}

.contact-logo {
    width: 188px;
    height: 188px;
    object-fit: cover;
}

.contact-details {
    color: #000000;
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
}

.contact-link {
    color: #000000;
    text-decoration: none;
}

.contact-link:hover {
    color: #46e0a8;
}

.contact-map {
    min-height: 350px;
}

.contact-map iframe {
    border: 0;
}

.go-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    color: #000000;
    background-color: transparent;
    border: 1px solid #000000;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.go-top-btn:hover {
    color: #ffffff;
    background-color: #000000;
}
.site-footer {
    background-color: #000000;
}

.footer-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.3;
    text-align: center;
}

.footer-link {
    color: #ffffff;
    text-decoration: underline;
}

.footer-link:hover {
    color: #46e0a8;
}



.event-submit-btn {
    min-width: 150px;
    padding: 12px 30px;
    color: #ffffff;
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 0;
    font-size: 15px;
    font-weight: 700;
}

.event-submit-btn:hover {
    color: #000000;
    background-color: transparent;
    border-color: #000000;
}

.event-submit-message {
    color: #05c8a1;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
}
/* =========================
   Responsive Styling
========================= */

.privacy-policy-section {
    background-color: #f8f6f1;
}

.privacy-policy-section h1,
.privacy-policy-section h2 {
    color: #242424;
}

.privacy-policy-section p,
.privacy-policy-section li {
    color: #5f5f5f;
    font-size: 16px;
    line-height: 1.8;
}

.privacy-policy-section ul {
    padding-left: 22px;
}

.privacy-policy-section li {
    margin-bottom: 8px;
}

.privacy-policy-section a {
    color: #b57920;
    text-decoration: none;
}

.privacy-policy-section a:hover {
    text-decoration: underline;
}

.refund-policy-section {
    background-color: #f8f6f1;
}

.refund-policy-section h1 {
    color: #242424;
}

.refund-policy-section p {
    color: #5f5f5f;
    font-size: 16px;
    line-height: 1.8;
}

.terms-section{
    background:#f8f6f1;
}

.terms-section h1,
.terms-section h2{
    color:#242424;
}

.terms-section p{
    color:#5f5f5f;
    font-size:16px;
    line-height:1.8;
}

.footer-section{
    background:#111111;
    color:#ffffff;
}

.footer-logo{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
    color:#d7a14a;
}

.footer-text{
    color:#cfcfcf;
    line-height:1.8;
}

.footer-title{
    color:#ffffff;
    font-weight:600;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    text-decoration:none;
    color:#cfcfcf;
    transition:.3s;
}

.footer-links a:hover{
    color:#d7a14a;
    padding-left:5px;
}

.footer-contact p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:15px;
}

.footer-contact i{
    color:#d7a14a;
    width:22px;
}

.footer-contact a{
    color:#cfcfcf;
    text-decoration:none;
}

.footer-contact a:hover{
    color:#d7a14a;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#d7a14a;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#ffffff;
}

.footer-divider{
    border-color:#2d2d2d;
    margin:40px 0 25px;
}

.copyright{
    color:#bdbdbd;
    font-size:15px;
}

@media (max-width: 1199.98px) {

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 62px;
    }

    .concept-content {
        padding: 55px;
    }
}

@media (max-width: 991.98px) {

    .site-header .navbar {
        min-height: auto;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 20px 0;
        border-top: 1px solid #eeeeee;
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #eeeeee;
    }

    .social-icons {
        justify-content: flex-start !important;
        margin-top: 20px;
    }

    .hero-slider .carousel-item {
        height: 650px;
    }

    .carousel-caption {
        padding: 0 80px;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 50px;
    }

    .main-section-title {
        font-size: 46px;
    }

    .mission-content {
        padding: 20px 0;
    }

    .concept-image,
    .concept-image img {
        min-height: 550px;
    }

    .concept-content {
        min-height: auto;
        padding: 70px 40px;
    }
       .testimonial-slide {
        min-height: 750px;
        padding-right: 80px;
        padding-left: 80px;
    }

    .testimonials-heading {
        margin-bottom: 55px;
        font-size: 38px;
    }
}

@media (max-width: 767.98px) {

    .hero-slider .carousel-item {
        height: 580px;
    }

    .carousel-caption {
        padding: 0 50px;
    }

    .hero-small-title {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 39px;
    }

    .carousel-caption p {
        font-size: 16px;
        line-height: 1.6;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .about-section,
    .partners-section {
        padding: 75px 0;
    }

    .main-section-title {
        font-size: 39px;
    }

    .about-intro {
        font-size: 17px;
    }

    .mission-content h2,
    .concept-block h2 {
        font-size: 38px;
    }

    .concept-content {
        padding: 60px 24px;
    }

    .booking-box h2 {
        font-size: 40px;
    }
     .testimonial-slide {
        min-height: 720px;
        padding: 65px 55px 120px;
    }

    .testimonials-heading {
        font-size: 32px;
        letter-spacing: 0.15em;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-arrow {
        font-size: 27px;
    }
}

@media (max-width: 575.98px) {

    .navbar-brand {
        font-size: 18px;
    }

    .hero-slider .carousel-item {
        height: 540px;
    }

    .carousel-caption {
        padding: 0 42px;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 32px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .hero-btn {
        padding: 12px 18px;
        font-size: 12px;
    }

    .carousel-indicators {
        margin-bottom: 15px;
    }

    .main-section-title {
        font-size: 34px;
    }

    .value-card {
        padding: 35px 22px;
    }

    .about-image img {
        min-height: 360px;
    }

    .concept-image,
    .concept-image img {
        min-height: 400px;
    }

    .mission-content h2,
    .concept-block h2 {
        font-size: 33px;
    }

    
    .testimonial-slide {
        min-height: 760px;
        padding: 55px 35px 120px;
    }

    .testimonials-heading {
        margin-bottom: 40px;
        font-size: 26px;
        letter-spacing: 0.1em;
    }

    .testimonial-text {
        font-size: 15px;
    }

    #testimonialsCarousel .carousel-control-prev,
    #testimonialsCarousel .carousel-control-next {
        width: 10%;
    }
}