/* ============================================================
   WOW × 5-Star Hotel Pitch — Premium Design System
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --gold-100: #fdf8e8;
    --gold-200: #f5e6b8;
    --gold-300: #f0d78c;
    --gold-400: #dbb84d;
    --gold-500: #c9a84c;
    --gold-600: #a8872e;
    --gold-700: #7a6320;

    --navy-50: #eef2f9;
    --navy-100: #c7d4ea;
    --navy-200: #8fa7d4;
    --navy-300: #5476ab;
    --navy-400: #2e5fb0;
    --navy-500: #1a3a6e;
    --navy-600: #142d57;
    --navy-700: #0d1f3c;
    --navy-800: #091528;
    --navy-900: #050c18;

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 140px);
    --container-max: 1280px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    margin-bottom: 24px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
    border-radius: 3px;
    animation: preloaderFill 1.5s var(--ease-out) forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

.preloader-text {
    color: var(--gray-400);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
    background: rgba(9, 21, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-wow {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.logo-divider {
    color: var(--gray-400);
    font-size: 1.2rem;
    opacity: 0.5;
}

.logo-hotel {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    font-style: italic;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-400);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-800) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 21, 40, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--gold-400);
}

/* --- Hero Section --- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(9,21,40,0.7) 0%,
        rgba(9,21,40,0.6) 40%,
        rgba(9,21,40,0.85) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-400);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--duration) var(--delay) infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-300);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-800);
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--gold-400);
    color: var(--gold-300);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-400);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-400);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-400), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Animation Classes --- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Section Base --- */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-dark {
    background: var(--navy-800);
    color: var(--white);
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-500);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-dark .section-tag {
    color: var(--gold-400);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-dark .section-title {
    color: var(--white);
}

.text-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.6);
}

/* --- Opportunity Section --- */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opp-card {
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
}

.opp-card-large {
    grid-column: 1 / -1;
    min-height: 360px;
}

.opp-card-inner {
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.opp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.opp-card-large:hover .opp-image {
    transform: scale(1.05);
}

.opp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(9,21,40,0.9) 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.opp-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 12px;
}

.opp-card-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.opp-card-overlay p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 600px;
}

.opp-stat-card {
    background: var(--gray-50);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease-out);
}

.opp-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.opp-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.opp-metric {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.opp-big-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-500);
}

.opp-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-500);
}

.opp-stat-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.dark-card {
    background: var(--navy-700) !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: var(--white);
    align-items: flex-start;
    text-align: left;
}

.dark-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gold-400);
}

.challenge-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

.challenge-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 0.75rem;
}

/* --- Strategy Timeline --- */
.strategy-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-400), var(--navy-600));
}

.strategy-phase {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.strategy-phase:last-child {
    margin-bottom: 0;
}

.phase-marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--navy-800), 0 0 20px rgba(201,168,76,0.3);
    z-index: 1;
}

.phase-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
}

.phase-content {
    flex: 1;
    padding-top: 4px;
}

.phase-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 8px;
}

.phase-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
}

.phase-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 16px;
}

.phase-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-pill {
    font-size: 0.8rem;
    padding: 6px 14px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50px;
    color: var(--gold-300);
    font-weight: 500;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy-50), var(--gold-100));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-500);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- Packages Section --- */
.recommendation-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 12px;
    padding: 20px 28px;
    margin-bottom: 48px;
}

.rec-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.rec-content {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.rec-content strong {
    color: var(--gold-400);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.package-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-color: rgba(201,168,76,0.3);
}

.package-featured {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold-500);
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(201,168,76,0.15);
}

.package-featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.package-elite {
    background: linear-gradient(180deg, rgba(201,168,76,0.12), rgba(201,168,76,0.03));
    border-color: var(--gold-400);
}

.package-popular-badge {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-800);
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.package-elite-badge {
    background: linear-gradient(135deg, var(--navy-500), var(--gold-500));
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.package-header {
    padding: 32px 24px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.package-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.package-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-400);
}

.amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-400);
}

.period {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.package-body {
    padding: 24px;
}

.package-category {
    margin-bottom: 20px;
}

.package-category h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.package-category ul li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.package-category ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-400);
    font-weight: 700;
    font-size: 0.75rem;
}

.package-addon {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--gold-300);
    text-align: center;
    margin-top: 8px;
}

.package-btn {
    display: block;
    margin: 16px 24px 24px;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s var(--ease-out);
}

.package-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.package-btn-featured {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-800);
    border: none;
}

.package-btn-featured:hover {
    box-shadow: var(--shadow-gold);
}

.package-btn-elite {
    background: linear-gradient(135deg, var(--navy-400), var(--gold-500));
    color: var(--white);
    border: none;
}

.package-btn-elite:hover {
    box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

/* --- Projections Section --- */
.projections-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.projection-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.projection-image {
    width: 100%;
    border-radius: 20px;
}

.projection-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.metric-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 20px 24px;
    transition: all 0.3s var(--ease-out);
}

.metric-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.metric-icon {
    font-size: 1.4rem;
}

.metric-header h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
}

.metric-bar-track {
    height: 8px;
    background: var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.metric-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--bar-color);
    border-radius: 8px;
    transition: width 1.2s var(--ease-out);
}

.metric-bar-fill.animate {
    width: calc(var(--target-width) * 1%);
}

.metric-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.metric-from {
    color: var(--gray-400);
}

.metric-to {
    color: var(--gray-700);
    font-weight: 600;
}

/* ROI Banner */
.roi-banner {
    display: flex;
    align-items: center;
    gap: 48px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(201,168,76,0.2);
    position: relative;
    overflow: hidden;
}

.roi-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.08), transparent);
    border-radius: 50%;
}

.roi-content {
    flex: 1;
}

.roi-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.roi-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.roi-content strong {
    color: var(--gold-400);
}

.roi-visual {
    flex-shrink: 0;
}

.roi-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(201,168,76,0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(201,168,76,0.3); }
    50% { box-shadow: 0 0 60px rgba(201,168,76,0.5); }
}

.roi-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-800);
}

.roi-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy-700);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Why Section --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 28px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.why-card:hover {
    background: rgba(201,168,76,0.05);
    border-color: rgba(201,168,76,0.2);
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* --- CTA Section --- */
.section-cta {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    position: relative;
    overflow: hidden;
    padding: var(--section-pad) 0;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gold-400);
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gold-400);
    bottom: -100px;
    left: -50px;
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--navy-300);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-contact-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.contact-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    transition: all 0.3s var(--ease-out);
}

.contact-card:hover {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 2rem;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-400);
    font-weight: 600;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.cta-location {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

/* --- Footer --- */
.footer {
    background: var(--navy-900);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

.footer-tagline {
    font-style: italic;
    color: rgba(255,255,255,0.3) !important;
    font-size: 0.8rem !important;
}

.footer-copy p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .opportunity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projections-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .package-featured {
        transform: none;
    }
    
    .package-featured:hover {
        transform: translateY(-8px);
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .roi-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .recommendation-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .strategy-phase {
        flex-direction: column;
        gap: 16px;
    }
    
    .timeline-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
