/* ============================================
   Clear Vacation Trips | CELESTIAL LUXURY · BESPOKE EXPEDITIONS
   Cosmic palette · Earth-meets-stars aesthetic
   Est. 2008 · Premium tourism architect
   ============================================ */

:root {
    --Clear-deep: #0B1320;        /* cosmic midnight */
    --Clear-void: #101a2b;         /* nebula depths */
    --Clear-silver: #CBD5E6;       /* celestial mist */
    --Clear-aurora: #48CAE4;       /* ethereal cyan */
    --Clear-bronze: #CD7F4F;       /* warm stellar dust / metallic accent */
    --Clear-gold: #D4AF37;         /* refined gold for prestige touches */
    --Clear-ivory: #F9F6EF;        /* lunar surface light */
    --Clear-stone: #D6CFC0;
    --text-dark: #1F2A3A;
    --text-soft: #5C6F87;
    --white-pearl: #FFFFFF;
    --shadow-deep: 0 30px 50px -20px rgba(0, 0, 0, 0.35);
    --shadow-float: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
    --shadow-lift: 0 40px 50px -25px rgba(0, 0, 0, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --radius-card: 2rem;
    --radius-pill: 100px;
    --font-serif-cosmic: 'Cormorant Garamond', serif;
    --font-sans: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--Clear-ivory);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== HEADER – COSMIC GLASS ========== */
.Clear-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 19, 32, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    gap: 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.logo-container {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.Clear-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.Clear-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-item {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--Clear-silver);
    letter-spacing: 0.8px;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.nav-item:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--Clear-gold);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.nav-item:hover:after,
.nav-item.active:after {
    width: 100%;
}

.nav-item:hover,
.nav-item.active {
    color: var(--Clear-gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--Clear-silver);
    transition: 0.3s;
    border-radius: 2px;
}

/* ========== HERO – STELLAR IMMERSION ========== */
.hero-Clear {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(ellipse at 30% 40%, #0F1A2F, #050A14);
    background-image: url('images/hero-Clear-bg.jpg');
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.2) 0%, rgba(11, 19, 32, 0.85) 100%);
}

.hero-orbit {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 0 1.5rem;
    animation: riseFade 1.2s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.18);
    backdrop-filter: blur(6px);
    padding: 0.45rem 1.8rem;
    border-radius: 40px;
    margin-bottom: 1.6rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    font-weight: 500;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    font-family: var(--font-serif-cosmic);
    text-shadow: 0 2px 25px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 2.4rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--Clear-gold);
    color: var(--Clear-deep);
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: #b68b2c;
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.4);
    gap: 16px;
    color: white;
}

.btn-outline-cosmic {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: var(--transition-smooth);
}

.btn-outline-cosmic:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--Clear-gold);
    transform: translateY(-2px);
}

.scroll-hint {
	position: absolute;
	bottom: -80px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 0.7rem;
	letter-spacing: 2px;
	opacity: 0.8;
	animation: softBounce 2.2s infinite;
	text-transform: uppercase;
}

/* ========== SECTIONS ========== */
.section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.8rem;
}

.section-sup {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--Clear-bronze);
    background: rgba(205, 127, 79, 0.12);
    padding: 0.3rem 1.6rem;
    border-radius: 40px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--Clear-deep);
    font-family: var(--font-serif-cosmic);
    letter-spacing: -0.2px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 580px;
    margin: 0 auto;
}

/* ========== PROMOTIONS GRID ========== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.2rem;
}

.promo-card {
    background: var(--white-pearl);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-float);
    position: relative;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.promo-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--Clear-gold);
    color: var(--Clear-deep);
    font-weight: 800;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.75rem;
    z-index: 2;
    letter-spacing: 0.5px;
}

.promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-card:hover .promo-image {
    transform: scale(1.02);
}

.promo-body {
    padding: 1.8rem;
}

.promo-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-family: var(--font-serif-cosmic);
}

.promo-loc {
    font-size: 0.8rem;
    color: var(--Clear-bronze);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 1rem 0 0.6rem;
}

.price-old {
    text-decoration: line-through;
    color: #9aaebf;
    font-size: 0.9rem;
}

.price-new {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--Clear-bronze);
}

.promo-validity {
    font-size: 0.7rem;
    background: #ece3d8;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    display: inline-block;
    margin: 0.8rem 0 1.2rem;
}

.btn-outline-card {
    display: inline-block;
    border: 1.5px solid var(--Clear-bronze);
    padding: 0.65rem 1.6rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    color: var(--Clear-deep);
    transition: var(--transition-smooth);
    background: transparent;
    cursor: pointer;
    text-align: center;
    font-size: 0.8rem;
}

.btn-outline-card:hover {
    background: var(--Clear-bronze);
    color: white;
    border-color: var(--Clear-bronze);
    transform: translateY(-2px);
}

/* ========== PACKAGES MOSAIC ========== */
.packages-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
}

.pack-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-float);
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
}

.pack-media {
    position: relative;
    overflow: hidden;
}

.pack-media img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s;
}

.pack-card:hover .pack-media img {
    transform: scale(1.03);
}

.pack-duration {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
}

.pack-info {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pack-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-family: var(--font-serif-cosmic);
}

.pack-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--Clear-bronze);
    margin: 0.8rem 0 0.8rem;
    display: inline-block;
}

.pack-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-soft);
    white-space: nowrap;
}

.pack-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 0.7rem;
    color: #6d7f92;
    border-top: 1px solid #e5ddcf;
    padding-top: 1rem;
}

.pack-features i {
    color: var(--Clear-bronze);
    margin-right: 5px;
    width: 18px;
}

.pack-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--Clear-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    margin-top: auto;
    font-size: 0.85rem;
}

.pack-link:hover {
    color: var(--Clear-bronze);
    gap: 12px;
}

/* ========== ABOUT – Clear LEGACY ========== */
.about-Clear {
    background: linear-gradient(135deg, #ECECEA 0%, #DBD5C6 100%);
}

.about-container {
    display: flex;
    gap: 4.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-visual {
    flex: 1;
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}

.about-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2.5rem;
}

.legacy-stamp {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--Clear-gold);
    padding: 0.7rem 1.5rem;
    border-radius: 60px;
    font-weight: 700;
    color: var(--Clear-deep);
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    backdrop-filter: blur(3px);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-family: var(--font-serif-cosmic);
}

.highlight-accent {
    color: var(--Clear-bronze);
    position: relative;
}

.stats-sky {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0 1.8rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item span {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--Clear-deep);
    font-family: var(--font-serif-cosmic);
}

.stat-item label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== CONTACT – PREMIUM ========== */
.contact-Clear {
    background: var(--Clear-ivory);
}

.contact-grid-Clear {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: white;
    border-radius: 3rem;
    padding: 3rem;
    box-shadow: var(--shadow-float);
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-card-Clear i {
    font-size: 2rem;
    color: var(--Clear-bronze);
    margin-bottom: 0.6rem;
}

.contact-card-Clear h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.contact-form {
    flex: 1.4;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.form-row input {
    flex: 1;
    min-width: calc(50% - 0.5rem);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #d6cbbe;
    border-radius: 2rem;
    font-family: var(--font-sans);
    background: #FEFBF5;
    transition: 0.2s;
}

.contact-form textarea {
    border-radius: 1.5rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--Clear-bronze);
    box-shadow: 0 0 0 3px rgba(205, 127, 79, 0.2);
}

.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 0.8rem;
}

/* ========== FOOTER – COSMIC DEPTH ========== */
.Clear-footer {
    background: #0A101A;
    color: #B6C5D6;
    padding-top: 4rem;
    margin-top: 2rem;
}

.footer-Clear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-logo-Clear {
    max-width: 180px;
    margin-bottom: 1rem;
    filter: brightness(0.95) contrast(1.1);
}

.footer-brand-Clear p {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-links-Clear h4,
.footer-payment-Clear h4 {
    color: var(--Clear-gold);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-links-Clear ul {
    list-style: none;
}

.footer-links-Clear li {
    margin-bottom: 0.7rem;
}

.footer-links-Clear a {
    text-decoration: none;
    color: #c0cfdf;
    transition: 0.2s;
    font-size: 0.85rem;
}

.footer-links-Clear a:hover {
    color: var(--Clear-gold);
    padding-left: 4px;
}

.payment-icons-Clear {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-icons-Clear i {
    font-size: 1.8rem;
    color: #b8c8da;

    transition: var(--transition-smooth);
}

.payment-icons-Clear i:hover {
    color: var(--Clear-gold);
    transform: translateY(-2px);
}

.footer-cert {
    font-size: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    font-size: 0.75rem;
}

/* ========== ANIMATIONS ========== */
@keyframes riseFade {
    from {
        opacity: 0;
        transform: translateY(45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.8rem;
    }
    .section-header h2 {
        font-size: 2.6rem;
    }
    .about-container {
        flex-direction: column;
    }
    .contact-grid-Clear {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: rgba(10, 16, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s ease;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    .nav-list.nav-open {
        right: 0;
    }
    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .logo-container {
        width: 200px;
        height: 80px;
    }
    .container {
        padding: 0 1.5rem;
    }
    .section {
        padding: 70px 0;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .stats-sky {
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    .form-row input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .btn-primary, .btn-outline-cosmic {
        padding: 0.7rem 1.4rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .contact-grid-Clear {
        padding: 1.5rem;
    }
    .pack-price {
        font-size: 1.6rem;
    }
    .pack-price span {
        white-space: normal;
    }
    .hero-badge {
        letter-spacing: 2px;
    }
}

/* ========== IMAGE & CONTENT PROTECTION ========== */
img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

::-webkit-scrollbar {
    width: 8px;
    background: var(--Clear-stone);
}
::-webkit-scrollbar-thumb {
    background: var(--Clear-bronze);
    border-radius: 10px;
}

/* ============================================
   Clear Vacation Trips | PROMOTIONS PAGE STYLING
   Celestial luxury · fully compatible with index style
   Extends main style.css with promotions-specific refinements
   ============================================ */

/* ensure consistency with root variables (already declared in style.css, but redeclared for safety) */
:root {
    --Clear-deep: #0B1320;
    --Clear-void: #101a2b;
    --Clear-silver: #CBD5E6;
    --Clear-aurora: #48CAE4;
    --Clear-bronze: #CD7F4F;
    --Clear-gold: #D4AF37;
    --Clear-ivory: #F9F6EF;
    --Clear-stone: #D6CFC0;
    --text-dark: #1F2A3A;
    --text-soft: #5C6F87;
    --white-pearl: #FFFFFF;
    --shadow-deep: 0 30px 50px -20px rgba(0, 0, 0, 0.35);
    --shadow-float: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
    --shadow-lift: 0 40px 50px -25px rgba(0, 0, 0, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --radius-card: 2rem;
    --radius-pill: 100px;
    --font-serif-cosmic: 'Cormorant Garamond', serif;
    --font-sans: 'Space Grotesk', sans-serif;
}

/* ========== PROMOTIONS HERO – SAME STRUCTURE BUT MINOR HEIGHT ADJUST ========== */
.promo-hero {
    min-height: 100vh;
    position: relative;
    background: radial-gradient(ellipse at 30% 40%, #0F1A2F, #050A14);
    background-image: url('images/hero-promotions-bg.jpg');
    background-size: cover;
    background-position: center 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.promo-hero .hero-orbit {
    margin-top: 2rem;
}

.promo-stat-badge {
    background: rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 0.5rem 1.6rem;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* ========== FILTER BAR – COSMIC TAGS ========== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 2.8rem;
}

.filter-badge {
    background: rgba(205, 127, 79, 0.12);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--Clear-deep);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(205, 127, 79, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-badge i {
    color: var(--Clear-bronze);
    font-size: 0.7rem;
}

.filter-badge:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    border-color: var(--Clear-gold);
}

/* ========== PROMOTIONS GRID ENHANCEMENTS ========== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.2rem;
    margin-bottom: 2rem;
}

.promo-card {
    background: var(--white-pearl);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-float);
    position: relative;
    transform: translateY(0);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

/* special hover effect for promo images */
.promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.95, 0.4, 1.1);
}

.promo-card:hover .promo-image {
    transform: scale(1.02);
}

.promo-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--Clear-gold);
    color: var(--Clear-deep);
    font-weight: 800;
    padding: 0.35rem 1.2rem;
    border-radius: 40px;
    font-size: 0.7rem;
    z-index: 2;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
}

.promo-body {
    padding: 1.8rem;
}

.promo-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif-cosmic);
    color: var(--Clear-deep);
    line-height: 1.3;
}

.promo-loc {
    font-size: 0.8rem;
    color: var(--Clear-bronze);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.promo-body p {
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text-soft);
    margin-bottom: 1rem;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 1rem 0 0.8rem;
    flex-wrap: wrap;
}

.price-old {
    text-decoration: line-through;
    color: #9aaebf;
    font-size: 0.9rem;
    font-weight: 500;
}

.price-new {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--Clear-bronze);
    letter-spacing: -0.5px;
}

.promo-validity {
    font-size: 0.7rem;
    background: #ece3d8;
    padding: 0.35rem 1.2rem;
    border-radius: 40px;
    display: inline-block;
    margin: 0.6rem 0 1.2rem;
    color: var(--Clear-deep);
    font-weight: 500;
}

.btn-outline-card {
    display: inline-block;
    border: 1.5px solid var(--Clear-bronze);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: var(--Clear-deep);
    transition: var(--transition-smooth);
    background: transparent;
    cursor: pointer;
    text-align: center;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
}

.btn-outline-card:hover {
    background: var(--Clear-bronze);
    color: white;
    border-color: var(--Clear-bronze);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(205, 127, 79, 0.25);
}

/* ========== RESPONSIVE FINE-TUNING FOR PROMO PAGE ========== */
@media (max-width: 992px) {
    .promo-hero .hero-title {
        font-size: 3.2rem;
    }
    .filter-bar {
        gap: 0.7rem;
    }
    .filter-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .promo-hero {
        min-height: 55vh;
    }
    .promo-hero .hero-title {
        font-size: 2.4rem;
    }
    .promo-stat-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
    .filter-bar {
        margin-bottom: 2rem;
    }
    .price-new {
        font-size: 1.6rem;
    }
    .promo-body h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .promo-hero .hero-title {
        font-size: 2rem;
    }
    .price-new {
        font-size: 1.4rem;
    }
    .btn-outline-card {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }
    .promo-body {
        padding: 1.2rem;
    }
    .promo-tag {
        font-size: 0.65rem;
        top: 12px;
        left: 12px;
    }
}

/* ========== ADDITIONAL EFFECTS ========== */
.promo-section .container {
    position: relative;
}

/* subtle cosmic particles effect on promotions section (light) */
.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
    z-index: 0;
}

.promo-section {
    position: relative;
    background: var(--Clear-ivory);
}

/* ensure promo cards have crisp corners */
.promo-card {
    backdrop-filter: blur(0px);
}

/* styling for the "Inquire for custom bundles" button */
.promo-section .btn-primary {
    background: var(--Clear-bronze);
    color: white;
    border: none;
}

.promo-section .btn-primary:hover {
    background: #b5673a;
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -12px rgba(205, 127, 79, 0.4);
}

/* scroll hint adjustment for promotions hero */
.promo-hero .scroll-hint {
	bottom: -67px;
}

/* loading & performance friendly */
img.promo-image {
    background-color: #e9e2d8;
}

/* ensure consistent spacing with main index */
.section.promo-section {
    padding: 100px 0 110px;
}

/* optional star decoration for offers count */
.filter-badge:first-child i {
    animation: subtlePulse 2s infinite;
}

@keyframes subtlePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; transform: scale(1.05); }
}

/* custom tooltip / badge for new offers */
.promo-card[data-new="true"] .promo-tag::after {
    content: "✨";
    margin-left: 6px;
    font-size: 0.7rem;
}

/* premium touch: gradient border on promo cards on hover */
.promo-card:hover {
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(145deg, white, #fefaf5);
}

/* footer and header consistency ensured by main style.css */

/* ============================================
   Clear Vacation Trips | PACKAGES PAGE STYLING
   Celestial luxury · Signature collection
   Extends main style.css with packages-specific refinements
   ============================================ */

/* ensure consistency with root variables */
:root {
    --Clear-deep: #0B1320;
    --Clear-void: #101a2b;
    --Clear-silver: #CBD5E6;
    --Clear-aurora: #48CAE4;
    --Clear-bronze: #CD7F4F;
    --Clear-gold: #D4AF37;
    --Clear-ivory: #F9F6EF;
    --Clear-stone: #D6CFC0;
    --text-dark: #1F2A3A;
    --text-soft: #5C6F87;
    --white-pearl: #FFFFFF;
    --shadow-deep: 0 30px 50px -20px rgba(0, 0, 0, 0.35);
    --shadow-float: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
    --shadow-lift: 0 40px 50px -25px rgba(0, 0, 0, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --radius-card: 2rem;
    --radius-pill: 100px;
    --font-serif-cosmic: 'Cormorant Garamond', serif;
    --font-sans: 'Space Grotesk', sans-serif;
}

/* ========== PACKAGES HERO – CELESTIAL COLLECTION ========== */
.packages-hero {
    min-height: 100vh;
    position: relative;
    background: radial-gradient(ellipse at 30% 40%, #0F1A2F, #050A14);
    background-image: url('images/hero-packages-bg.jpg');
    background-size: cover;
    background-position: center 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.packages-hero .hero-orbit {
    margin-top: 2rem;
}

.packages-stat-badge {
    background: rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 0.5rem 1.6rem;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* ========== REGION FILTER BADGES ========== */
.region-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 2.8rem;
}

.region-badge {
    background: rgba(205, 127, 79, 0.12);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--Clear-deep);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(205, 127, 79, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.region-badge i {
    color: var(--Clear-bronze);
    font-size: 0.7rem;
}

.region-badge:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    border-color: var(--Clear-gold);
}

/* ========== PACKAGES MOSAIC GRID ========== */
.packages-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Package Card Styling */
.pack-card {
    background: var(--white-pearl);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-float);
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Media Section */
.pack-media {
    position: relative;
    overflow: hidden;
    background: #2c3e3a;
}

.pack-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.95, 0.4, 1.1);
}

.pack-card:hover .pack-media img {
    transform: scale(1.03);
}

.pack-duration {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    color: white;
    padding: 0.35rem 1.2rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pack-duration i {
    font-size: 0.65rem;
}

/* Package Info */
.pack-info {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pack-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-family: var(--font-serif-cosmic);
    color: var(--Clear-deep);
    line-height: 1.3;
}

.pack-info p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.pack-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--Clear-bronze);
    margin: 0.5rem 0 0.8rem;
    display: inline-block;
}

.pack-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-soft);
    white-space: nowrap;
}

/* Features Row */
.pack-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 0.7rem;
    color: #6d7f92;
    border-top: 1px solid #e8e0d5;
    padding-top: 1rem;
}

.pack-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(205, 127, 79, 0.08);
    padding: 0.25rem 0.8rem;
    border-radius: 30px;
}

.pack-features i {
    color: var(--Clear-bronze);
    font-size: 0.7rem;
    width: auto;
}

/* Package Link Button */
.pack-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--Clear-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    margin-top: auto;
    font-size: 0.85rem;
    padding-top: 0.5rem;
}

.pack-link:hover {
    color: var(--Clear-bronze);
    gap: 12px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .packages-hero .hero-title {
        font-size: 3.2rem;
    }
    .region-filter {
        gap: 0.7rem;
    }
    .region-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.65rem;
    }
    .packages-mosaic {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .packages-hero {
        min-height: 55vh;
    }
    .packages-hero .hero-title {
        font-size: 2.4rem;
    }
    .packages-stat-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
    .region-filter {
        margin-bottom: 2rem;
    }
    .pack-info h3 {
        font-size: 1.3rem;
    }
    .pack-price {
        font-size: 1.6rem;
    }
    .pack-price span {
        white-space: normal;
        display: inline-block;
    }
    .pack-media img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .packages-hero .hero-title {
        font-size: 2rem;
    }
    .pack-info {
        padding: 1.2rem;
    }
    .pack-features span {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
    .pack-price {
        font-size: 1.4rem;
    }
    .pack-link {
        font-size: 0.75rem;
    }
    .region-badge {
        padding: 0.35rem 1rem;
        font-size: 0.6rem;
    }
}

/* ========== ANIMATIONS & EFFECTS ========== */
@keyframes cardGlow {
    0% {
        box-shadow: var(--shadow-float);
    }
    100% {
        box-shadow: 0 25px 45px -12px rgba(212, 175, 55, 0.3);
    }
}

.pack-card:hover {
    animation: cardGlow 0.4s ease forwards;
}

/* subtle region filter pulse on load */
.region-badge:first-child {
    animation: subtleGlow 2s infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        border-color: rgba(205, 127, 79, 0.25);
    }
    50% {
        border-color: rgba(212, 175, 55, 0.6);
    }
}

/* Packages section background refinement */
.packages-section {
    position: relative;
    background: var(--Clear-ivory);
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    z-index: 0;
}

.packages-section .container {
    position: relative;
    z-index: 1;
}

/* CTA Button at bottom */
.packages-section .btn-primary {
    background: var(--Clear-bronze);
    color: white;
    border: none;
}

.packages-section .btn-primary:hover {
    background: #b5673a;
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -12px rgba(205, 127, 79, 0.4);
}

/* Scroll hint positioning for packages hero */
.packages-hero .scroll-hint {
	bottom: -63px;
}

/* Loading placeholder styling */
.pack-media img[onerror] {
    background: linear-gradient(145deg, #2c3e3a, #1e2d28);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium touch: region filter active state (visual only) */
.region-badge:active {
    transform: scale(0.96);
}

/* Ensure all package cards have consistent height layout */
.pack-card {
    height: 100%;
}

/* Custom scrollbar for packages page */
.packages-section ::-webkit-scrollbar {
    width: 6px;
}

/* Duration badge icon spacing */
.pack-duration i {
    margin-right: 4px;
}

/* Feature icons consistent sizing */
.pack-features i {
    width: 14px;
    text-align: center;
}

/* Hover transition for price */
.pack-card:hover .pack-price {
    color: var(--Clear-gold);
    transition: color 0.3s ease;
}

/* ============================================
   Clear Vacation Trips | FAQS PAGE STYLING
   Celestial luxury · Knowledge hub accordion
   Extends main style.css with FAQs-specific refinements
   ============================================ */

/* ensure consistency with root variables */
:root {
    --Clear-deep: #0B1320;
    --Clear-void: #101a2b;
    --Clear-silver: #CBD5E6;
    --Clear-aurora: #48CAE4;
    --Clear-bronze: #CD7F4F;
    --Clear-gold: #D4AF37;
    --Clear-ivory: #F9F6EF;
    --Clear-stone: #D6CFC0;
    --text-dark: #1F2A3A;
    --text-soft: #5C6F87;
    --white-pearl: #FFFFFF;
    --shadow-deep: 0 30px 50px -20px rgba(0, 0, 0, 0.35);
    --shadow-float: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
    --shadow-lift: 0 40px 50px -25px rgba(0, 0, 0, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --radius-card: 2rem;
    --radius-pill: 100px;
    --font-serif-cosmic: 'Cormorant Garamond', serif;
    --font-sans: 'Space Grotesk', sans-serif;
}

/* ========== FAQ HERO – SAME AS INDEX HERO ========== */
.faq-hero {
    min-height: 100vh;
    position: relative;
    background: radial-gradient(ellipse at 30% 40%, #0F1A2F, #050A14);
    background-image: url('images/hero-faq-bg.jpg');
    background-size: cover;
    background-position: center 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.faq-hero .hero-orbit {
    margin-top: 2rem;
}

.faq-stat-badge {
    background: rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 0.2rem 1.2rem;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* ========== FAQ CATEGORY STYLES ========== */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.8rem;
    font-family: var(--font-serif-cosmic);
    color: var(--Clear-deep);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--Clear-gold);
    display: inline-block;
}

/* ========== FAQ ACCORDION GRID ========== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

/* ========== FAQ ITEM CARD ========== */
.faq-item {
    background: var(--white-pearl);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-float);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-deep);
}

/* ========== FAQ QUESTION BUTTON ========== */
.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--Clear-deep);
    background: var(--white-pearl);
    transition: background 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question i {
    color: var(--Clear-bronze);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* ========== FAQ ANSWER CONTENT ========== */
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.85rem;
}

.faq-answer.active {
    padding: 0 1.5rem 1.2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0.5rem;
}

.faq-answer ul, .faq-answer ol {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-answer li {
    margin-bottom: 0.4rem;
}

.faq-answer a {
    color: var(--Clear-bronze);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.faq-answer a:hover {
    color: var(--Clear-gold);
    text-decoration: underline;
}

/* ========== FAQ CONTACT CTA ========== */
.faq-contact-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(205, 127, 79, 0.08), rgba(212, 175, 55, 0.08));
    border-radius: 2rem;
}

.faq-contact-cta h3 {
    font-family: var(--font-serif-cosmic);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--Clear-deep);
}

.faq-contact-cta p {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.faq-contact-cta .btn-primary {
    background: var(--Clear-bronze);
    color: white;
    border: none;
}

.faq-contact-cta .btn-primary:hover {
    background: #b5673a;
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -12px rgba(205, 127, 79, 0.4);
}

.faq-contact-cta .btn-outline-cosmic {
    background: transparent;
    color: var(--Clear-deep);
    border-color: var(--Clear-bronze);
}

.faq-contact-cta .btn-outline-cosmic:hover {
    background: rgba(205, 127, 79, 0.1);
    border-color: var(--Clear-gold);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .faq-hero .hero-title {
        font-size: 3.2rem;
    }
    .faq-category-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        min-height: 55vh;
    }
    .faq-hero .hero-title {
        font-size: 2.4rem;
    }
    .faq-stat-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .faq-question {
        font-size: 0.9rem;
        padding: 1rem 1.2rem;
    }
    .faq-answer.active {
        padding: 0 1.2rem 1rem 1.2rem;
    }
    .faq-category-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    .faq-category {
        margin-bottom: 2rem;
    }
    .faq-contact-cta {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .faq-contact-cta h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .faq-hero .hero-title {
        font-size: 2rem;
    }
    .faq-question {
        font-size: 0.85rem;
        padding: 0.9rem 1rem;
    }
    .faq-answer.active {
        padding: 0 1rem 0.9rem 1rem;
    }
    .faq-answer {
        font-size: 0.8rem;
    }
    .faq-category-title {
        font-size: 1.2rem;
    }
    .faq-contact-cta h3 {
        font-size: 1.2rem;
    }
    .faq-contact-cta .btn-primary,
    .faq-contact-cta .btn-outline-cosmic {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* ========== SCROLL HINT ADJUSTMENT ========== */
.faq-hero .scroll-hint {
    bottom: -65px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-category {
    animation: fadeInUp 0.5s ease forwards;
}

.faq-category:nth-child(1) { animation-delay: 0.05s; }
.faq-category:nth-child(2) { animation-delay: 0.1s; }
.faq-category:nth-child(3) { animation-delay: 0.15s; }
.faq-category:nth-child(4) { animation-delay: 0.2s; }
.faq-category:nth-child(5) { animation-delay: 0.25s; }

/* ========== CUSTOM SCROLLBAR ========== */
.faq-section ::-webkit-scrollbar {
    width: 6px;
}

/* ========== FOOTER AND HEADER CONSISTENCY ========== */
/* ensured by main style.css */

/* ========== FAQ SPECIFIC UTILITIES ========== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* ========== HOVER ENHANCEMENTS ========== */
.faq-item:active {
    transform: scale(0.99);
}

/* ========== ICON ANIMATION ========== */
.faq-question i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== ACTIVE STATE STYLING ========== */
.faq-question.active {
    background: rgba(212, 175, 55, 0.05);
    border-bottom: none;
}

/* Footer and header consistency ensured by main style.css */
/* This file extends style.css specifically for packages page enhancements */

/* ============================================
   Clear Vacation Trips | TRAVEL INSURANCE PAGE STYLING
   Celestial luxury · Secure journey protection
   Extends main style.css with insurance-specific refinements
   ============================================ */

/* ensure consistency with root variables */
:root {
    --Clear-deep: #0B1320;
    --Clear-void: #101a2b;
    --Clear-silver: #CBD5E6;
    --Clear-aurora: #48CAE4;
    --Clear-bronze: #CD7F4F;
    --Clear-gold: #D4AF37;
    --Clear-ivory: #F9F6EF;
    --Clear-stone: #D6CFC0;
    --text-dark: #1F2A3A;
    --text-soft: #5C6F87;
    --white-pearl: #FFFFFF;
    --shadow-deep: 0 30px 50px -20px rgba(0, 0, 0, 0.35);
    --shadow-float: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
    --shadow-lift: 0 40px 50px -25px rgba(0, 0, 0, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --radius-card: 2rem;
    --radius-pill: 100px;
    --font-serif-cosmic: 'Cormorant Garamond', serif;
    --font-sans: 'Space Grotesk', sans-serif;
}

/* ========== INSURANCE HERO – SAME AS FAQ HERO ========== */
.insurance-hero {
    min-height: 100vh;
    position: relative;
    background: radial-gradient(ellipse at 30% 40%, #0F1A2F, #050A14);
    background-image: url('images/hero-insurance-bg.jpg');
    background-size: cover;
    background-position: center 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.insurance-hero .hero-orbit {
    margin-top: 2rem;
}

.insurance-stat-badge {
    background: rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 0.2rem 1.2rem;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* ========== COVERAGE CARDS ========== */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.coverage-card {
    background: var(--white-pearl);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(205, 127, 79, 0.15);
}

.coverage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
    border-color: var(--Clear-gold);
}

.coverage-card i {
    font-size: 2.8rem;
    color: var(--Clear-bronze);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.coverage-card:hover i {
    transform: scale(1.05);
    color: var(--Clear-gold);
}

.coverage-card h3 {
    font-size: 1.3rem;
    font-family: var(--font-serif-cosmic);
    margin-bottom: 1rem;
    color: var(--Clear-deep);
}

.coverage-card p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.5;
}

/* ========== PLAN COMPARISON CARDS ========== */
.plans-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.plan-card {
    flex: 1;
    min-width: 260px;
    background: var(--white-pearl);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-float);
    transition: var(--transition-smooth);
    border: 1px solid rgba(205, 127, 79, 0.2);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
}

.plan-header {
    background: linear-gradient(135deg, var(--Clear-deep), #1a2a3a);
    color: white;
    padding: 1.8rem;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.6rem;
    font-family: var(--font-serif-cosmic);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--Clear-gold);
}

.plan-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--Clear-silver);
}

.plan-badge {
    display: inline-block;
    background: var(--Clear-gold);
    color: var(--Clear-deep);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    margin-top: 0.5rem;
}

.plan-features {
    padding: 1.8rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.plan-features li i {
    color: var(--Clear-bronze);
    width: 20px;
    font-size: 0.9rem;
}

.plan-features li .fa-times-circle {
    color: #ccc;
}

/* ========== STEPS – HOW IT WORKS ========== */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 180px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--Clear-gold);
    color: var(--Clear-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    font-family: var(--font-serif-cosmic);
    transition: var(--transition-smooth);
}

.step:hover .step-number {
    transform: scale(1.05);
    background: var(--Clear-bronze);
    color: white;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step p {
    font-size: 0.8rem;
    color: var(--text-soft);
}

/* ========== DISCLAIMER BOX ========== */
.disclaimer-box {
    background: rgba(205, 127, 79, 0.08);
    border-left: 4px solid var(--Clear-bronze);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.disclaimer-box p {
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.disclaimer-box i {
    margin-right: 8px;
}

/* ========== FAQ ITEMS REUSED FROM FAQ PAGE ========== */
.faq-item {
    background: var(--white-pearl);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-float);
    transition: var(--transition-smooth);
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-deep);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--Clear-deep);
    background: var(--white-pearl);
    transition: background 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question i {
    color: var(--Clear-bronze);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.85rem;
}

.faq-answer.active {
    padding: 0 1.5rem 1.2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0.5rem;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .insurance-hero .hero-title {
        font-size: 3.2rem;
    }
    .plan-card {
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .insurance-hero {
        min-height: 55vh;
    }
    .insurance-hero .hero-title {
        font-size: 2.4rem;
    }
    .insurance-stat-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
    .plan-card {
        min-width: 100%;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step {
        max-width: 280px;
    }
    .coverage-card {
        padding: 1.5rem;
    }
    .coverage-card h3 {
        font-size: 1.2rem;
    }
    .plan-header h3 {
        font-size: 1.4rem;
    }
    .plan-price {
        font-size: 1.8rem;
    }
    .faq-question {
        font-size: 0.9rem;
        padding: 1rem 1.2rem;
    }
    .faq-answer.active {
        padding: 0 1.2rem 1rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .insurance-hero .hero-title {
        font-size: 2rem;
    }
    .coverage-card {
        padding: 1.2rem;
    }
    .coverage-card i {
        font-size: 2.2rem;
    }
    .coverage-card h3 {
        font-size: 1.1rem;
    }
    .plan-features li {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .step h4 {
        font-size: 1rem;
    }
    .faq-question {
        font-size: 0.85rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coverage-card, .plan-card, .step {
    animation: fadeInUp 0.5s ease forwards;
}

.coverage-card:nth-child(1) { animation-delay: 0.05s; }
.coverage-card:nth-child(2) { animation-delay: 0.1s; }
.coverage-card:nth-child(3) { animation-delay: 0.15s; }
.coverage-card:nth-child(4) { animation-delay: 0.2s; }
.coverage-card:nth-child(5) { animation-delay: 0.25s; }
.coverage-card:nth-child(6) { animation-delay: 0.3s; }

/* ========== SCROLL HINT ADJUSTMENT ========== */
.insurance-hero .scroll-hint {
    bottom: -65px;
}

/* ========== BUTTON STYLES FOR INSURANCE PAGE ========== */
.insurance-plans-cta {
    background: var(--Clear-bronze);
    color: white;
    border: none;
}

.insurance-plans-cta:hover {
    background: #b5673a;
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -12px rgba(205, 127, 79, 0.4);
}

/* ========== FINAL CTA SECTION ========== */
.final-cta-section {
    background: var(--Clear-deep);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-family: var(--font-serif-cosmic);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ========== PARTNER LOGO STYLING ========== */
.partner-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.partner-logos span {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* ========== IMAGE PLACEHOLDER STYLING ========== */
.insurance-hero {
    background-color: #0F1A2F;
}

/* ========== CARD HOVER EFFECTS ENHANCEMENT ========== */
.plan-card .btn-primary,
.plan-card .btn-outline-card {
    width: 100%;
    text-align: center;
    display: block;
}

.plan-card .btn-outline-card {
    background: transparent;
    border-color: var(--Clear-bronze);
}

.plan-card .btn-outline-card:hover {
    background: var(--Clear-bronze);
    color: white;
}

/* ========== DISCLAIMER ICON ALIGNMENT ========== */
.disclaimer-box i {
    vertical-align: middle;
}

/* ========== FOOTER AND HEADER CONSISTENCY ========== */
/* ensured by main style.css */

/* ========== INSURANCE SPECIFIC UTILITIES ========== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* ============================================
   Clear Vacation Trips | TERMS & CONDITIONS PAGE STYLING
   Celestial luxury · Legal framework documentation
   Extends main style.css with terms-specific refinements
   ============================================ */

/* ensure consistency with root variables */
:root {
    --Clear-deep: #0B1320;
    --Clear-void: #101a2b;
    --Clear-silver: #CBD5E6;
    --Clear-aurora: #48CAE4;
    --Clear-bronze: #CD7F4F;
    --Clear-gold: #D4AF37;
    --Clear-ivory: #F9F6EF;
    --Clear-stone: #D6CFC0;
    --text-dark: #1F2A3A;
    --text-soft: #5C6F87;
    --white-pearl: #FFFFFF;
    --shadow-deep: 0 30px 50px -20px rgba(0, 0, 0, 0.35);
    --shadow-float: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
    --shadow-lift: 0 40px 50px -25px rgba(0, 0, 0, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --radius-card: 2rem;
    --radius-pill: 100px;
    --font-serif-cosmic: 'Cormorant Garamond', serif;
    --font-sans: 'Space Grotesk', sans-serif;
}

/* ========== TERMS HERO – SAME AS FAQ HERO ========== */
.terms-hero {
    min-height: 100vh;
    position: relative;
    background: radial-gradient(ellipse at 30% 40%, #0F1A2F, #050A14);
    background-image: url('images/hero-terms-bg.jpg');
    background-size: cover;
    background-position: center 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.terms-hero .hero-orbit {
    margin-top: 2rem;
}

.terms-stat-badge {
    background: rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 0.2rem 1.2rem;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* ========== TERMS CONTENT CONTAINER ========== */
.terms-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* ========== TERMS SECTION CARDS ========== */
.terms-section {
    margin-bottom: 2rem;
    background: var(--white-pearl);
    border-radius: 1.5rem;
    padding: 1.8rem 2rem;
    box-shadow: var(--shadow-float);
    transition: var(--transition-smooth);
    border: 1px solid rgba(205, 127, 79, 0.1);
}

.terms-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(212, 175, 55, 0.2);
}

.terms-section h2 {
    font-size: 1.6rem;
    font-family: var(--font-serif-cosmic);
    color: var(--Clear-deep);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--Clear-gold);
    display: inline-block;
}

.terms-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.2rem 0 0.8rem;
    color: var(--Clear-bronze);
}

.terms-section p {
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.terms-section p strong {
    color: var(--Clear-deep);
    font-weight: 600;
}

.terms-section ul, 
.terms-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.9rem;
}

.terms-section li {
    margin-bottom: 0.4rem;
}

.terms-section li strong {
    color: var(--Clear-deep);
}

.terms-section a {
    color: var(--Clear-bronze);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.terms-section a:hover {
    color: var(--Clear-gold);
    text-decoration: underline;
}

/* ========== TABLE OF CONTENTS ========== */
.toc-container {
    background: linear-gradient(135deg, rgba(205, 127, 79, 0.06), rgba(212, 175, 55, 0.06));
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.toc-container h3 {
    font-family: var(--font-serif-cosmic);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--Clear-deep);
    display: flex;
    align-items: center;
}

.toc-container h3 i {
    color: var(--Clear-bronze);
}

.toc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.toc-link {
    background: var(--white-pearl);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--Clear-deep);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(205, 127, 79, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.toc-link i {
    font-size: 0.7rem;
    color: var(--Clear-bronze);
}

.toc-link:hover {
    background: var(--Clear-gold);
    color: var(--Clear-deep);
    transform: translateY(-2px);
    border-color: var(--Clear-gold);
}

.toc-link:hover i {
    color: var(--Clear-deep);
}

/* ========== LAST UPDATED BADGE ========== */
.last-updated {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(205, 127, 79, 0.08);
    border-radius: 2rem;
    font-size: 0.8rem;
    color: var(--text-soft);
}

.last-updated i {
    color: var(--Clear-bronze);
}

/* ========== ACCEPTANCE STATEMENT ========== */
.acceptance-statement {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.acceptance-statement p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.acceptance-statement i {
    color: var(--Clear-gold);
    margin-right: 8px;
}

/* ========== SCROLL HINT ADJUSTMENT ========== */
.terms-hero .scroll-hint {
    bottom: -65px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .terms-hero .hero-title {
        font-size: 3.2rem;
    }
    .terms-section {
        padding: 1.5rem 1.8rem;
    }
    .terms-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        min-height: 55vh;
    }
    .terms-hero .hero-title {
        font-size: 2.4rem;
    }
    .terms-stat-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
    .terms-section {
        padding: 1.2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    .terms-section h2 {
        font-size: 1.3rem;
    }
    .terms-section h3 {
        font-size: 1.1rem;
    }
    .terms-section p,
    .terms-section ul,
    .terms-section ol {
        font-size: 0.85rem;
    }
    .toc-container {
        padding: 1rem 1.2rem;
    }
    .toc-container h3 {
        font-size: 1.1rem;
    }
    .toc-link {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    .last-updated {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .terms-hero .hero-title {
        font-size: 2rem;
    }
    .terms-section {
        padding: 1rem 1.2rem;
    }
    .terms-section h2 {
        font-size: 1.2rem;
    }
    .terms-section p,
    .terms-section ul,
    .terms-section ol {
        font-size: 0.8rem;
    }
    .toc-grid {
        gap: 0.6rem;
    }
    .toc-link {
        font-size: 0.65rem;
        padding: 0.35rem 0.8rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-section {
    animation: fadeInUp 0.5s ease forwards;
}

.terms-section:nth-child(1) { animation-delay: 0.05s; }
.terms-section:nth-child(2) { animation-delay: 0.1s; }
.terms-section:nth-child(3) { animation-delay: 0.15s; }
.terms-section:nth-child(4) { animation-delay: 0.2s; }
.terms-section:nth-child(5) { animation-delay: 0.25s; }
.terms-section:nth-child(6) { animation-delay: 0.3s; }
.terms-section:nth-child(7) { animation-delay: 0.35s; }
.terms-section:nth-child(8) { animation-delay: 0.4s; }
.terms-section:nth-child(9) { animation-delay: 0.45s; }
.terms-section:nth-child(10) { animation-delay: 0.5s; }
.terms-section:nth-child(11) { animation-delay: 0.55s; }
.terms-section:nth-child(12) { animation-delay: 0.6s; }

/* ========== CUSTOM SCROLLBAR ========== */
.terms-section ::-webkit-scrollbar {
    width: 6px;
}

/* ========== PRINT STYLES ========== */
@media print {
    .Clear-header,
    .Clear-footer,
    .hero-actions,
    .scroll-hint,
    .toc-container,
    .btn-primary,
    .btn-outline-cosmic,
    .mobile-toggle {
        display: none;
    }
    .terms-section {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
    .terms-hero {
        min-height: auto;
        background: white;
        color: black;
    }
    .hero-badge, .hero-title, .hero-desc {
        color: black;
    }
    body {
        background: white;
    }
}

/* ========== FOOTER AND HEADER CONSISTENCY ========== */
/* ensured by main style.css */

/* ========== TERMS SPECIFIC UTILITIES ========== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* ========== HOVER ENHANCEMENTS ========== */
.terms-section:active {
    transform: scale(0.99);
}

/* ========== NUMBERED LIST STYLING ========== */
.terms-section ol {
    list-style-type: decimal;
}

.terms-section ul {
    list-style-type: disc;
}

/* ========== LEGAL NOTICE HIGHLIGHT ========== */
.legal-notice {
    background: rgba(205, 127, 79, 0.05);
    border-left: 3px solid var(--Clear-bronze);
    padding: 1rem;
    border-radius: 0.75rem;
    margin: 1rem 0;
}

/* ============================================
   Clear Vacation Trips | PRIVACY POLICY PAGE STYLING
   Celestial luxury · Data protection documentation
   Extends main style.css with privacy policy-specific refinements
   ============================================ */

/* ensure consistency with root variables */
:root {
    --Clear-deep: #0B1320;
    --Clear-void: #101a2b;
    --Clear-silver: #CBD5E6;
    --Clear-aurora: #48CAE4;
    --Clear-bronze: #CD7F4F;
    --Clear-gold: #D4AF37;
    --Clear-ivory: #F9F6EF;
    --Clear-stone: #D6CFC0;
    --text-dark: #1F2A3A;
    --text-soft: #5C6F87;
    --white-pearl: #FFFFFF;
    --shadow-deep: 0 30px 50px -20px rgba(0, 0, 0, 0.35);
    --shadow-float: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
    --shadow-lift: 0 40px 50px -25px rgba(0, 0, 0, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --radius-card: 2rem;
    --radius-pill: 100px;
    --font-serif-cosmic: 'Cormorant Garamond', serif;
    --font-sans: 'Space Grotesk', sans-serif;
}

/* ========== PRIVACY HERO – SAME AS FAQ HERO ========== */
.privacy-hero {
    min-height: 100vh;
    position: relative;
    background: radial-gradient(ellipse at 30% 40%, #0F1A2F, #050A14);
    background-image: url('images/hero-privacy-bg.jpg');
    background-size: cover;
    background-position: center 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.privacy-hero .hero-orbit {
    margin-top: 2rem;
}

.privacy-stat-badge {
    background: rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 0.2rem 1.2rem;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* ========== PRIVACY CONTENT CONTAINER ========== */
.privacy-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* ========== PRIVACY SECTION CARDS ========== */
.privacy-section {
    margin-bottom: 2rem;
    background: var(--white-pearl);
    border-radius: 1.5rem;
    padding: 1.8rem 2rem;
    box-shadow: var(--shadow-float);
    transition: var(--transition-smooth);
    border: 1px solid rgba(205, 127, 79, 0.1);
}

.privacy-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(212, 175, 55, 0.2);
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-family: var(--font-serif-cosmic);
    color: var(--Clear-deep);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--Clear-gold);
    display: inline-block;
}

.privacy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.2rem 0 0.8rem;
    color: var(--Clear-bronze);
}

.privacy-section p {
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.privacy-section p strong {
    color: var(--Clear-deep);
    font-weight: 600;
}

.privacy-section ul,
.privacy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.9rem;
}

.privacy-section li {
    margin-bottom: 0.4rem;
}

.privacy-section li strong {
    color: var(--Clear-deep);
}

.privacy-section a {
    color: var(--Clear-bronze);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.privacy-section a:hover {
    color: var(--Clear-gold);
    text-decoration: underline;
}

/* ========== TABLE OF CONTENTS ========== */
.toc-container {
    background: linear-gradient(135deg, rgba(205, 127, 79, 0.06), rgba(212, 175, 55, 0.06));
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.toc-container h3 {
    font-family: var(--font-serif-cosmic);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--Clear-deep);
    display: flex;
    align-items: center;
}

.toc-container h3 i {
    color: var(--Clear-bronze);
}

.toc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.toc-link {
    background: var(--white-pearl);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--Clear-deep);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(205, 127, 79, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.toc-link i {
    font-size: 0.7rem;
    color: var(--Clear-bronze);
}

.toc-link:hover {
    background: var(--Clear-gold);
    color: var(--Clear-deep);
    transform: translateY(-2px);
    border-color: var(--Clear-gold);
}

.toc-link:hover i {
    color: var(--Clear-deep);
}

/* ========== LAST UPDATED BADGE ========== */
.last-updated {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(205, 127, 79, 0.08);
    border-radius: 2rem;
    font-size: 0.8rem;
    color: var(--text-soft);
}

.last-updated i {
    color: var(--Clear-bronze);
}

/* ========== CONTACT BOX ========== */
.contact-box {
    background: rgba(212, 175, 55, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-box i {
    font-size: 2rem;
    color: var(--Clear-bronze);
    margin-bottom: 0.5rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

/* ========== SCROLL HINT ADJUSTMENT ========== */
.privacy-hero .scroll-hint {
    bottom: -65px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .privacy-hero .hero-title {
        font-size: 3.2rem;
    }
    .privacy-section {
        padding: 1.5rem 1.8rem;
    }
    .privacy-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        min-height: 55vh;
    }
    .privacy-hero .hero-title {
        font-size: 2.4rem;
    }
    .privacy-stat-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
    .privacy-section {
        padding: 1.2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    .privacy-section p,
    .privacy-section ul,
    .privacy-section ol {
        font-size: 0.85rem;
    }
    .toc-container {
        padding: 1rem 1.2rem;
    }
    .toc-container h3 {
        font-size: 1.1rem;
    }
    .toc-link {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    .last-updated {
        font-size: 0.7rem;
    }
    .contact-box {
        padding: 1rem;
    }
    .contact-box i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero .hero-title {
        font-size: 2rem;
    }
    .privacy-section {
        padding: 1rem 1.2rem;
    }
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    .privacy-section p,
    .privacy-section ul,
    .privacy-section ol {
        font-size: 0.8rem;
    }
    .toc-grid {
        gap: 0.6rem;
    }
    .toc-link {
        font-size: 0.65rem;
        padding: 0.35rem 0.8rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-section {
    animation: fadeInUp 0.5s ease forwards;
}

.privacy-section:nth-child(1) { animation-delay: 0.05s; }
.privacy-section:nth-child(2) { animation-delay: 0.1s; }
.privacy-section:nth-child(3) { animation-delay: 0.15s; }
.privacy-section:nth-child(4) { animation-delay: 0.2s; }
.privacy-section:nth-child(5) { animation-delay: 0.25s; }
.privacy-section:nth-child(6) { animation-delay: 0.3s; }
.privacy-section:nth-child(7) { animation-delay: 0.35s; }
.privacy-section:nth-child(8) { animation-delay: 0.4s; }
.privacy-section:nth-child(9) { animation-delay: 0.45s; }
.privacy-section:nth-child(10) { animation-delay: 0.5s; }
.privacy-section:nth-child(11) { animation-delay: 0.55s; }
.privacy-section:nth-child(12) { animation-delay: 0.6s; }

/* ========== CUSTOM SCROLLBAR ========== */
.privacy-section ::-webkit-scrollbar {
    width: 6px;
}

/* ========== PRINT STYLES ========== */
@media print {
    .Clear-header,
    .Clear-footer,
    .hero-actions,
    .scroll-hint,
    .toc-container,
    .btn-primary,
    .btn-outline-cosmic,
    .mobile-toggle {
        display: none;
    }
    .privacy-section {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
    .privacy-hero {
        min-height: auto;
        background: white;
        color: black;
    }
    .hero-badge, .hero-title, .hero-desc {
        color: black;
    }
    body {
        background: white;
    }
}

/* ========== FOOTER AND HEADER CONSISTENCY ========== */
/* ensured by main style.css */

/* ========== PRIVACY SPECIFIC UTILITIES ========== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* ========== HOVER ENHANCEMENTS ========== */
.privacy-section:active {
    transform: scale(0.99);
}

/* ========== NUMBERED LIST STYLING ========== */
.privacy-section ol {
    list-style-type: decimal;
}

.privacy-section ul {
    list-style-type: disc;
}

/* ========== LEGAL NOTICE HIGHLIGHT ========== */
.legal-notice {
    background: rgba(205, 127, 79, 0.05);
    border-left: 3px solid var(--Clear-bronze);
    padding: 1rem;
    border-radius: 0.75rem;
    margin: 1rem 0;
}

/* ========== ACCEPTANCE STATEMENT STYLING ========== */
.acceptance-statement {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.acceptance-statement p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.acceptance-statement i {
    color: var(--Clear-gold);
    margin-right: 8px;
}

/* ========== MOBILE FONT & LAYOUT FIXES ========== */

/* 防止卡片内长文本溢出 */
.promo-body h3,
.pack-info h3,
.faq-question span {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* 移动端价格字体缩小 */
@media (max-width: 480px) {
    .price-new {
        font-size: 1.2rem !important;
    }
    .pack-price {
        font-size: 1.3rem !important;
    }
    .promo-body h3 {
        font-size: 1.1rem !important;
    }
    .pack-info h3 {
        font-size: 1.1rem !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
    .hero-desc {
        font-size: 0.9rem !important;
        padding: 0 0.5rem;
    }
    .section-header h2 {
        font-size: 1.6rem !important;
    }
    .section-header p {
        font-size: 0.85rem !important;
        padding: 0 0.5rem;
    }
    .faq-question {
        font-size: 0.8rem !important;
        padding: 0.8rem 1rem !important;
    }
    .faq-answer {
        font-size: 0.78rem !important;
    }
    .region-badge,
    .filter-badge {
        font-size: 0.55rem !important;
        padding: 0.25rem 0.7rem !important;
    }
    .btn-primary,
    .btn-outline-cosmic,
    .btn-outline-card {
        font-size: 0.75rem !important;
        padding: 0.5rem 1rem !important;
        white-space: normal !important;
        text-align: center !important;
    }
    .pack-features span {
        font-size: 0.6rem !important;
        padding: 0.15rem 0.5rem !important;
    }
    .promo-validity {
        font-size: 0.6rem !important;
    }
    .hero-badge {
        font-size: 0.55rem !important;
        letter-spacing: 2px !important;
        padding: 0.25rem 1rem !important;
    }
    .stat-item span {
        font-size: 1.6rem !important;
    }
    .stat-item label {
        font-size: 0.65rem !important;
    }
    .contact-card-Clear h4 {
        font-size: 0.95rem !important;
    }
    .contact-card-Clear p {
        font-size: 0.8rem !important;
    }
    .packages-stat-badge {
        font-size: 0.6rem !important;
        padding: 0.25rem 0.8rem !important;
    }
    .promo-stat-badge {
        font-size: 0.6rem !important;
        padding: 0.25rem 0.8rem !important;
    }
}

/* 超小屏幕额外保护 */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    .section-header h2 {
        font-size: 1.3rem !important;
    }
    .price-new {
        font-size: 1rem !important;
    }
    .pack-price {
        font-size: 1.1rem !important;
    }
    .container {
        padding: 0 0.8rem !important;
    }
    .region-filter,
    .filter-bar {
        gap: 0.4rem !important;
    }
}