:root {
    --primary-color: #B7934D;
    --secondary-color: #48654E;
    --accent-color: #B7934D;
    --dark-bg: #0f172a;
    --text-color: #111;
    --error-color: #dc3545;
}

.form-field-wrap {
    position: relative;
}

html {
    font-size: clamp(15px, 0.434vw + 11.667px, 20px);
    scrollbar-gutter: stable;
}

/* Prevent body shift when modal opens */
body.modal-open,
body.modal-open .glass-nav.fixed-top {
    padding-right: 0 !important;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    font-size: clamp(15px, 0.434vw + 11.667px, 20px);
}

.container-xxl {
    padding-inline: 12rem;
    max-width: 1920px !important;
}

.siteSection {
    padding-block: 6rem;
}

.siteHeading {
    font-size: 2rem;
    font-weight: 600;
}

.btn-primary {
    background: #fff;
    color: var(--text-color);
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.9rem 2rem;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
    color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.btn-whatsapp i {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Glassmorphism */
/* Only kept for navbar as it's the only element using it now */
.glass-nav {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding-block: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, padding-block 0.3s ease, border-bottom 0.3s ease;
}

.glass-nav.nav-hidden {
    transform: translateY(-150%);
}

.glass-nav.nav-scrolled {
    padding-block: 0.25rem;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(1.25rem);
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.glass-nav.nav-scrolled.navbar-open {
    background-color: var(--text-color);
    background-repeat: no-repeat;
    background-size: 100% 5rem;
    background-position: top center;
    transition: background-color 0s;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    max-height: 50rem;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

/* Parallax Background */
.parallax-bg {
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: right center;
    z-index: -1;
    will-change: transform;
}

/* Cookie Consent Bar */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 2147483647;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-bar.hidden {
    display: none !important;
}

.cookie-consent-bar p {
    font-size: 0.9rem;
    color: #e0e0e0;
}

.cookie-consent-bar .container-xxl {
    padding-right: 120px;
}

@media (max-width: 767px) {
    .cookie-consent-bar .container-xxl {
        padding-right: 12px;
        padding-bottom: 12px;
        /* Space for mobile widget if needed */
    }
}

.object-position-center {
    object-position: center center;
}

.hero-section .container-xxl {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.3rem;
    line-height: 1;
}

.hero-section h1 span {
    font-size: 0.8em;
}

.hero-section p {
    max-width: 35rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-brand {
    position: relative;
}

.navbar-brand::after {
    position: absolute;
    content: '';
    background: #fff;
    left: 0;
    right: 0;
    top: -2rem;
    bottom: -1.5rem;
    border-bottom-right-radius: 1.5rem;
}

.navbar-brand img {
    width: 7rem;
    height: auto;
    position: relative;
    z-index: 2;
    padding-inline: 10%;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}



.siteFooter {
    background: var(--primary-color);
    padding-block: 7rem;
}

.footerLogo img {
    width: 7rem;
    height: auto;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #e5cc80;
    /* Brighter gold for hover */
    transform: translateY(-0.1875rem);
}

.cta-banner {
    overflow: hidden;
    padding: 3rem 7rem;
    border-radius: 1rem;
}

.cta-banner p {
    max-width: 35rem;
}

.experienceTab .nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
    /* Chrome, Safari, Opera */
    -ms-overflow-style: none;
}

.experienceTab .nav-pills::-webkit-scrollbar {
    display: none;
}

.experienceTab .nav-pills .nav-item {
    flex: 0 0 auto;
}

.experienceTab .nav-pills.active {
    cursor: grabbing;
}

.experienceTab .nav-link {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-color);
    border: 1px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.experienceTab .nav-link.active {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    box-shadow: none;
}

.experienceTabContent {
    padding-right: 4rem;
}

.experienceTabContent p {
    width: 48%;
}

.experienceTabContent .siteHeading {
    font-size: 1.65rem;
    color: var(--secondary-color);
}

.experienceTabContent ol li {
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.experienceTabContent ol li::after {
    content: '';
    position: absolute;
    left: 0;
    background: var(--secondary-color);
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    top: 0.45rem;
}

.experienceTabImage {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/0.65;
    box-shadow: rgba(50, 50, 93, 0.45) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.6) 0px 18px 36px -18px inset;
}

.experienceTabImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.experienceTabImage:hover img {
    transform: rotate(-2deg) scale(1.1);
}

.experienceTabImage::after {
    position: absolute;
    inset: 0;
    z-index: 3;
    content: '';
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1));
    mix-blend-mode: multiply;
}

.experienceTabImage .experienceTabImageCaption {
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 0;
    z-index: 5;
    color: white;
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
}

.experienceTabNav {
    position: absolute;
    right: 0.8rem;
    top: -1rem;
    z-index: 2;
    transform: translateY(-100%);
    display: flex;
    gap: 0.5rem;
}

.experienceTabNavButton {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0.35rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.experienceTabNavButton:hover {
    background: var(--text-color);
    color: white;
}

.iconCard img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    object-position: center;
}

.iconCard h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #505050;
    margin-block: 1rem 0;
}

.form-container {
    border-radius: 1rem;
    min-height: 35rem;
    padding: 5rem 7rem;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.formWrapper {
    background: rgba(0, 0, 0, 0);
    /* Initial transparent */
    transition: background 0.3s ease;
}

.form-stage {
    animation: fadeIn 0.5s ease-in-out;
}

.inner-stage {
    backdrop-filter: blur(10px);
    background: #0002;
    padding: 3rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-wrapper {
    width: 15rem;
}

/* Package Cards */
.package-cards-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.package-card {
    flex: 1;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.package-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.package-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(183, 147, 77, 0.2);
}

.package-card-img {
    height: 120px;
    width: 100%;
    object-fit: cover;
}

.package-card-body {
    padding: 1rem;
    text-align: center;
}

.package-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.package-card-text {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.package-card .selected-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary-color);
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 2;
}

.package-card.active .selected-icon {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 575px) {
    .package-cards-container {
        flex-direction: column;
    }

    .package-card-img {
        height: 100px;
    }
}

/* Navbar Toggler Customization */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Default Hamburger Icon (White) */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
    transition: transform 0.3s ease;
}

/* Close Icon (X) when open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e");
    transform: rotate(90deg);
}

.modal-dialog {
    width: calc(100vw - 24rem);
    max-width: 1920px;
}

.modal-body,
.modal-header {
    padding-inline: 4rem;
}

.modal-header {
    padding-block: 1.5rem;
}

.modal-dialog .siteHeading {
    font-size: 1.6rem;
}

.form-label {
    font-size: 0.75rem;
}

.row>[class*='col-'] {
    position: relative;
}

.form-control,
.form-select {
    box-shadow: none !important;
    outline: none !important;
}

.form-control:hover,
.form-control:active,
.form-control:focus {
    border-color: var(--primary-color);
}

.form-control:disabled,
.form-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(255, 255, 255, 0.1);
}

input.form-control,
select.form-select {
    height: 3rem;
}

textarea {
    resize: none;
}

.parsley-error {
    border-color: var(--error-color) !important;
}

.parsley-errors-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.75rem;
    color: var(--error-color);
    font-weight: 400;
    position: absolute;
    bottom: -1.1rem;
    left: 0;
    width: 100%;
}

.parsley-errors-list li {
    margin: 0;
    padding: 0;
}

.form-stage .parsley-errors-list {
    color: #fff;
}

@media (max-width: 1599px) {
    .container-xxl {
        padding-inline: 8rem;
    }

    .modal-dialog {
        width: calc(100vw - 16rem);
        max-width: 100%;
    }

    .cta-banner {
        padding: 3rem 5rem;
    }

    .form-container {
        padding: 5rem 5rem;
    }

    .experienceTabContent p {
        width: 55%;
    }
}

@media (max-width: 1199px) {
    .container-xxl {
        padding-inline: 4rem;
    }

    .modal-dialog {
        width: calc(100vw - 8rem);
        max-width: 100%;
    }

    .experienceTabContent p {
        width: 75%;
    }
}

@media (max-width: 767px) {
    .siteSection {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .experienceTabContent p {
        width: 100%;
    }

    .container-xxl {
        padding-inline: 2rem;
    }

    .modal-dialog {
        width: calc(100vw - 1rem);
        max-width: 100%;
    }

    .cta-banner,
    .form-container {
        padding: 4rem 2rem;
    }

    .experienceTabNav {
        position: static;
        transform: none;
        margin-top: 0rem;
        justify-content: end;
        padding-right: 2rem;
    }

    .experienceTab .container-xxl {
        padding-inline: 0;
    }

    .experienceTab .container-xxl>.siteHeading,
    .experienceTab .nav-pills,
    .experienceTab .experienceTabContent {
        padding-inline: 2rem;
    }

    .hero-section {
        min-height: 45rem;
        height: auto;
        max-height: none;
        padding: 30rem 0 4rem;
    }

    .hero-section::after {
        position: absolute;
        inset: 0;
        content: '';
        z-index: 1;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, #190C01);
    }

    .hero-section h1 {
        font-size: 2.25rem;
        line-height: 1.3;
    }

    .hero-section h1 span {
        font-size: 0.7em;
    }

    .hero-section p {
        max-width: 35rem;
    }

    .parallax-bg {
        object-position: center center;
    }

    .cta-banner-content .text-white {
        color: var(--text-color) !important
    }

    .modal-body,
    .modal-header {
        padding-inline: 2rem;
    }

    .inner-stage {
        padding-inline: 1rem;
        margin-inline: -1rem;
    }
}

@media (max-width: 575px) {

    html,
    body {
        font-size: clamp(14px, 0.392vw + 12.75px, 15px);
    }

    .siteSection {
        padding-block: 3rem;
    }

    .iconCard img {
        width: 4.5rem;
        height: 4.5rem;
    }

    .cta-banner {
        padding: 4rem 2rem 18rem;
    }

    .form-container {
        padding: 4rem 2rem;
        /* Allow dropdown to extend outside */
    }

    .cta-banner .btn-primary {
        text-align: start;
        line-height: 1.3;
    }

    .social-link {
        font-size: 2rem;
    }
}

/* Mobile Menu Styling */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--text-color);
        backdrop-filter: blur(10px);
        border-radius: 1rem;
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        border: none;
    }

    .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        padding-block: 0.5rem;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--primary-color);
    }

    .form-label {
        font-size: 0.85rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 8px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Zoho Widget z-index */
.siq_bR {
    z-index: 1000 !important;
}

/* International Tel Input Customization */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: auto;
    left: 0;
    padding: 1px;
}

.iti__selected-flag {
    padding: 0 0 0 0.75rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}

.iti input.form-control,
.iti input.form-control[type=tel] {
    padding-left: 4.5rem;
    height: 3rem;
}

.iti__country-list {
    max-height: 200px;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #dee2e6;
}

.iti__country {
    color: #000 !important;
}

.iti__country:hover {
    background-color: #fff;
    color: #000;
}

.iti__country.iti__highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.iti__divider {
    border-bottom: 1px solid #dee2e6;
}

/* Ensure the dropdown arrow is visible */
.iti__arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #555;
}

.iti__arrow--up {
    border-top: none;
    border-bottom: 4px solid #555;
}

/* Mobile-specific fixes for intl-tel-input */
@media (max-width: 767px) {

    /* Fixed Top Modal style for mobile (stable positioning) */
    .iti__dropdown-content {
        position: fixed !important;
        top: 15% !important;
        /* Aligned with top area of screen */
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        width: 90vw !important;
        height: auto !important;
        max-height: 60vh !important;

        display: block !important;

        border-radius: 0.5rem !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25) !important;
        margin: 0 !important;
        background-color: #fff !important;
        z-index: 999999 !important;
        border: none !important;
        padding-top: 0 !important;

        transform: translateX(-50%) !important;
        animation: fadeIn 0.2s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translate(-50%, -10px);
        }

        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }

    /* Ensure hidden state is respected */
    .iti__dropdown-content.iti__hide {
        display: none !important;
    }

    /* Standard Search Input styling */
    .iti__search-input {
        width: 100% !important;
        margin: 0 !important;
        padding: 0.75rem !important;
        border: none !important;
        border-bottom: 1px solid #dee2e6 !important;
        border-radius: 0.375rem 0.375rem 0 0 !important;
        font-size: 1rem !important;
        background-color: #f8f9fa !important;
        position: static !important;
        z-index: 2 !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .iti__search-input:focus {
        background-color: #fff !important;
    }

    /* Standard Scrollable Country List */
    .iti__country-list {
        position: static !important;
        width: 100% !important;
        max-height: 150px !important;
        /* Allow space for search input within max-height of dropdown */
        overflow-y: auto !important;
        background-color: transparent !important;
        border: none !important;
        margin: 0 !important;
        padding-bottom: 0 !important;
        box-shadow: none !important;
    }

    /* Ensure flag container is clickable on mobile */
    .iti__flag-container {
        z-index: 10;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Make sure the selected flag is touchable */
    .iti__selected-flag {
        outline: none;
        cursor: pointer;
        -webkit-user-select: none;
        user-select: none;
        touch-action: manipulation;
    }

    /* Improve touch targets */
    .iti__country {
        padding: 0.75rem 1rem;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Prevent body scroll when dropdown is open */
    .iti--container {
        z-index: 99999 !important;
    }

    /* Ensure input wrapper has proper positioning context */
    .iti {
        position: relative !important;
        overflow: visible !important;
    }
}

/* Ensure dropdown works in modals - Desktop */
@media (min-width: 768px) {
    .modal .iti {
        position: relative;
        z-index: 1;
    }

    .modal .iti__country-list {
        z-index: 99999 !important;
        position: absolute !important;
        left: 0 !important;
        right: auto !important;
        width: 100% !important;
        background: #fff;
    }

    .modal .iti__flag-container {
        z-index: 10;
    }
}

/* Fix for dropdown not appearing */
.iti--show-flags .iti__flag-container {
    pointer-events: auto !important;
}

.iti__selected-flag {
    pointer-events: auto !important;
}

/* Error message styling */
.error-message {
    font-size: 0.875rem;
    color: var(--error-color);
    display: none;
    margin-top: 0.25rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}