/* ============================================================
   DISCOVER PHOENICIA — Premium Tourism Website
   Design system inspired by Visit Qatar & award-winning tourism sites
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Colors */
    --gold: #C9A96E;
    --gold-light: #E8D5A3;
    --gold-dark: #8B6914;
    --deep-navy: #0A0E1A;
    --navy: #0F1628;
    --navy-mid: #1A2340;
    --dark-bg: #06090F;
    --surface: #111827;
    --surface-alt: #1C2537;
    --white: #FFFFFF;
    --cream: #FDF8F0;
    --muted: rgba(255, 255, 255, 0.55);
    --text-primary: #F0EDE8;
    --text-secondary: rgba(240, 237, 232, 0.72);
    --border: rgba(201, 169, 110, 0.2);
    --border-light: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-cormorant: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad: 100px;
    --container-max: 1240px;
    --radius: 16px;
    --radius-sm: 8px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.35s var(--ease);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.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: 12px;
    text-decoration: none;
}
.logo-emblem {
    width: 32px;
    height: 38px;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(201, 169, 110, 0.45));
    flex-shrink: 0;
}
.logo-phoen-svg {
    width: 100%;
    height: 100%;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-main {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    color: var(--white);
    text-transform: uppercase;
}
.logo-sub {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.8);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover { color: var(--gold); }
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--deep-navy) !important;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    margin-left: 8px;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
    color: var(--deep-navy) !important;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.05) translateY(0); }
    100% { transform: scale(1.12) translateY(-1%); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 9, 15, 0.82) 0%,
        rgba(10, 14, 26, 0.6) 50%,
        rgba(6, 9, 15, 0.75) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 80px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    animation: fadeInDown 0.8s var(--ease) both;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
}
.hero-title-line {
    display: block;
    overflow: hidden;
}
.hero-title .line-1 { animation: fadeInUp 0.9s 0.2s var(--ease) both; }
.hero-title .line-2 { animation: fadeInUp 0.9s 0.4s var(--ease) both; color: var(--gold); font-style: italic; }
.hero-title .line-3 { animation: fadeInUp 0.9s 0.6s var(--ease) both; }

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.9s 0.7s var(--ease) both;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 72px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s 0.9s var(--ease) both;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #B8862A 100%);
    color: var(--deep-navy);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(201, 169, 110, 0.55);
    color: var(--deep-navy);
}
.btn-ghost {
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--white);
    color: var(--deep-navy);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    color: var(--deep-navy);
}
.btn.full { width: 100%; justify-content: center; }
.play-icon {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.play-icon svg { width: 12px; height: 12px; margin-left: 2px; }

.hero-stats {
    display: flex;
    gap: 0;
    align-items: center;
    animation: fadeInUp 0.9s 1.1s var(--ease) both;
    flex-wrap: wrap;
    gap: 4px;
}
.stat-item { text-align: left; }
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    margin: 0 28px;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s 1.5s var(--ease) both;
}
.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 50px; }
    50% { opacity: 0.4; height: 30px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-banner {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
    overflow: hidden;
    padding: 16px 0;
    white-space: nowrap;
}
.marquee-track {
    display: inline-block;
    animation: marquee 28s linear infinite;
    will-change: transform;
}
.marquee-track span {
    display: inline;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--deep-navy);
    padding: 0 10px;
}
.marquee-track .sep { color: rgba(10, 14, 26, 0.4); padding: 0 4px; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}
.section-label.light { color: rgba(201, 169, 110, 0.85); }
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }
.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 0;
}
.section-header {
    margin-bottom: 60px;
}
.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-header.center .section-title { max-width: 600px; }

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
    padding: var(--section-pad) 0;
    background: var(--surface);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.intro-body {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 16px;
}
.intro-body:last-of-type { margin-bottom: 32px; }
.intro-highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.highlight-item:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.35);
    transform: translateX(6px);
}
.highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.highlight-icon svg { width: 24px; height: 24px; }
.highlight-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.highlight-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.intro-visual { position: relative; }
.intro-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}
.intro-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.intro-img-wrapper:hover .intro-img { transform: scale(1.04); }
.img-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.img-label span {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}
.img-label em {
    font-size: 0.78rem;
    color: var(--gold-light);
    font-style: italic;
}
.intro-accent-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius);
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(201, 169, 110, 0.3);
}
.accent-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    line-height: 1;
    margin-bottom: 6px;
}
.accent-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(10, 14, 26, 0.7);
    line-height: 1.3;
    max-width: 120px;
    text-align: center;
}

/* ============================================================
   EXPERIENCES SECTION
   ============================================================ */
.experiences-section {
    padding: var(--section-pad) 0;
    background: var(--dark-bg);
}
.experiences-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}
.exp-card--large { grid-row: span 1; }
.exp-card--wide { grid-column: span 2; }
.exp-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    cursor: pointer;
    background: var(--surface);
}
.exp-card--large { min-height: 480px; }
.exp-card--wide { min-height: 300px; }
.exp-card-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.exp-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.exp-card:hover .exp-card-img { transform: scale(1.07); }
.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 9, 15, 0.95) 0%,
        rgba(6, 9, 15, 0.5) 45%,
        rgba(6, 9, 15, 0.1) 100%
    );
    transition: var(--transition);
}
.exp-card:hover .exp-card-overlay {
    background: linear-gradient(
        to top,
        rgba(6, 9, 15, 0.97) 0%,
        rgba(6, 9, 15, 0.6) 55%,
        rgba(6, 9, 15, 0.2) 100%
    );
}
.exp-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    z-index: 2;
    transform: translateY(8px);
    transition: transform 0.5s var(--ease);
}
.exp-card:hover .exp-card-content { transform: translateY(0); }
.exp-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--deep-navy);
    background: var(--gold);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.exp-title {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}
.exp-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 380px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s 0.1s var(--ease), transform 0.4s 0.1s var(--ease);
}
.exp-card:hover .exp-desc { opacity: 1; transform: translateY(0); }
.exp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 169, 110, 0.4);
    padding: 10px 18px;
    border-radius: 50px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    background: rgba(201, 169, 110, 0.08);
}
.exp-btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.exp-btn:hover {
    background: var(--gold);
    color: var(--deep-navy);
    border-color: var(--gold);
}
.exp-btn:hover svg { transform: translateX(4px); }
.exp-number {
    position: absolute;
    top: 24px; right: 28px;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    z-index: 2;
    transition: color 0.4s;
    pointer-events: none;
}
.exp-card:hover .exp-number { color: rgba(201, 169, 110, 0.15); }

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.destinations-section {
    padding: var(--section-pad) 0;
    background: var(--surface);
}
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.dest-card {
    background: var(--surface-alt);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.dest-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.dest-card:hover {
    transform: translateY(-6px);
    border-color: var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 169, 110, 0.15);
}
.dest-card:hover::before { opacity: 1; }
.dest-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 10px;
    padding: 8px;
}
.dest-icon svg { width: 100%; height: 100%; }
.dest-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.dest-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}
.dest-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.25);
    padding: 5px 12px;
    border-radius: 50px;
}

/* ============================================================
   FOOD SECTION
   ============================================================ */
.food-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.food-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.food-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}
.food-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(6, 9, 15, 0.95) 0%,
        rgba(10, 14, 26, 0.88) 45%,
        rgba(6, 9, 15, 0.55) 100%
    );
}
.food-content { position: relative; z-index: 2; }
.food-text { max-width: 560px; }
.food-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin-bottom: 36px;
}
.food-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 40px;
}
.food-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 16px;
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.food-feature:hover {
    background: rgba(201, 169, 110, 0.12);
    border-color: rgba(201, 169, 110, 0.3);
    color: var(--gold-light);
}
.ff-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.ff-icon svg { width: 20px; height: 20px; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: var(--section-pad) 0;
    background: var(--dark-bg);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.test-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
}
.test-card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.test-card--featured {
    background: linear-gradient(135deg, var(--navy-mid), var(--surface-alt));
    border-color: var(--border);
    transform: scale(1.04);
}
.test-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.test-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.test-quote {
    font-family: var(--font-cormorant);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.65;
    margin-bottom: 24px;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.test-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--deep-navy);
    flex-shrink: 0;
}
.test-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}
.test-author span {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
    padding: var(--section-pad) 0;
    background: var(--surface);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-visual {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.why-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}
.why-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: linear-gradient(135deg, var(--deep-navy), var(--navy-mid));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.wb-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.wb-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    max-width: 120px;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: default;
}
.why-item:hover {
    background: rgba(201, 169, 110, 0.05);
    border-color: var(--border);
    transform: translateX(8px);
}
.why-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    color: var(--gold);
}
.why-icon svg { width: 22px; height: 22px; }
.why-item:hover .why-icon {
    background: rgba(201, 169, 110, 0.18);
    border-color: rgba(201, 169, 110, 0.4);
}
.why-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.why-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, var(--deep-navy), var(--navy-mid), var(--dark-bg));
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent 60%);
    pointer-events: none;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.contact-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
}
.cd-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 8px;
    color: var(--gold);
}
.cd-icon svg { width: 16px; height: 16px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

/* Form */
.contact-form-wrapper {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--surface-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 13px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.04);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}
.form-group select option {
    background: var(--surface);
    color: var(--text-primary);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
    display: none;
    margin-top: 14px;
    padding: 14px 18px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: #86efac;
    text-align: center;
}
.form-success.show { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--deep-navy);
    border-top: 1px solid var(--border-light);
    padding-top: 0;
    overflow: hidden;
}
.footer-decor {
    padding: 14px 0;
    background: rgba(201, 169, 110, 0.04);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}
.footer-decor span {
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    color: rgba(201, 169, 110, 0.18);
    user-select: none;
}
.footer-brand {
    padding-top: 56px;
}
.footer-phoen-script {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    color: rgba(201, 169, 110, 0.25) !important;
    margin-top: 12px;
    font-family: serif;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
}
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand p {
    font-size: 0.87rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
}
.footer-links-group h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-links-group li { margin-bottom: 12px; }
.footer-links-group a {
    font-size: 0.87rem;
    color: var(--text-secondary);
    transition: color 0.25s;
}
.footer-links-group a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: var(--transition);
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(201, 169, 110, 0.55);
}
.back-to-top svg { width: 20px; height: 20px; }

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

/* ============================================================
   HERO PHOENICIAN STRIP
   ============================================================ */
.hero-phoen-strip {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    z-index: 2;
    display: flex;
    gap: 20px;
    pointer-events: none;
    opacity: 0.12;
    right: -80px;
}
.hero-phoen-strip span {
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 0.15em;
}

/* ============================================================
   EXP CARD CATEGORY ICON
   ============================================================ */
.exp-cat-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    margin-bottom: 10px;
    opacity: 0.8;
}
.exp-cat-icon svg { width: 36px; height: 36px; }

/* ============================================================
   HERITAGE / PHOENICIAN SECTION
   ============================================================ */
.heritage-section {
    padding: var(--section-pad) 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}
.heritage-bg-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center top, rgba(201, 169, 110, 0.06), transparent 65%);
    pointer-events: none;
}
.heritage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.heritage-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.heritage-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.heritage-card:hover {
    transform: translateY(-6px);
    border-color: var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.heritage-card:hover::before { opacity: 1; }
.heritage-icon {
    width: 52px;
    height: 52px;
    color: var(--gold);
    margin-bottom: 16px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: var(--transition);
}
.heritage-icon svg { width: 100%; height: 100%; }
.heritage-card:hover .heritage-icon {
    background: rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.4);
}
.heritage-date {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    opacity: 0.75;
}
.heritage-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.25;
}
.heritage-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
.heritage-quote {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 820px;
    margin: 0 auto;
}
.hq-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.35), transparent);
}
.heritage-quote blockquote {
    font-family: var(--font-cormorant);
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(240, 237, 232, 0.7);
    text-align: center;
    line-height: 1.6;
    flex-shrink: 0;
    max-width: 580px;
}

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section {
    padding: var(--section-pad) 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}
.shop-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.shop-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
}
.shop-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
}
.shop-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 12px 16px;
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.shop-highlight:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateX(4px);
}
.sh-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sh-icon svg { width: 20px; height: 20px; }
.shop-visual {
    position: relative;
    border-radius: 20px;
}
.shop-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    transition: transform 0.8s var(--ease);
}
.shop-visual:hover .shop-img { transform: scale(1.03); }
.shop-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 16px 40px rgba(201, 169, 110, 0.3);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--deep-navy);
    letter-spacing: 0.05em;
}
.shop-badge svg { width: 18px; height: 18px; color: var(--deep-navy); }

/* ============================================================
   TESTIMONIALS — QUOTE ICON
   ============================================================ */
.test-quote-icon {
    margin-bottom: 16px;
    color: var(--gold);
}
.test-quote-icon svg { width: 28px; height: 21px; }

/* Intersection Observer fade-in */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .intro-grid { gap: 48px; }
    .why-grid { gap: 48px; }
    .contact-grid { gap: 48px; }
    .shop-wrapper { gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .heritage-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    :root { --section-pad: 72px; }

    .nav-links { display: none; flex-direction: column; gap: 8px; }
    .nav-links.open {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(6, 9, 15, 0.97);
        backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        z-index: 999;
        padding: 40px;
        gap: 24px;
    }
    .nav-links.open .nav-link {
        font-size: 1.3rem;
        text-align: center;
        padding: 10px 24px;
    }
    .nav-links.open .nav-cta { margin-left: 0; }
    .nav-toggle { display: flex; z-index: 1001; position: relative; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

    .intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .intro-accent-card { bottom: -16px; right: 16px; }
    .experiences-grid { grid-template-columns: 1fr 1fr; }
    .exp-card--large { grid-column: 1 / -1; min-height: 380px; }
    .exp-card--wide { grid-column: 1 / -1; }
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .heritage-grid { grid-template-columns: 1fr 1fr; }
    .shop-wrapper { grid-template-columns: 1fr; }
    .shop-img { height: 320px; }
    .shop-badge { bottom: -16px; right: 16px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .test-card--featured { transform: scale(1); }
    .test-card--featured:hover { transform: translateY(-4px); }
    .why-grid { grid-template-columns: 1fr; }
    .why-img { height: 360px; }
    .why-badge { bottom: -20px; left: 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-phoen-strip { display: none; }
}

@media (max-width: 600px) {
    :root { --section-pad: 56px; }

    .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 16px; flex-direction: row; flex-wrap: wrap; }
    .stat-divider { display: none; }
    .experiences-grid { grid-template-columns: 1fr; }
    .exp-card--large { min-height: 320px; }
    .destinations-grid { grid-template-columns: 1fr; }
    .heritage-grid { grid-template-columns: 1fr; }
    .food-features { grid-template-columns: 1fr; }
    .shop-highlights { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .contact-form-wrapper { padding: 28px 20px; }
    .intro-accent-card { position: relative; bottom: auto; right: auto; display: inline-block; margin-top: 20px; }
    .why-badge { position: relative; bottom: auto; left: auto; display: inline-flex; margin-top: 20px; }
    .heritage-quote { flex-direction: column; gap: 16px; }
    .hq-line { display: none; }
}
