﻿/** * Copyright (c) 2026 DNA Genics, S.L. All rights reserved.
 *
 * Premium DNA Packages Page - Cinematic Styling
 * Narrative-driven, sophisticated design for package selection experience.
 */

/* ========================================
   CSS Custom Properties - Scoped with pkg- prefix
   ======================================== */
:root {
    /* Warm Golden Palette (matching /services/ancestry) */
    --pkg-gold: #C4956A;
    --pkg-gold-light: #D4B896;
    --pkg-gold-dark: #8B6D4F;
    --pkg-sand: #A89F91;
    --pkg-bone: #E8E4DC;
    --pkg-ivory: #F5F3EF;
    
    /* Dark Backgrounds */
    --pkg-obsidian: #0d1117;
    --pkg-obsidian-light: #161b22;
    --pkg-obsidian-lighter: #1c2128;
    
    /* Text Colors */
    --pkg-text-primary: rgba(255, 255, 255, 0.9);
    --pkg-text-secondary: rgba(255, 255, 255, 0.7);
    --pkg-text-muted: rgba(255, 255, 255, 0.5);
    
    /* Gradients */
    --pkg-gold-gradient: linear-gradient(135deg, #8B6D4F 0%, #C4956A 100%);
    --pkg-gold-gradient-light: linear-gradient(135deg, #C4956A 0%, #D4B896 100%);
    --pkg-hero-gradient: linear-gradient(180deg, #F5F3EF, #D4B896);
    
    /* Explorer Pack Premium Gold (slightly brighter for differentiation) */
    --pkg-premium-gold: #C9A430;
    --pkg-premium-gold-light: #D4B94D;
    
    /* Ultimate Pack Deep Warm Gold (darker bronze/amber) */
    --pkg-ultimate-color: #B8860B;
    --pkg-ultimate-light: #DAA520;
    --pkg-ultimate-dark: #8B6914;
    --pkg-ultimate-gradient: linear-gradient(135deg, #8B6914 0%, #B8860B 100%);
    --pkg-ultimate-gradient-light: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
}

/* ========================================
   Base & Reset
   ======================================== */
body:has(.pkg-main) {
    background-color: #0d1117 !important;
    background-image: none !important;
}

body:has(.pkg-main) #wrapper,
body:has(.pkg-main) #content-wrapper,
body:has(.pkg-main) #content-fluid {
    background: transparent !important;
}

body:has(.pkg-main) footer {
    background-color: #0a0d12 !important;
}

.pkg-main {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    background-color: #0d1117;
}

/* ========================================
   Skip Link (Accessibility)
   ======================================== */
.pkg-skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--pkg-gold);
    color: #0d1117;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 4px;
    transition: top 0.3s ease;
}

.pkg-skip-link:focus {
    top: 16px;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* ========================================
   Scroll Progress Indicator
   ======================================== */
.pkg-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--pkg-gold-gradient);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ========================================
   Page Navigation Dots
   ======================================== */
.pkg-page-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none;
}

@media (min-width: 1200px) {
    .pkg-page-nav {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

.pkg-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.pkg-nav-dot:hover,
.pkg-nav-dot.active {
    background: var(--pkg-gold);
    border-color: var(--pkg-gold);
    transform: scale(1.3);
}

.pkg-nav-dot::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 17, 23, 0.95);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 0.8125rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pkg-nav-dot:hover::after {
    opacity: 1;
}

/* ========================================
   Back to Top Button
   ======================================== */
.pkg-back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 149, 106, 0.15);
    border: 1px solid rgba(196, 149, 106, 0.3);
    color: var(--pkg-gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkg-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.pkg-back-to-top:hover {
    background: var(--pkg-gold);
    color: #0d1117;
}

/* ========================================
   HERO SECTION - Cinematic
   ======================================== */
.pkg-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.pkg-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.pkg-hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(196, 149, 106, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 184, 150, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0d1117 0%, #0a0d12 100%);
}

.pkg-hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(196, 149, 106, 0.3) 0%, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(212, 184, 150, 0.3) 0%, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 1px),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 1px);
    background-size: 100% 100%;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-10px); }
}

.pkg-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pkg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 149, 106, 0.1);
    border: 1px solid rgba(196, 149, 106, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--pkg-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
}

.pkg-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    margin-bottom: 32px;
}

.pkg-title-prelude {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.pkg-title-accent {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: #fff;
    margin-top: 16px;
    background: var(--pkg-hero-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.pkg-hero-lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.pkg-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.pkg-stat-item {
    text-align: center;
}

.pkg-stat-value {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--pkg-gold);
}

.pkg-stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.pkg-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

.pkg-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.pkg-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--pkg-gold-gradient);
    color: #0d1117;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(196, 149, 106, 0.3);
}

.pkg-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 149, 106, 0.4);
    color: #0d1117;
    text-decoration: none;
}

.pkg-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pkg-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.pkg-btn-gold {
    background: linear-gradient(135deg, var(--pkg-premium-gold), var(--pkg-premium-gold-light));
    box-shadow: 0 8px 32px rgba(201, 164, 48, 0.3);
}

.pkg-btn-gold:hover {
    box-shadow: 0 12px 40px rgba(201, 164, 48, 0.4);
}

.pkg-trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pkg-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.pkg-trust-item i {
    color: var(--pkg-gold);
}

.pkg-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ========================================
   ANIMATIONS
   ======================================== */
.pkg-animate-fade-in {
    opacity: 0;
    animation: pkgFadeIn 0.8s ease forwards;
}

.pkg-animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: pkgFadeInUp 0.8s ease forwards;
}

.pkg-delay-1 { animation-delay: 0.1s; }
.pkg-delay-2 { animation-delay: 0.2s; }
.pkg-delay-3 { animation-delay: 0.3s; }
.pkg-delay-4 { animation-delay: 0.4s; }
.pkg-delay-5 { animation-delay: 0.5s; }

@keyframes pkgFadeIn {
    to { opacity: 1; }
}

@keyframes pkgFadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   SECTION STYLING
   ======================================== */
.pkg-section {
    padding: 120px 0;
    position: relative;
}

.pkg-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.pkg-chapter-label {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.875rem;
    font-style: italic;
    color: var(--pkg-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.pkg-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.pkg-section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.pkg-packages-section {
    background: linear-gradient(180deg, #0d1117 0%, #0a0d12 50%, #0d1117 100%);
}

.pkg-packages-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.pkg-packages-section .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.pkg-package-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pkg-package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pkg-package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 149, 106, 0.3);
}

.pkg-package-card:hover::before {
    opacity: 1;
}

.pkg-package-card.pkg-explorer::before {
    background: linear-gradient(135deg, rgba(201, 164, 48, 0.05), transparent);
}

.pkg-package-card.pkg-explorer:hover {
    border-color: rgba(201, 164, 48, 0.4);
}

.pkg-package-card.pkg-ultimate::before {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), transparent);
}

.pkg-package-card.pkg-ultimate:hover {
    border-color: rgba(184, 134, 11, 0.5);
}

.pkg-package-card.pkg-featured {
    transform: scale(1.02);
}

.pkg-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pkg-package-card:hover .pkg-card-glow {
    opacity: 1;
}

.pkg-explorer .pkg-card-glow {
    background: radial-gradient(circle, rgba(201, 164, 48, 0.1) 0%, transparent 50%);
}

.pkg-ultimate .pkg-card-glow {
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 50%);
}

.pkg-popular-ribbon {
    position: absolute;
    top: 24px;
    right: -32px;
    background: linear-gradient(135deg, #C9A430, #D4B94D);
    color: #0d1117;
    padding: 8px 48px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 16px rgba(201, 164, 48, 0.3);
}

.pkg-ultimate-ribbon {
    background: var(--pkg-ultimate-gradient);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.3);
}

.pkg-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 149, 106, 0.1);
    border: 1px solid rgba(196, 149, 106, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pkg-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.pkg-badge-gold {
    background: rgba(201, 164, 48, 0.1);
    border-color: rgba(201, 164, 48, 0.3);
    color: #C9A430;
}

.pkg-badge-ultimate {
    background: rgba(184, 134, 11, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
    color: var(--pkg-ultimate-color);
}

.pkg-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.pkg-card-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-bottom: 32px;
}

.pkg-card-price {
    margin-bottom: 32px;
}

.pkg-price-original {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pkg-price-current {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--pkg-gold);
    line-height: 1;
}

.pkg-price-gold {
    color: #C9A430;
}

.pkg-price-ultimate {
    color: var(--pkg-ultimate-color);
}

.pkg-price-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.pkg-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pkg-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.pkg-card-features li:last-child {
    border-bottom: none;
}

.pkg-card-features li i {
    color: var(--pkg-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.pkg-explorer .pkg-card-features li i {
    color: #C9A430;
}

.pkg-ultimate .pkg-card-features li i {
    color: var(--pkg-ultimate-color);
}

.pkg-feature-ultimate {
    background: rgba(184, 134, 11, 0.1);
    margin: 0 -16px;
    padding: 12px 16px !important;
    border-radius: 8px;
}

.pkg-feature-highlight {
    background: rgba(201, 164, 48, 0.05);
    margin: 0 -16px;
    padding: 12px 16px !important;
    border-radius: 8px;
}

.pkg-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 10;
    margin-top: auto;
}

.pkg-btn-card-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: var(--pkg-gold-gradient);
    color: #0d1117;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.pkg-btn-card-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 149, 106, 0.3);
    color: #0d1117;
    text-decoration: none;
}

.pkg-btn-card-primary.pkg-btn-gold {
    background: linear-gradient(135deg, #C9A430, #D4B94D);
}

.pkg-btn-card-primary.pkg-btn-gold:hover {
    box-shadow: 0 8px 24px rgba(201, 164, 48, 0.3);
}

.pkg-btn-card-primary.pkg-btn-ultimate {
    background: var(--pkg-ultimate-gradient);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
}

.pkg-btn-card-primary.pkg-btn-ultimate:hover {
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
}

.pkg-btn-ultimate {
    background: var(--pkg-ultimate-gradient);
    box-shadow: 0 8px 32px rgba(184, 134, 11, 0.3);
}

.pkg-btn-ultimate:hover {
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.4);
}

.pkg-btn-card-secondary {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pkg-btn-card-secondary:hover {
    color: var(--pkg-gold);
    text-decoration: none;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.pkg-comparison-section {
    background: #0a0d12;
}

.pkg-haplogroup-note {
    max-width: 1000px;
    margin: 0 auto 24px;
    padding: 16px 20px;
    background: rgba(184, 134, 11, 0.12);
    border: 1px solid rgba(184, 134, 11, 0.45);
    border-radius: 12px;
}

.pkg-haplogroup-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pkg-haplogroup-note i {
    color: var(--pkg-ultimate-light);
    margin-right: 8px;
}

.pkg-haplogroup-note strong {
    color: #fff;
}

.pkg-haplogroup-note a {
    color: var(--pkg-gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pkg-haplogroup-note a:hover {
    color: #fff;
}

.pkg-comparison-table-wrapper {
    overflow-x: auto;
    margin: 0 -15px;
    padding: 0 15px;
}

.pkg-comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pkg-comparison-table th,
.pkg-comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pkg-comparison-table thead th {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
}

.pkg-feature-col {
    text-align: left !important;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    width: 40%;
    vertical-align: bottom;
}

.pkg-package-col {
    width: 30%;
    vertical-align: bottom;
}

.pkg-col-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(196, 149, 106, 0.1);
    border: 1px solid rgba(196, 149, 106, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pkg-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pkg-col-badge-gold {
    background: rgba(201, 164, 48, 0.1);
    border-color: rgba(201, 164, 48, 0.3);
    color: #C9A430;
}

.pkg-col-badge-ultimate {
    background: rgba(184, 134, 11, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
    color: var(--pkg-ultimate-color);
}

.pkg-col-price {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
}

.pkg-col-popular {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #C9A430;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pkg-explorer-col {
    background: rgba(201, 164, 48, 0.03);
}

.pkg-ultimate-col {
    background: rgba(184, 134, 11, 0.03);
}

.pkg-section-row {
    background: rgba(255, 255, 255, 0.03);
}

.pkg-section-row td {
    text-align: left !important;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
}

.pkg-section-row.pkg-explorer-highlight td {
    color: #C9A430;
}

.pkg-comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pkg-highlight-row {
    background: rgba(201, 164, 48, 0.02);
}

.pkg-check {
    color: var(--pkg-gold);
    font-size: 1.125rem;
}

.pkg-check-gold {
    color: #C9A430;
    font-size: 1.125rem;
}

.pkg-check-ultimate {
    color: var(--pkg-ultimate-color);
    font-size: 1.125rem;
}

.pkg-ultimate-exclusive {
    background: rgba(184, 134, 11, 0.05);
}

.pkg-unavailable {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.875rem;
}

.pkg-comparison-table tbody td:first-child {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.pkg-comparison-table tfoot td {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.pkg-table-cta {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(196, 149, 106, 0.1);
    border: 1px solid rgba(196, 149, 106, 0.3);
    color: var(--pkg-gold);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pkg-table-cta:hover {
    background: var(--pkg-gold);
    color: #0d1117;
    text-decoration: none;
}

.pkg-table-cta-gold {
    background: rgba(201, 164, 48, 0.1);
    border-color: rgba(201, 164, 48, 0.3);
    color: #C9A430;
}

.pkg-table-cta-gold:hover {
    background: #C9A430;
    color: #0d1117;
}

.pkg-table-cta-ultimate {
    background: rgba(184, 134, 11, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
    color: var(--pkg-ultimate-color);
}

.pkg-table-cta-ultimate:hover {
    background: var(--pkg-ultimate-color);
    color: #0d1117;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.pkg-how-section {
    background: linear-gradient(180deg, #0d1117 0%, #0a0d12 100%);
}

.pkg-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.pkg-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 24px;
    position: relative;
}

.pkg-step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--pkg-gold);
    color: #0d1117;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkg-step-icon {
    width: 80px;
    height: 80px;
    margin: 24px auto 24px;
    background: rgba(196, 149, 106, 0.1);
    border: 1px solid rgba(196, 149, 106, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkg-step-icon i {
    font-size: 1.75rem;
    color: var(--pkg-gold);
}

.pkg-step h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.pkg-step p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.pkg-step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(196, 149, 106, 0.3), rgba(196, 149, 106, 0.1));
    margin-top: 80px;
}

@media (max-width: 768px) {
    .pkg-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .pkg-step-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, rgba(196, 149, 106, 0.3), rgba(196, 149, 106, 0.1));
        margin: 0;
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.pkg-features-section {
    background: #0d1117;
}

.pkg-features-explorer {
    background: linear-gradient(180deg, #0a0d12, #0d1117);
}

.pkg-features-ultimate {
    background: linear-gradient(180deg, #0d1117, #0a0d12);
}

.pkg-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.pkg-starter-badge {
    background: rgba(196, 149, 106, 0.1);
    border: 1px solid rgba(196, 149, 106, 0.3);
    color: var(--pkg-gold);
}

.pkg-explorer-badge {
    background: rgba(201, 164, 48, 0.1);
    border: 1px solid rgba(201, 164, 48, 0.3);
    color: #C9A430;
}

.pkg-ultimate-badge {
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: var(--pkg-ultimate-color);
}

.pkg-feature-ultimate-exclusive {
    border-color: rgba(184, 134, 11, 0.3);
}

.pkg-feature-ultimate-exclusive:hover {
    border-color: rgba(184, 134, 11, 0.5);
}

.pkg-ultimate-tag {
    background: var(--pkg-ultimate-gradient);
    color: #fff;
}

.pkg-ultimate-icon-container {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.08);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.pkg-ultimate-icon-container .dna-icon {
    width: 64px;
    height: 64px;
    color: var(--pkg-ultimate-light);
}

.pkg-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.pkg-feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Anchor tag styling for clickable cards */
a.pkg-feature-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.pkg-feature-card:hover,
a.pkg-feature-card:focus {
    text-decoration: none;
    color: inherit;
}

.pkg-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 149, 106, 0.3);
}

.pkg-feature-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.pkg-feature-card:hover img {
    opacity: 1;
}

.pkg-feature-card h5 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 20px 20px 8px;
}

.pkg-feature-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 20px 20px;
}

.pkg-feature-exclusive {
    border-color: rgba(201, 164, 48, 0.2);
}

.pkg-feature-exclusive:hover {
    border-color: rgba(201, 164, 48, 0.4);
}

.pkg-exclusive-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #C9A430, #D4B94D);
    color: #0d1117;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.pkg-feature-cta {
    text-align: center;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.pkg-trust-section {
    background: #0a0d12;
}

.pkg-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.pkg-trust-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.pkg-trust-card:hover {
    border-color: rgba(196, 149, 106, 0.3);
    transform: translateY(-4px);
}

.pkg-trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(196, 149, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkg-trust-icon i {
    font-size: 1.5rem;
    color: var(--pkg-gold);
}

.pkg-trust-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.pkg-trust-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.pkg-testimonials {
    margin-top: 64px;
}

.pkg-testimonials-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.pkg-testimonials-title i {
    color: #C9A430;
    margin-right: 12px;
}

/* ========================================
   TESTIMONIALS SECTION - Dark Theme Overrides
   ======================================== */
/* Override testimonials-enhanced section background */
.pkg-trust-section .testimonials-enhanced {
    background: transparent !important;
    padding: 0 !important;
}

/* Section heading styles */
.pkg-trust-section .testimonials-enhanced .section-heading h2 {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
}

.pkg-trust-section .testimonials-enhanced .section-heading h3 {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
}

.pkg-trust-section .testimonials-enhanced .section-heading p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.pkg-trust-section .testimonials-enhanced .section-heading hr {
    border-top-color: var(--pkg-gold) !important;
}

/* Featured testimonial card */
.pkg-trust-section .testimonials-enhanced .featured-testimonial {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: 4px solid var(--pkg-gold) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.pkg-trust-section .testimonials-enhanced .featured-testimonial .featured-quote i {
    color: var(--pkg-gold) !important;
    opacity: 0.3 !important;
}

.pkg-trust-section .testimonials-enhanced .featured-testimonial blockquote p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pkg-trust-section .testimonials-enhanced .featured-testimonial .testimonial-author p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pkg-trust-section .testimonials-enhanced .featured-testimonial .testimonial-author .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.pkg-trust-section .testimonials-enhanced .featured-testimonial .star-rating {
    color: #C9A430 !important;
}

.pkg-trust-section .testimonials-enhanced .featured-testimonial .avatar-placeholder {
    background: rgba(196, 149, 106, 0.2) !important;
}

/* Review cards grid */
.pkg-trust-section .testimonials-enhanced .review-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.pkg-trust-section .testimonials-enhanced .review-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(196, 149, 106, 0.2) !important;
    border-color: rgba(196, 149, 106, 0.3) !important;
}

.pkg-trust-section .testimonials-enhanced .review-card h5 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.pkg-trust-section .testimonials-enhanced .review-card .review-content {
    color: rgba(255, 255, 255, 0.7) !important;
}

.pkg-trust-section .testimonials-enhanced .review-card .review-header p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pkg-trust-section .testimonials-enhanced .review-card .review-footer {
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.pkg-trust-section .testimonials-enhanced .review-card .review-footer small {
    color: rgba(255, 255, 255, 0.6) !important;
}

.pkg-trust-section .testimonials-enhanced .review-card .review-footer a {
    color: var(--pkg-gold) !important;
}

.pkg-trust-section .testimonials-enhanced .review-card .review-footer a:hover {
    color: var(--pkg-gold-light) !important;
}

.pkg-trust-section .testimonials-enhanced .review-card .star-rating {
    color: #C9A430 !important;
}

.pkg-trust-section .testimonials-enhanced .review-card .badge-success {
    background-color: rgba(40, 167, 69, 0.2) !important;
    border-color: rgba(40, 167, 69, 0.4) !important;
    color: #28a745 !important;
}

/* Avatar placeholders */
.pkg-trust-section .testimonials-enhanced .avatar-placeholder {
    background: rgba(196, 149, 106, 0.2) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Container spacing fix */
.pkg-trust-section .testimonials-enhanced .container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.pkg-trust-section .testimonials-enhanced .row {
    margin-left: -15px;
    margin-right: -15px;
}

.pkg-trust-section .testimonials-enhanced .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pkg-trust-section .testimonials-enhanced .review-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .pkg-trust-section .testimonials-enhanced .section-heading {
        margin-bottom: 32px !important;
    }
    
    .pkg-trust-section .testimonials-enhanced .featured-testimonial {
        margin-bottom: 32px !important;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.pkg-faq-section {
    background: #0d1117;
}

.pkg-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.pkg-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.pkg-faq-item:hover {
    border-color: rgba(196, 149, 106, 0.3);
}

.pkg-faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: background 0.3s ease;
}

.pkg-faq-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pkg-faq-trigger span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkg-faq-trigger span i {
    color: var(--pkg-gold);
}

.pkg-faq-icon {
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.pkg-faq-trigger:not(.collapsed) .pkg-faq-icon {
    transform: rotate(180deg);
}

.pkg-faq-content {
    padding: 0 24px 20px;
}

.pkg-faq-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.pkg-faq-content p:last-child {
    margin-bottom: 0;
}

.pkg-faq-content strong {
    color: #fff;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.pkg-final-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0d12 0%, #0d1117 100%);
    position: relative;
}

.pkg-final-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(196, 149, 106, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(201, 164, 48, 0.05) 0%, transparent 50%);
}

.pkg-final-content {
    position: relative;
    text-align: center;
}

.pkg-final-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.pkg-final-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.pkg-final-packages {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.pkg-final-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 40px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.pkg-final-card:hover {
    transform: translateY(-4px);
}

.pkg-final-card.pkg-starter:hover {
    border-color: rgba(196, 149, 106, 0.4);
}

.pkg-final-card.pkg-explorer:hover {
    border-color: rgba(201, 164, 48, 0.4);
}

.pkg-final-card.pkg-ultimate:hover {
    border-color: rgba(184, 134, 11, 0.4);
}

.pkg-final-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C9A430, #D4B94D);
    color: #0d1117;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pkg-final-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.pkg-final-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--pkg-gold);
    margin-bottom: 20px;
}

.pkg-final-card.pkg-explorer .pkg-final-price {
    color: #C9A430;
}

.pkg-final-card.pkg-ultimate .pkg-final-price {
    color: var(--pkg-ultimate-color);
}

.pkg-final-popular-ultimate {
    background: var(--pkg-ultimate-gradient);
}

.pkg-btn-final {
    display: block;
    padding: 12px 24px;
    background: rgba(196, 149, 106, 0.1);
    border: 1px solid rgba(196, 149, 106, 0.3);
    color: var(--pkg-gold);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pkg-btn-final:hover {
    background: var(--pkg-gold);
    color: #0d1117;
    text-decoration: none;
}

.pkg-btn-final-gold {
    background: rgba(201, 164, 48, 0.1);
    border-color: rgba(201, 164, 48, 0.3);
    color: #C9A430;
}

.pkg-btn-final-gold:hover {
    background: #C9A430;
    color: #0d1117;
}

.pkg-btn-final-ultimate {
    background: rgba(184, 134, 11, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
    color: var(--pkg-ultimate-color);
}

.pkg-btn-final-ultimate:hover {
    background: var(--pkg-ultimate-color);
    color: #0d1117;
}

.pkg-btn-final-family {
    background: rgba(196, 149, 106, 0.1);
    border-color: rgba(196, 149, 106, 0.3);
    color: var(--pkg-gold);
}

.pkg-btn-final-family:hover {
    background: var(--pkg-gold);
    color: #0d1117;
}

/* ========================================
   STICKY CTA BAR
   ======================================== */
.pkg-sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    z-index: 999;
    transition: bottom 0.3s ease;
}

.pkg-sticky-cta.visible {
    bottom: 0;
}

.pkg-sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.pkg-sticky-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.pkg-sticky-buttons {
    display: flex;
    gap: 12px;
}

.pkg-sticky-btn {
    padding: 10px 24px;
    background: rgba(196, 149, 106, 0.1);
    border: 1px solid rgba(196, 149, 106, 0.3);
    color: var(--pkg-gold);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pkg-sticky-btn:hover {
    background: var(--pkg-gold);
    color: #0d1117;
    text-decoration: none;
}

.pkg-sticky-btn-gold {
    background: rgba(201, 164, 48, 0.1);
    border-color: rgba(201, 164, 48, 0.3);
    color: #C9A430;
}

.pkg-sticky-btn-gold:hover {
    background: #C9A430;
    color: #0d1117;
}

.pkg-sticky-btn-ultimate {
    background: rgba(184, 134, 11, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
    color: var(--pkg-ultimate-color);
}

.pkg-sticky-btn-ultimate:hover {
    background: var(--pkg-ultimate-color);
    color: #0d1117;
}

@media (max-width: 768px) {
    .pkg-sticky-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .pkg-sticky-buttons {
        width: 100%;
    }
    
    .pkg-sticky-btn {
        flex: 1;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .pkg-section {
        padding: 80px 0;
    }
    
    .pkg-hero {
        padding: 100px 24px 60px;
    }
    
    .pkg-package-card.pkg-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pkg-hero-stats {
        gap: 24px;
    }
    
    .pkg-stat-divider {
        display: none;
    }
    
    .pkg-comparison-table {
        min-width: 800px;
    }
    
    .pkg-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .pkg-scroll-progress,
    .pkg-page-nav,
    .pkg-back-to-top,
    .pkg-sticky-cta,
    .pkg-scroll-indicator,
    .pkg-hero-cta {
        display: none !important;
    }
    
    .pkg-main {
        background: white !important;
        color: black !important;
    }
    
    .pkg-hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .pkg-section {
        padding: 40px 0;
    }
}

/* ========================================
   RELATED PRODUCTS
   ======================================== */
.packages-related-products {
    padding: 60px 0;
    background: #0a0d12;
}

.packages-related-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 700;
}

.packages-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .packages-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .packages-related-grid {
        grid-template-columns: 1fr;
    }
}

.packages-related-card {
    background: #162029;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.packages-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 149, 106, 0.2);
    border-color: var(--pkg-gold);
}

.packages-related-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.packages-related-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.packages-related-content h4 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 600;
}

.packages-related-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.packages-related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pkg-gold);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    margin-top: auto;
}

.packages-related-link:hover {
    color: var(--pkg-gold-light);
    text-decoration: underline;
}

.packages-related-link i {
    transition: transform 0.2s ease;
}

.packages-related-link:hover i {
    transform: translateX(4px);
}

/* ========================================
   FAMILY PACK SECTION
   ======================================== */
.pkg-family-section {
    background: linear-gradient(180deg, #0a0d12 0%, #0d1117 100%);
    padding: 120px 0;
}

.pkg-family-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(196, 149, 106, 0.2);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pkg-family-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pkg-family-card:hover::before {
    opacity: 1;
}

.pkg-family-card:hover {
    border-color: rgba(196, 149, 106, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(196, 149, 106, 0.2);
}

.pkg-family-header {
    margin-bottom: 32px;
}

.pkg-family-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 149, 106, 0.1);
    border: 1px solid rgba(196, 149, 106, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pkg-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.pkg-family-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.pkg-family-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
}

.pkg-family-members {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pkg-family-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pkg-member-icon {
    width: 80px;
    height: 80px;
    background: rgba(196, 149, 106, 0.1);
    border: 2px solid rgba(196, 149, 106, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pkg-family-card:hover .pkg-member-icon {
    background: rgba(196, 149, 106, 0.2);
    border-color: rgba(196, 149, 106, 0.5);
    transform: scale(1.05);
}

.pkg-member-icon i {
    font-size: 2rem;
    color: var(--pkg-gold);
}

.pkg-family-member span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.pkg-family-plus {
    color: var(--pkg-gold);
    font-size: 1.5rem;
    opacity: 0.6;
}

.pkg-family-price {
    margin-bottom: 40px;
}

.pkg-family-price-main {
    margin-bottom: 8px;
}

.pkg-family-price-original {
    display: block;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pkg-family-price-current {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--pkg-gold);
    line-height: 1;
}

.pkg-family-price-label {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.pkg-family-savings {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 16px;
}

.pkg-family-features {
    text-align: left;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 24px;
}

.pkg-family-features h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
}

.pkg-family-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-family-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.pkg-family-features li:last-child {
    border-bottom: none;
}

.pkg-family-features li i {
    color: var(--pkg-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.pkg-family-info {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    text-align: left;
}

.pkg-family-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.pkg-family-info i {
    color: #17a2b8;
    margin-right: 8px;
}

.pkg-family-cta {
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.pkg-btn-family {
    background: var(--pkg-gold-gradient);
    box-shadow: 0 8px 32px rgba(196, 149, 106, 0.3);
}

.pkg-btn-family:hover {
    box-shadow: 0 12px 40px rgba(196, 149, 106, 0.4);
}

.pkg-final-family {
    margin-top: 48px;
}

.pkg-final-family-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(196, 149, 106, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.pkg-final-family-card:hover {
    border-color: rgba(196, 149, 106, 0.4);
    transform: translateY(-4px);
}

.pkg-final-family-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pkg-final-family-header i {
    font-size: 1.5rem;
    color: var(--pkg-gold);
}

.pkg-final-family-header h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.pkg-final-family-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.pkg-final-family-price {
    margin-bottom: 24px;
}

.pkg-final-family-price-original {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pkg-final-family-price-current {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--pkg-gold);
    line-height: 1;
}

.pkg-final-family-price-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .pkg-family-card {
        padding: 32px 24px;
    }
    
    .pkg-family-title {
        font-size: 2rem;
    }
    
    .pkg-family-price-current {
        font-size: 3rem;
    }
    
    .pkg-family-members {
        gap: 16px;
    }
    
    .pkg-member-icon {
        width: 60px;
        height: 60px;
    }
    
    .pkg-member-icon i {
        font-size: 1.5rem;
    }
}
