A/* =========================
   Hero-section-page code
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #f9fbf9;
    color: #0a2e2a;
}

/* =========================
HERO-SECTION-BACKGROUND-IMAGE
========================= */
.Hero-section-background-Image {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}


/* =========================
   NAVBAR-SECTION CODE 
========================= */
.glass-nav {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 1400px;
    padding: 0.7rem 1.2rem;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: 0.3s ease;
}

.glass-nav.scrolled {
    padding: 0.65rem 1.5rem;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-text img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* =========================
   NAV LINKS
========================= */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

#face-icon {
    position: relative;
    right: 1.2rem;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #145339;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0d9488, #1e88e5);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* =========================
   Facebook & Insataram btn
========================= */
.social-circle1 img,
.social-circle2 img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
}

/* =========================
   MOBILE MENU BUTTON
========================= */
.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3000;
    color: #145339;
}
/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85%);
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.35s ease;
        z-index: 999;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: #111827;
        font-size: 1.05rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text-side {
        width: 100%;
    }

    .booking-widget {
        max-width: 700px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
    }

    .hero-title {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .hero-subtitle {
        letter-spacing: 0.15em;
    }

    .booking-widget {
        padding: 24px;
    }

    .glass-nav {
        width: 95%;
        padding: 0.65rem 1rem;
    }

    .logo-text img {
        height: 38px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .hero-section {
        padding-inline: 14px;
    }

    .booking-widget {
        padding: 20px;
        border-radius: 20px;
    }

    .glass-group {
        padding: 12px 14px;
    }

    .search-btn {
        padding: 14px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        right: 18px;
        bottom: 18px;
    }

    .nav-links {
        width: 88%;
    }
}

/* =========================
   MOBILE NAVBAR FIX
========================= */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 22px;
        transition: 0.4s ease;
        padding: 40px 20px;
        z-index: 2000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        font-size: 1rem;
        text-align: center;
        color: #111827;
    }

    .social-circle1 img,
    .social-circle2 img {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }
}

/* =========================
   SMALL MOBILE FIX
========================= */
@media (max-width: 480px) {
    .glass-nav {
        padding: 0.7rem 0.9rem;
    }

    .logo-text img {
        height: 34px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .nav-links {
        width: 85%;
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.95rem;
    }
}


/* =========================
   HERO SECTION
========================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 60px;
}

.hero-container {
    width: 100%;
    max-width: 1250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text-side {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.95;
    font-style: italic;
    color: white;
}

.hero-subtitle {
    margin-top: 12px;
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.25em;
    color: #fff;
    font-weight: 300;
}

/* =========================
   HERO ANIMATIONS
========================= */
.slide-left,
.slide-right {
    opacity: 0;
    transition: all 1.2s ease;
}

.slide-left {
    transform: translateX(-120px);
}

.slide-right {
    transform: translateX(120px);
}

.slide-left.show,
.slide-right.show {
    opacity: 1;
    transform: translateX(0);
}

.hero-title {
    animation: glowText 4s ease-in-out infinite alternate;
}

@keyframes glowText {
    0% {
        text-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.15);
    }
}

@media (max-width: 768px) {
    .slide-left {
        transform: translateY(60px);
    }
    .slide-right {
        transform: translateY(60px);
    }
}
/*--==================================
     HOME-section Booking from code
    ================================== */
.booking-widget {
    flex: 1;
    width: 100%;
    max-width: 550px;
    margin: auto;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =========================
   INPUT GROUP
========================= */
.glass-group {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================
   INPUT + SELECT
========================= */
.glass-group input,
.glass-group select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-size: 14px;
}

/* PLACEHOLDER */
.glass-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* SELECT OPTION FIX */
#service {
    color: white;
}

#service option {
    color: black;
}

/* =========================
   DYNAMIC FORM SPACING FIX
========================= */
#dynamicForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =========================
   BUTTON
========================= */
.search-btn {
    width: 100%;
    height: 52px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: #06105e;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.search-btn:hover {
    background: #16a34a;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 768px) {
    .booking-widget {
        padding: 20px;
        max-width: 100%;
    }

    .glass-group {
        padding: 10px 12px;
    }
}
                                    /* =====================================
                                            PACKAGE-SECTION-START-CODE
                                    ========================================== */

/* =========================
   PACKAGES SECTION
========================= */
.packages-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f8fafc;
    position: relative;
    z-index: 5;
    padding-top: 1rem;
}

.filter-sticky-wrapper {
    position: sticky;
    top: 90px;
    z-index: 45;
    background: transparent;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .filter-sticky-wrapper {
        top: 80px;
    }
}

@media (max-width: 640px) {
    .filter-sticky-wrapper {
        top: 72px;
    }
}

.glass-nav-packages {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(19, 165, 153, 0.2);
    border-radius: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0.9rem;
    white-space: nowrap;
    max-width: 90vw;
    margin: 0 auto;
}

.glass-nav-packages::-webkit-scrollbar {
    height: 3px;
}

.glass-nav-packages::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.glass-nav-packages::-webkit-scrollbar-thumb {
    background: #0d9488;
    border-radius: 10px;
}

.filter-btn {
    background-color: white;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
}

.active-filter {
    background: linear-gradient(135deg, #0d9488, #1e88e5);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
}

@media (max-width: 640px) {
    .filter-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.75rem;
    }
    .glass-nav-packages {
        gap: 0.4rem;
        padding: 0.45rem 0.7rem;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }
}

.package-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover {
    transform: translateY(-10px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-card {
    animation: fadeInUp 0.5s ease forwards;
}

#Package-para {
    color: #151718;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.gold-star {
    color: #f8bf04;
}

.active-filter .gold-star {
    color: #f8bf04;
}

/* =========================
   PACKAGES RESPONSIVE FIX
========================= */
#packages-container {
    width: 100%;
    align-items: stretch;
}

.package-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.package-card:hover img {
    transform: scale(1.05);
}

.package-card .p-6 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-card button {
    margin-top: auto;
}

.package-card h3,
.package-card p,
.package-card li,
.package-card span {
    word-wrap: break-word;
}

@media (min-width: 1600px) {
    #packages-container {
        grid-template-columns: repeat(3, minmax(350px, 420px));
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    #packages-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    .package-card .p-6 {
        padding: 1.4rem;
    }
    .glass-nav-packages {
        max-width: 95vw;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding-top: 2rem;
    }
    #packages-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .package-card {
        border-radius: 24px;
    }
    .package-card .p-6 {
        padding: 1.2rem;
    }
    .package-card h3 {
        font-size: 1.15rem;
    }
    .package-card img {
        height: 240px;
    }
    .glass-nav-packages {
        width: 100%;
        justify-content: flex-start;
        padding-inline: 0.6rem;
        overflow-x: auto;
        scroll-behavior: smooth;
    }
    .filter-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .packages-section {
        padding-inline: 12px;
    }
    .package-card img {
        height: 210px;
    }
    .package-card .p-6 {
        padding: 1rem;
    }
    .filter-btn {
        font-size: 0.72rem;
        padding: 0.45rem 0.8rem;
    }
    #Package-para {
        font-size: 0.92rem;
        line-height: 1.5;
        padding-inline: 10px;
    }
}

@media (max-width: 360px) {
    .package-card img {
        height: 190px;
    }
    .package-card h3 {
        font-size: 1rem;
    }
    .filter-btn {
        font-size: 0.65rem;
        padding: 0.4rem 0.7rem;
    }
}
                                 /*====================================
                                        ABOUT US SECTION - CODE 
                                  ======================================*/

/* =========================
   ABOUT US SECTION
========================= */
.bg-glass-container {
    position: relative;
    background-image: url('About-Image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}

#IATA-PARA {
    color: rgba(52, 48, 48, 0.87);
    font-size: 15px;
}

#iata-img {
    height: 4rem;
    width: 4rem;
}

.shape {
    position: absolute;
    filter: blur(60px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    animation: float 15s infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, 60px) scale(1.1);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.shine-wrapper {
    position: relative;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.7);
}

.shine-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.7s;
}

.shine-wrapper:hover::after {
    left: 120%;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.faq-item.open .faq-content {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-dark-glass {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
                                   
                                          /*==================================
                                                     CONTACT SECTION
                                            =================================== */

.Contact-section{
    width:100%;
    min-height:100vh;
    padding:60px 20px;

    background-image:url('Contact-bg.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

.privacy-contact-container{
    width:100%;
    max-width:1200px;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    display:flex;
    flex-wrap:wrap;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

/* LEFT IMAGE */

.privacy-left-image{
    flex:1;
    min-height:750px;
    background:url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=1200') center/cover;
}

/* RIGHT CONTENT */

.privacy-right-content{
    flex:1;
    padding:60px;
    color:#111;
}

/* BRAND */

.privacy-brand{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:35px;
}

/* LOGO */

.privacy-logo{
    width:50px;
    height:50px;
    background:#4F46E5;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:bold;
}

/* BRAND TEXT */

.privacy-brand span{
    font-size:28px;
    font-weight:700;
    color:#111;
}

/* HEADING */

.privacy-right-content h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
    color:#111;
}

/* DESCRIPTION */

.privacy-description{
    color:#666;
    line-height:1.7;
    margin-bottom:40px;
}

.privacy-description a{
    color:#4F46E5;
    text-decoration:none;
}

/* FORM */

.privacy-form{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* GRID */

.privacy-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

/* INPUT BOX */

.privacy-input-box{
    display:flex;
    flex-direction:column;
}

.privacy-input-box label{
    margin-bottom:10px;
    font-size:14px;
    font-weight:600;
    color:#111;
}

/* INPUTS */

.privacy-input-box input,
.privacy-input-box textarea{
    width:100%;
    padding:16px;
    border-radius:14px;
    border:1px solid #ddd;
    outline:none;
    font-size:15px;
    transition:0.3s;
    color:#111;
}

.privacy-input-box input:focus,
.privacy-input-box textarea:focus{
    border-color:#4F46E5;
}

.privacy-input-box textarea{
    min-height:150px;
    resize:none;
}

/* CHARACTER COUNT */

.privacy-count{
    text-align:right;
    margin-top:8px;
    font-size:13px;
    color:#888;
}

/* BUTTON */

.privacy-submit-btn{
    background:#4F46E5;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:14px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.privacy-submit-btn:hover{
    transform:translateY(-3px);
    opacity:0.9;
}

/* SUCCESS TOAST */

#successToast{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    background:#22c55e;
    color:#fff;
    padding:15px 25px;
    border-radius:12px;
    font-weight:600;
    display:none;
    z-index:9999;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* MOBILE */

@media (max-width:992px){

    .privacy-contact-container{
        flex-direction:column;
    }

    .privacy-left-image{
        min-height:300px;
    }

    .privacy-right-content{
        padding:35px 25px;
    }

    .privacy-right-content h1{
        font-size:38px;
    }

    .privacy-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:600px){

    .privacy-contact-section{
        padding:40px 15px;
    }

    .privacy-right-content h1{
        font-size:30px;
    }

    .privacy-brand span{
        font-size:22px;
    }

    .privacy-submit-btn{
        padding:16px;
    }
}


                     /*===========================================
                            TERMS AND CONDITION PAGE CODE 
                     =============================================*/
.terms-section {
    position: relative;
    padding-top: 90px;
    isolation: isolate;
}

.bg-term-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.terms-section > *:not(.bg-term-video) {
    position: relative;
    z-index: 1;
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e9e0d6;
    z-index: 9999;
}

.progress-bar {
    height: 4px;
    width: 0%;
    background: #c9772e;
    transition: width 0.2s ease;
}

.hero-paper {
    background: #1e2a2a;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.hero-paper h1 {
    font-size: 2.2rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.terms-container {
    max-width: 1300px;
    margin: auto;
    padding: 2rem 1rem;
}

.two-col {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.toc-side {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: 20px;
    padding: 1rem;
    position: sticky;
    top: 90px;
    height: fit-content;
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin: 8px 0;
}

.toc-list a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 20px;
    color: #333;
    transition: 0.3s;
}

.toc-list a:hover,
.toc-list a.active {
    background: #f5e6d8;
    color: #c9772e;
}

.content-main {
    flex: 3;
    min-width: 280px;
}

.term-clause {
    background: white;
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #eee;
}

.clause-header {
    padding: 1rem;
    background: #fafafa;
    font-weight: bold;
}

.clause-body {
    padding: 1rem;
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-paper h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .two-col {
        flex-direction: column;
    }
    .toc-side {
        position: relative;
        top: auto;
    }
    .hero-paper h1 {
        font-size: 1.5rem;
        text-align: center;
    }
    .content-main {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-paper {
        padding: 1.5rem 1rem;
    }
    .toc-list a {
        font-size: 12px;
    }
    .clause-body {
        font-size: 13px;
    }
}

/* Safe spacing system */
.two-col {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.toc-side {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    box-sizing: border-box;
}

.content-main {
    padding-left: 0.5rem;
}

.term-clause {
    margin-bottom: 1.5rem;
}

.hero-paper {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .two-col {
        flex-direction: column;
        gap: 1.5rem;
    }
    .toc-side {
        width: 100%;
        margin-bottom: 1.5rem;
        position: relative;
        top: auto;
    }
    .content-main {
        padding-left: 0;
    }
    .hero-paper {
        margin-bottom: 1.2rem;
    }
    .term-clause {
        margin-bottom: 1rem;
    }
}

@media (max-width: 1366px) and (min-width: 769px) {
    .two-col {
        gap: 1.8rem;
    }
    .toc-side {
        min-width: 240px;
    }
    .content-main {
        padding-left: 0.3rem;
    }
}


                                          /* ================================
                                               PRIVACY POLICY SECTION
                                             ================================== */
.privacy-hero {
    position: relative;
    background: linear-gradient(135deg, #111827 0%, #0a4937 100%);
    padding: 90px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 16px 16px;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(4px);
    margin-bottom: 20px;
}

.badge i {
    color: #34d399;
}

.privacy-hero h1 {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
}

.privacy-hero p {
    color: #d1fae5;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .privacy-grid {
        grid-template-columns: 280px 1fr;
    }
}

.privacy-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .privacy-sidebar {
        display: block;
    }
}

.sidebar-card {
    position: sticky;
    top: 40px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    padding-left: 8px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: block;
    padding: 10px 12px;
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    color: #0d5c46;
    background-color: #f9fafb;
}

.sidebar-link.active {
    color: #0d5c46;
    border-left-color: #0d5c46;
    font-weight: 600;
    background-color: #f4f7f6;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.privacy-main-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.privacy-main-content section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #f3f4f6;
}

.privacy-main-content section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f4f7f6;
    color: #0d5c46;
    border-radius: 10px;
    font-size: 1.1rem;
}

.section-title h2 {
    font-size: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.privacy-main-content p {
    margin-bottom: 16px;
    color: #4b5563;
}

.sub-heading {
    font-weight: 600;
    color: #111827;
    margin-top: 24px;
}

.brand-link {
    color: #0d5c46;
    text-decoration: none;
    font-weight: 500;
}

.brand-link:hover {
    text-decoration: underline;
}

.custom-list {
    list-style: none;
    margin-bottom: 16px;
}

.custom-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.custom-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #0d5c46;
    border-radius: 50%;
}

.secondary-list li::before {
    background-color: #9ca3af;
}

.rights-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.rights-grid p strong {
    color: #111827;
}

.complaint-box {
    background-color: #f4f7f6;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2eae7;
    margin-top: 24px;
}

.complaint-box h4 {
    color: #111827;
    font-weight: 600;
    margin-bottom: 8px;
}

.complaint-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

#terms-page,
#privacy {
    display: none;
}

#privacy {
    position: relative;
}

.privacy-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.privacy-video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}


                                  /* ==========================================
                                                  FOOTER SECTION CODE END
                                   =============================================== */
/* ==========================================
              FOOTER SECTION
========================================== */

.site-footer{
    width:100%;
    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:center;
    padding:40px 15px;
    margin-top:auto;
    background:transparent;
}

/* VIDEO BACKGROUND */
.footer-bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/* MAIN CONTAINER */
.footer-container{
    width:100%;
    max-width:1200px;
    position:relative;
    z-index:1;

    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(4px);

    border-radius:24px;
    padding:50px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   CTA SECTION
========================= */
.footer-cta-section{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    margin-bottom:40px;
}

/* LEFT SIDE */
.cta-left{
    flex:1.3;
}

.cta-left h1{
    font-size:2.4rem;
    line-height:1.3;
    font-weight:700;
    margin-bottom:20px;
    color:#000;
}

.cta-left p{
    font-size:1rem;
    line-height:1.7;
    color:#555;
    margin-bottom:20px;
}

/* BUTTON */
.book-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:13px 24px;

    background:#d4ff28;
    color:#111;

    border-radius:40px;
    text-decoration:none;
    font-weight:700;

    transition:0.3s ease;
}

.book-btn:hover{
    transform:translateY(-4px) scale(1.02);
    background:#c4ec20;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* =========================
   RIGHT SIDE CARDS
========================= */
.cta-right{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.service-card{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px;

    border-radius:16px;
    border:1px solid #e7e7e7;

    background:#fff;

    cursor:pointer;
    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-5px);
    background:#f7f7f7;
}

.service-card h3{
    font-size:1.1rem;
    margin-bottom:6px;
}

.service-card p{
    color:#666;
    font-size:0.95rem;
}

.arrow-icon{
    font-size:1.2rem;
}

#text-3{
    color:#000;
}

/* DIVIDER */
.divider{
    border:none;
    height:1px;
    background:#e8e8e8;
    margin:30px 0;
}

/* =========================
   SOCIAL SECTION
========================= */
.logo-grid-section{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    margin:40px 0;
}

.logo-text{
    font-size:1rem;
    color:#444;
}

.logos-container{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

/* SOCIAL BUTTONS */
.social-circle{
    display:flex;
    align-items:center;
    gap:8px;

    padding:11px 16px;

    border-radius:40px;
    border:1px solid #ddd;

    text-decoration:none;
    color:#444;

    transition:0.3s ease;
}

.social-circle:hover{
    transform:translateY(-4px) scale(1.02);

    background:#1e1e1e;
    border-color:#d4ff28;

    color:#d4ff28;

    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* =========================
   DARK FOOTER CARD
========================= */
.dark-footer-card{
    background:#141414;
    color:#fff;

    border-radius:22px;
    padding:40px;

    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;

    gap:30px;
}

/* LEFT SIDE */
.df-left{
    flex:1.2;
    order:1;
}

#footer-logo{
    max-width:170px;
    height:auto;
    margin-bottom:20px;
}

.df-left h2{
    font-size:1.4rem;
    line-height:1.5;
    color:#bdbdbd;
    margin-bottom:20px;
}

/* =========================
   ADDRESS BOX
========================= */
.newsletter-box{
    margin-top:20px;
}

.newsletter-box p{
    margin-bottom:10px;
    color:#fff;
}

.input-wrapper{
    display:flex;
    gap:10px;

    border:1px solid #333;

    padding:12px;

    border-radius:18px;

    background:#1c1c1c;
}

#location-input{
    width:100%;
    border:none;
    outline:none;

    background:transparent;
    color:#fff;

    resize:none;

    font-size:0.95rem;
    line-height:1.6;
}

.submit-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    min-width:50px;
    height:50px;

    border-radius:12px;

    background:#d4ff28;
    color:#000;

    text-decoration:none;

    transition:0.3s;
}

.submit-btn:hover{
    transform:scale(1.05);
}

/* =========================
   FOOTER LINKS
========================= */
.df-links{
    display:flex;
    gap:50px;
    order:2;
}

.links-column{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.links-column a{
    text-decoration:none;
    color:#aaa;

    transition:0.3s;
}

.links-column a:hover{
    color:#fff;
}

/* =========================
   COPYRIGHT
========================= */
.footer-bottom-row{
    width:100%;
    order:3;

    margin-top:25px;
    padding-top:20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,0.1);
}

.copyright{
    font-size:0.95rem;
    color:#aaa;
    margin-bottom:8px;
}

.crafted-text{
    font-size:0.95rem;
    color:#fff;
}

/* ==========================================
                TABLET
========================================== */
@media (max-width:992px){

    .footer-cta-section{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .logo-grid-section{
        flex-direction:column;
        text-align:center;
    }

    .dark-footer-card{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    /* ORDER FIX */
    .df-left{
        order:1;
        width:100%;
    }

    .df-links{
        order:2;
        width:100%;

        margin-top:20px;

        flex-direction:column;
        align-items:center;
        gap:25px;
    }

    .footer-bottom-row{
        order:3;
        width:100%;

        margin-top:25px;
    }

    .links-column{
        align-items:center;
    }

    .df-left h2{
        font-size:1.1rem;
    }
}

/* ==========================================
                MOBILE
========================================== */
@media (max-width:600px){

    .footer-container{
        padding:20px 15px;
    }

    .cta-left h1{
        font-size:1.6rem;
    }

    .cta-left p{
        font-size:0.95rem;
    }

    .book-btn{
        width:100%;
        justify-content:center;
    }

    .logos-container{
        flex-direction:column;
        align-items:center;
    }

    .social-circle{
        width:100%;
        justify-content:center;
    }

    .input-wrapper{
        flex-direction:column;
        align-items:center;
    }

    #location-input{
        text-align:center;
    }

    .submit-btn{
        display:none;
    }

    .df-left h2{
        font-size:1rem;
    }

    .copyright,
    .crafted-text{
        font-size:0.85rem;
        text-align:center;
    }
}