:root {
    --primary-gold: #00A8A8;
    /* Luxury Gold accent */
    --dark-bg: #0f172a;
    --text-white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}



/* Base Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar-new {
    background: var(--dark-bg);
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.top-info a:hover {
    color: var(--primary-gold);
}

.top-socials a {
    color: white;
    margin-left: 15px;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
}

.top-socials a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Sticky Navbar */
.navbar {
    padding: 25px 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

/* Scroll hone pe color change hoga */
.navbar.sticky {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
}

.navbar.sticky .brand-logo {
    color: var(--dark-bg);
}

.logo-icon {
    background: var(--primary-gold);
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 20px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
}

/* Menu Links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #101010;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.navbar.sticky .nav-link {
    color: var(--dark-bg);
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Luxury Button in Nav */
.btn-nav {
    background: var(--primary-gold);
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 50px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: #fff;
        width: 80%;
        height: 100vh;
        padding-top: 100px;
        transition: 0.5s;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        cursor: pointer;
        display: block;
        z-index: 10001;
        position: relative;
        padding: 10px;
    }

    .mobile-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px 0;
        background: #101010;
        transition: all 0.4s ease-in-out;
        border-radius: 3px;
    }

    /* Jab menu open hoga tab ye classes toggle hongi */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Menu Slide Effect */
    @media (max-width: 992px) {
        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: white;
            display: flex;
            flex-direction: column;
            padding: 80px 30px;
            transition: 0.5s ease;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        }

        .nav-menu.active {
            right: 0;
        }
    }

    .navbar.sticky .bar {
        background: var(--dark-bg);
    }
}



/* ==========================================================================
   Premium Static Hero Section
   ========================================================================== */
.hero-premium {
    padding: 105px 0 100px;
    background-color: #f8fafc;
    /* Light clean grey */
    position: relative;
    overflow: hidden;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Content Styling */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 160, 89, 0.1);
    color: #00A8A8;
    /* Gold */
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-display-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 1.1;
    color: #0f172a;
    /* Deep Blue/Black */
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-display-title em {
    color: #00A8A8;
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-size: 19px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 600px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.cta-btn-gold {
    background: #00A8A8;
    color: #fff;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
    transition: all 0.3s ease;
}

.cta-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.5);
}

.cta-btn-text {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    transition: 0.3s;
}

.play-icon {
    width: 45px;
    height: 45px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A8A8;
    background: white;
}

.cta-btn-text:hover {
    color: #00A8A8;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.stat-item strong {
    display: block;
    font-size: 24px;
    color: #0f172a;
}

.stat-item span {
    color: #64748b;
    font-size: 14px;
}

.stat-sep {
    width: 1px;
    height: 30px;
    background: #e2e8f0;
}

/* Right Visual Frame */
.main-image-wrapper {
    position: relative;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
}

/* Floating Card */
.floating-destination-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.dest-icon {
    color: #00A8A8;
    font-size: 24px;
}

/* Background Shape */
.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: #f1f5f9;
    z-index: 1;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-main-content {
        order: 2;
    }

    .hero-visual-frame {
        order: 1;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-display-title {
        font-size: 48px;
    }

    .floating-destination-card {
        left: 3%;
        transform: translateX(-50%);
        width: 80%;
    }
}



/* ==========================================================================
   Modern Trust Section Design
   ========================================================================== */
.trust-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-top: -50px;
    /* Overlap with hero slightly for floating effect */
    position: relative;
    z-index: 20;
}

.trust-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    /* Soft Premium Shadow */
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.trust-card-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transition: all 0.3s ease;
}

.trust-card-modern:hover {
    transform: translateY(-5px);
}

/* Luxury Icon Box */
.trust-icon-outer {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    /* Gold tint */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.trust-icon-inner {
    width: 45px;
    height: 45px;
    background: #00A8A8;
    /* Solid Gold */
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 15px rgba(197, 160, 89, 0.3);
}

.trust-card-modern:hover .trust-icon-outer {
    background: #00A8A8;
}

.trust-card-modern:hover .trust-icon-inner {
    background: #ffffff;
    color: #00A8A8;
}

/* Text Styling */
.trust-text h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    white-space: nowrap;
}

.trust-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ==========================================================================
   Mobile Responsive
   ========================================================================== */
@media (max-width: 1200px) {
    .trust-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        margin-top: 0;
        padding: 40px 0;
    }

    .trust-grid-new {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        text-align: center;
    }

    .trust-card-modern {
        flex-direction: column;
        justify-content: center;
    }

    .trust-text h3 {
        white-space: normal;
    }
}


/* ==========================================================================
   Services Section - Premium Design
   ========================================================================== */
.services-modern {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

/* Header Styling */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.header-badge {
    color: #00A8A8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
}

.services-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    color: #0f172a;
    margin-bottom: 20px;
}

.services-main-title em {
    font-style: italic;
    color: #00A8A8;
    font-weight: 400;
}

.services-sub-lead {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* Grid Layout */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Service Card Design */
.service-card-premium {
    position: relative;
    background: #ffffff;
    padding: 3px 40px;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    height: 100%;
}

.service-card-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #00A8A8;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.service-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: transparent;
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

/* Icon Styling */
.service-icon-box {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #00A8A8;
    margin-bottom: 30px;
    transition: 0.5s;
}

.icon-bg-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: 0.5s;
}

.service-card-premium:hover .icon-bg-circle {
    width: 70px;
    height: 70px;
    background: #00A8A8;
}

.service-card-premium:hover .service-icon-box {
    color: #ffffff;
    transform: rotateY(360deg);
}

/* Text Box Styling */
.service-text-box h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.service-text-box p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Card Footer */
.read-more-link {
    font-size: 14px;
    font-weight: 700;
    color: #00A8A8;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.4s;
}

.service-card-premium:hover .read-more-link {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .services-main-title {
        font-size: 38px;
    }

    .services-grid-premium {
        grid-template-columns: 1fr;
    }

    .service-card-premium {
        padding: 40px 30px;
    }
}


/* ==========================================================================
   About Us - Premium Modern Layout
   ========================================================================== */
.about-modern {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-flex-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

/* Left Visual Side */
.about-visual-side {
    position: relative;
    padding: 40px;
}

.experience-badge-large {
    background: #0f172a;
    /* Dark Navy/Charcoal */
    color: #ffffff;
    width: 200px;
    height: 200px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
    position: relative;
    z-index: 5;
    border: 8px solid #ffffff;
}

.exp-number {
    font-size: 48px;
    font-weight: 800;
    color: #00A8A8;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.stats-interactive-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -60px;
    margin-left: 100px;
    position: relative;
    z-index: 10;
}

.stat-mini-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: 0.3s ease;
}

.stat-mini-card:hover {
    transform: translateX(10px);
    border-color: #00A8A8;
}

.stat-mini-card i {
    font-size: 24px;
    color: #00A8A8;
}

.stat-v {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.stat-l {
    font-size: 14px;
    color: #64748b;
}

/* Right Content Side */
.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    color: #0f172a;
    line-height: 1.1;
    margin: 20px 0 30px;
}

.about-title em {
    color: #00A8A8;
    font-style: italic;
    font-weight: 400;
}

.lead-text {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.main-desc {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Features List */
.about-features-list {
    display: grid;
    gap: 15px;
    margin-bottom: 50px;
}

.feat-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feat-icon {
    width: 35px;
    height: 35px;
    background: rgba(197, 160, 89, 0.1);
    color: #00A8A8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.feat-t {
    font-weight: 600;
    color: #334155;
}

.btn-about-gold {
    background: #0f172a;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-about-gold:hover {
    background: #00A8A8;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-flex-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stats-interactive-grid {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .about-title {
        font-size: 42px;
        text-align: center;
    }

    .about-content-side {
        text-align: center;
    }

    .feat-row {
        justify-content: center;
    }
}


/* ==========================================================================
   Travel Experience Section - Modern Overlap Design
   ========================================================================== */
.experience-modern-section {
    padding: 100px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.experience-flex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual Side Styling */
.experience-visual-stack {
    position: relative;
    padding-right: 40px;
}

.main-img-holder {
    position: relative;
    z-index: 5;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.img-reveal {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.main-img-holder:hover .img-reveal {
    transform: scale(1.05);
}

/* Floating Luxury Badge */
.experience-floating-badge {
    position: absolute;
    bottom: 50px;
    right: -30px;
    background: #ffffff;
    padding: 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.badge-icon-box {
    width: 50px;
    height: 50px;
    background: #00A8A8;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.b-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.b-label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Content Side Styling */
.experience-display-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    color: #0f172a;
    line-height: 1.1;
    margin: 20px 0 30px;
}

.experience-display-title em {
    color: #00A8A8;
    font-style: italic;
    font-weight: 400;
}

.story-lead {
    font-size: 20px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-body {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Feature Grid */
.experience-feat-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

.feat-item-modern {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.feat-item-modern:hover {
    border-color: #00A8A8;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.08);
}

.feat-icon-gold {
    font-size: 24px;
    color: #00A8A8;
    margin-top: 5px;
}

.feat-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.feat-text p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* CTA Link */
.btn-experience-link {
    font-size: 16px;
    font-weight: 700;
    color: #00A8A8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-experience-link:hover {
    gap: 15px;
    color: #0f172a;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .experience-flex-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .experience-visual-stack {
        padding-right: 0;
        order: 1;
    }

    .experience-info-side {
        order: 2;
        text-align: center;
    }

    .experience-floating-badge {
        right: 20px;
        bottom: 20px;
    }

    .feat-item-modern {
        text-align: left;
    }

    .experience-display-title {
        font-size: 42px;
    }
}


/* ==========================================================================
   Destinations Section - Premium Gallery Design
   ========================================================================== */
.destinations-premium {
    padding: 100px 0;
    background-color: #ffffff;
}

.dest-header-box {
    text-align: center;
    margin-bottom: 70px;
}

.dest-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    color: #0f172a;
    margin: 15px 0;
}

.dest-main-title em {
    color: #00A8A8;
    font-style: italic;
    font-weight: 400;
}

.dest-sub-lead {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.dest-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card Design */
.dest-card-new {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dest-img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.dest-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dark Gradient Overlay */
.dest-content-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px;
    opacity: 1;
    transition: all 0.4s ease;
}

/* Tags */
.dest-tags {
    display: flex;
    gap: 10px;
    transform: translateY(-20px);
    opacity: 0;
    transition: 0.5s ease;
}

.tag-item {
    background: #00A8A8;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Bottom Text */
.dest-text-bottom {
    transform: translateY(40px);
    transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 8px;
}

.dest-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.dest-explore-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00A8A8;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0;
    transition: 0.4s;
}

/* Hover Effects */
.dest-card-new:hover .dest-img-main {
    transform: scale(1.15);
}

.dest-card-new:hover .dest-tags {
    transform: translateY(0);
    opacity: 1;
}

.dest-card-new:hover .dest-text-bottom {
    transform: translateY(0);
}

.dest-card-new:hover .dest-explore-btn {
    opacity: 1;
    gap: 15px;
}

/* .dest-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
} */
/* Mobile Responsive */
/* Tablet */
@media (max-width: 992px) {
    .dest-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .dest-card-new {
        height: 320px;
        border-radius: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .dest-grid-modern {
        grid-template-columns: 1fr;
    }

    .dest-card-new {
        height: 300px;
    }
}


/* ==========================================================================
   Premium Blog Slider Design
   ========================================================================== */
.blog-premium-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.blog-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.blog-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    color: #0f172a;
    margin-top: 10px;
}

.blog-main-title em {
    color: #00A8A8;
    font-style: italic;
    font-weight: 400;
}

/* Controls */
.blog-controls {
    display: flex;
    align-items: center;
    gap: 40px;
}

.view-all-link {
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.view-all-link:hover {
    color: #00A8A8;
}

.blog-nav {
    display: flex;
    gap: 15px;
}

.blog-prev,
.blog-next {
    width: 50px;
    height: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    background: white;
}

.blog-prev:hover,
.blog-next:hover {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
}

/* Blog Card Design */
.blog-card-new {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.blog-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.blog-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.blog-card-new:hover .blog-img {
    transform: scale(1.1);
}

.blog-category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00A8A8;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-body {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.blog-meta i {
    color: #00A8A8;
    margin-right: 5px;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 15px;
    transition: 0.3s;
}

.blog-card-new:hover .blog-card-title {
    color: #00A8A8;
}

.blog-card-excerpt {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Premium Button Link */
.blog-btn-link {
    text-decoration: none;
    color: #0f172a;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.blog-btn-link span {
    width: 30px;
    height: 2px;
    background: #00A8A8;
    transition: 0.3s ease;
}

.blog-btn-link:hover span {
    width: 50px;
}

/* Mobile Pagination */
.blog-pagination {
    margin-top: 40px;
    text-align: center;
}

.swiper-pagination-bullet-active {
    background: #00A8A8 !important;
}

/* Container Fix */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-static-premium {
    padding: 100px 0;
    background-color: #ffffff;
}

.blog-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.blog-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: #0f172a;
    margin: 0;
}

.blog-main-title em {
    color: #00A8A8;
    font-style: italic;
}

/* Grid System - 3 Equal Columns */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card-new {
    transition: 0.4s ease;
}

.blog-card-media {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.blog-card-new:hover .blog-img-main {
    transform: scale(1.1);
}

/* Floating Date Box */
.blog-floating-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 55px;
}

.f-day {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.f-month {
    font-size: 11px;
    color: #00A8A8;
    font-weight: 700;
    text-transform: uppercase;
}

/* Text Content */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #64748b;
}

.meta-tag {
    color: #00A8A8;
    font-weight: 700;
}

.meta-dot {
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* CARD BODY SPACING */
.blog-card-info {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px; /* spacing between elements */
}

/* META (Reisetipps • 5–7 Min) */
.blog-card-meta {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

/* TITLE */
.blog-card-h3 {
    font-size: 21px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin: 4px 0 6px;
}

/* DESCRIPTION */
.blog-card-p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 10px;
    max-width: 95%;
}

/* FOOTER BUTTON */
.blog-card-footer {
    margin-top: auto; /* pushes button down */
}

.blog-read-btn {
    font-size: 14px;
    font-weight: 600;
    color: #0ea5a4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.blog-read-btn::after {
    content: "";
    width: 18px;
    height: 2px;
    background: #0ea5a4;
    display: inline-block;
    transition: width 0.3s ease;
}

.blog-read-btn:hover {
    color: #0284c7;
}

.blog-read-btn:hover::after {
    width: 30px;
}

/* Responsive */
/* Tablet */
@media (max-width: 992px) {
    .blog-grid-modern {
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .blog-grid-modern {
        grid-template-columns: 1fr;
        /* one by one */
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Testimonials Section - Premium Design
   ========================================================================== */
.testimonials-modern {
    padding: 100px 0;
    background-color: #f8fafc;
    /* Subtle light background */
    position: relative;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.testimonials-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    color: #0f172a;
    margin-bottom: 20px;
}

.testimonials-main-title em {
    color: #00A8A8;
    font-style: italic;
    font-weight: 400;
}

.testimonials-sub-lead {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* Grid Layout */
.testimonials-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.testimonial-card-premium {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.testimonial-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: #00A8A8;
}

.testimonial-upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.quote-mark {
    font-size: 35px;
    color: #00A8A8;
}

.star-rating {
    color: #00A8A8;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
    font-style: italic;
    margin-bottom: 40px;
    flex-grow: 1;
}

/* Client Profile */
.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    font-size: 45px;
    color: #e2e8f0;
}

.client-name {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.client-city {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Decorative Accent */
.card-accent-line {
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #00A8A8;
    transform: scaleX(0);
    transition: 0.4s ease;
    border-radius: 10px 10px 0 0;
}

.testimonial-card-premium:hover .card-accent-line {
    transform: scaleX(1);
}

/* Responsive */
/* Tablet */
@media (max-width: 1024px) {
    .testimonials-grid-premium {

        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .testimonials-grid-premium {
        grid-template-columns: 1fr;
        /* one by one */
        gap: 20px;
        padding: 0 15px;
    }

    .testimonial-card-premium {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Contact Section - Premium Split Layout
   ========================================================================== */
.contact-premium-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.contact-header-box {
    text-align: center;
    margin-bottom: 70px;
}

.contact-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    color: #0f172a;
}

.contact-main-title em {
    color: #00A8A8;
    font-style: italic;
    font-weight: 400;
}

.contact-sub-lead {
    color: #64748b;
    font-size: 18px;
    margin-top: 15px;
}

/* Main Card Wrapper */
.contact-card-new {
    display: grid;
    grid-template-columns: 420px 1fr;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.1);
}

/* Sidebar Dark */
.contact-sidebar-dark {
    background: #0f172a;
    color: #ffffff;
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
}

.sidebar-top h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.sidebar-top p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.contact-methods {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.method-icon {
    width: 45px;
    height: 45px;
    background: rgba(197, 160, 89, 0.15);
    color: #00A8A8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.method-data span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.method-data strong,
.method-data a {
    display: block;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    margin-top: 4px;
}

.method-data a:hover {
    color: #00A8A8;
}

.opening-hours-premium {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    margin-top: auto;
}

.hours-header {
    color: #00A8A8;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.h-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

/* Form Side */
.contact-form-side {
    padding: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.input-wrap {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-wrap label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
    background: #fcfcfc;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    border-color: #00A8A8;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.btn-submit-gold {
    width: 100%;
    padding: 20px;
    background: #00A8A8;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit-gold:hover {
    background: #00A8A8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Mobile Adjustment */
@media (max-width: 992px) {
    .contact-card-new {
        grid-template-columns: 1fr;
    }

    .contact-form-side {
        padding: 40px 30px;
    }
}


/* ==========================================================================
   FAQ Section - Split Layout Design
   ========================================================================== */
.faq-premium-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.faq-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    color: #0f172a;
    margin: 15px 0 25px;
}

.faq-main-title em {
    color: #00A8A8;
    font-style: italic;
    font-weight: 400;
}

.faq-intro {
    color: #64748b;
    font-size: 17px;
    margin-bottom: 45px;
}

/* Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 15px;
    background: #f8fafc;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
    font-size: 17px;
    transition: 0.3s;
}

.faq-question i {
    font-size: 14px;
    color: #00A8A8;
    transition: 0.4s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #ffffff;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Active State */
.faq-item.active {
    border-color: #00A8A8;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.1);
}

.faq-item.active .faq-question {
    color: #00A8A8;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

/* Image Side */
.faq-img-wrapper {
    position: relative;
    padding-left: 20px;
}

.faq-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.faq-floating-box {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: #0f172a;
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.faq-floating-box i {
    font-size: 30px;
    color: #00A8A8;
}

.faq-floating-box span {
    font-size: 14px;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .faq-grid-layout {
        grid-template-columns: 1fr;
    }

    .faq-image-side {
        order: -1;
    }

    /* Image comes first on mobile */
    .faq-main-img {
        height: 400px;
    }
}


/* ==========================================================================
   Privacy Page - Clean Professional Design
   ========================================================================== */
.privacy-clean-section {
    padding: 80px 0;
    background-color: #f4f7f6;
    /* Very light grey background */
    font-family: 'DM Sans', sans-serif;
}

.privacy-card-modern {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    /* Limits width for better reading experience */
    margin: 0 auto;
}

.privacy-page-header {
    margin-bottom: 50px;
    text-align: left;
}

.privacy-page-header h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.privacy-page-header .subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #00A8A8;
    /* Aapka brand green color */
}

/* Body Content */
.privacy-item {
    margin-bottom: 45px;
}

.privacy-item h2 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid #00A8A8;
    padding-left: 15px;
}

.privacy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Address Box */
.address-box-premium {
    background: #fafafa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.address-box-premium address {
    font-style: normal;
    line-height: 1.8;
    color: #333;
}

.address-box-premium address span {
    font-weight: 600;
    color: #1a1a1a;
}

/* List Styling */
.legal-bullet-list {
    list-style: none;
    padding: 0;
}

.legal-bullet-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 15px;
}

.legal-bullet-list li strong {
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-card-modern {
        padding: 30px 20px;
    }

    .privacy-page-header h1 {
        font-size: 28px;
    }
}

/* ==========================================================================
   Premium Impressum Page Design
   ========================================================================== */
.legal-premium-section {
    padding: 100px 0;
    background-color: #f8fafc;
    /* Subtle light background */
}

.impressum-card {
    background: #ffffff;
    padding: 80px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.05);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #f1f5f9;
}

/* Page Header */
.legal-page-header {
    margin-bottom: 60px;
}

.legal-badge {
    color: #00A8A8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.legal-page-header h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 5px;
}

.legal-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
}

.header-accent {
    width: 60px;
    height: 4px;
    background: #00A8A8;
    /* Luxury Gold */
    border-radius: 2px;
}

/* Content Grid */
.legal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.legal-col h2,
.legal-full-width h2,
.disclaimer-item h2,
.legal-info-box h2 {
    font-size: 18px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-address,
.legal-col p,
.legal-full-width p,
.disclaimer-item p,
.legal-info-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    font-style: normal;
}

.contact-links-box p i {
    color: #00A8A8;
    margin-right: 10px;
    width: 20px;
}

.contact-links-box a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-links-box a:hover {
    color: #00A8A8;
}

/* Dividers */
.legal-divider-line {
    height: 1px;
    background: #f1f5f9;
    margin: 40px 0;
}

/* Info Box */
.legal-info-box {
    background: #f8fafc;
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid #00A8A8;
    margin: 40px 0;
}

/* Disclaimers Section */
.legal-disclaimers {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.disclaimer-item h2 {
    font-size: 16px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .impressum-card {
        padding: 40px 25px;
    }

    .legal-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-page-header h1 {
        font-size: 32px;
    }
}

/* ==========================================================================
   Cancellation Policy - Premium Document Style
   ========================================================================== */
.policy-premium-section {
    padding: 100px 0;
    background-color: #f4f7f6;
}

.policy-document-card {
    background: #ffffff;
    padding: 70px 60px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    max-width: 950px;
    margin: 0 auto;
}

.policy-header h1 {
    font-size: 42px;
    color: #0f172a;
    font-weight: 800;
    margin: 10px 0;
}

.policy-badge {
    color: #00A8A8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.policy-meta {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 30px;
}

.policy-line {
    width: 60px;
    height: 4px;
    background: #00A8A8;
    border-radius: 2px;
}

/* Content Blocks */
.policy-block {
    margin-top: 50px;
}

.policy-block h2 {
    font-size: 22px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.policy-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

/* Cancellation Table */
.cancellation-table-wrapper {
    margin: 30px 0;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
}

.table-header {
    background: #0f172a;
    color: #fff;
    padding: 15px 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 16px;
}

.table-row:last-child {
    border: none;
}

.table-row.highlight {
    background: #fdfaf3;
    color: #b45309;
}

.table-row strong {
    color: #0f172a;
}

/* Fee Box */
.policy-fee-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.fee-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.fee-item i {
    color: #00A8A8;
    font-size: 20px;
}

/* Highlight Box (Insurance) */
.policy-highlight-box {
    background: rgba(197, 160, 89, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    margin: 50px 0;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.highlight-icon {
    font-size: 35px;
    color: #00A8A8;
}

.highlight-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
}

/* Footer Contact */
.policy-contact-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed #e2e8f0;
}

.p-contact-grid {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.p-contact-grid a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-contact-grid a i {
    color: #00A8A8;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-document-card {
        padding: 40px 25px;
    }

    .policy-fee-box {
        grid-template-columns: 1fr;
    }

    .p-contact-grid {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   Ultra-Premium New Footer Design
   ========================================================================== */
.footer-premium-new {
    background-color: #1a1a1a;
    /* Clean Dark Charcoal */
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 40px;
    font-family: 'DM Sans', sans-serif;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

/* Brand Section */
.logo-text-link {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
}

.logo-text-link span {
    border-left: 4px solid #00A8A8;
    /* Brand Green Accent */
    padding-left: 15px;
}

.footer-mission {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 25px;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-social-elegant {
    display: flex;
    gap: 15px;
}

.footer-social-elegant a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.footer-social-elegant a:hover {
    background: #00A8A8;
    transform: translateY(-5px);
}

/* Headings */
.footer-h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.footer-h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 35px;
    height: 2px;
    background: #00A8A8;
}

/* Links */
.footer-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-ul li {
    margin-bottom: 12px;
}

.footer-ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-ul a:hover {
    color: #00A8A8;
    padding-left: 5px;
}

/* Contact Items */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.f-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.f-contact-item i {
    color: #00A8A8;
    margin-top: 5px;
    font-size: 16px;
}

.f-contact-item span,
.f-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
}

.f-contact-item a:hover {
    color: #00A8A8;
}

/* Bottom Legal Section */
.footer-legal-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
}

.legal-disclaimer-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-disclaimer-box p {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    text-align: justify;
}

.legal-disclaimer-box strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-domain {
    font-weight: 600;
    color: #00A8A8;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .footer-copyright-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-card-new {
        height: 220px;
        /* mobile ke liye chhota */
        border-radius: 20px;
    }
}