/* ============================================
   Cinnamon Travels — Redesigned Stylesheet
   Design: Warm Professional Travel Company
   Palette: Navy + Cinnamon/Amber + Warm White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* --- Variables --- */
:root {
    --color-navy: #0f1b3d;
    --color-navy-light: #1a2b57;
    --color-navy-soft: #243566;

    --color-cinnamon: #c47a3a;
    --color-cinnamon-dark: #a8642a;
    --color-cinnamon-light: #e6a96e;
    --color-amber: #f5a623;
    --color-amber-light: #ffd28e;

    --color-bg-white: #ffffff;
    --color-bg-warm: #faf8f5;
    --color-bg-cream: #f5f0ea;
    --color-bg-card: #ffffff;

    --color-text-heading: #0f1b3d;
    --color-text-body: #4a5568;
    --color-text-muted: #718096;
    --color-text-white: #ffffff;
    --color-text-light-on-dark: #c8d6e5;

    --color-border: #e8e0d6;
    --color-border-dark: rgba(255, 255, 255, 0.12);

    --shadow-sm: 0 1px 3px rgba(15, 27, 61, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 27, 61, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 27, 61, 0.12);
    --shadow-card: 0 2px 12px rgba(15, 27, 61, 0.06);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-body);
    background: var(--color-bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-cinnamon);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-cinnamon-dark);
}

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5 {
    color: var(--color-text-heading);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
}

h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    color: var(--color-text-body);
    line-height: 1.8;
}

.text-cinnamon {
    color: var(--color-cinnamon);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 0 24px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text-heading);
}

.navbar-logo {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--color-cinnamon) 0%, var(--color-amber) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.navbar-brand-text h3 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-navy);
}

.navbar-brand-text span {
    font-size: 0.65rem;
    color: var(--color-cinnamon);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar-links a {
    color: var(--color-text-body);
    font-size: 0.9rem;
    font-weight: 500;
}

.navbar-links a:hover {
    color: var(--color-navy);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: var(--radius-xs);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cinnamon) 0%, var(--color-cinnamon-dark) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(196, 122, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 122, 58, 0.4);
    color: white;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    color: white;
}

.btn-navy {
    background: var(--color-navy);
    color: white;
}

.btn-navy:hover {
    background: var(--color-navy-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 27, 61, 0.3);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 0;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 27, 61, 0.88) 0%,
            rgba(15, 27, 61, 0.65) 50%,
            rgba(15, 27, 61, 0.45) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(196, 122, 58, 0.2);
    color: var(--color-cinnamon-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(196, 122, 58, 0.3);
}

.hero-badge::before {
    content: '✈';
    font-size: 14px;
}

.hero h1 {
    color: white;
    margin-bottom: 24px;
    font-size: 3.4rem;
}

.hero h1 .highlight {
    color: var(--color-cinnamon-light);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-light-on-dark);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Status Card on Hero */
.status-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.status-header h3 {
    color: white;
    font-size: 1rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #34d399;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
    }
}

.status-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 12px;
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-label {
    font-size: 0.7rem;
    color: var(--color-cinnamon-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 4px;
}

.status-value {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--color-navy);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-cinnamon-light);
    margin-bottom: 4px;
}

.stat-item p {
    color: var(--color-text-light-on-dark);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== SERVICES ===== */
.section {
    padding: 100px 0;
}

.section-warm {
    background: var(--color-bg-warm);
}

.section-cream {
    background: var(--color-bg-cream);
}

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

.section-label {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-cinnamon);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-navy .section-label {
    color: var(--color-cinnamon-light);
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-navy .section-title {
    color: white;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
}

.section-navy .section-subtitle {
    color: var(--color-text-light-on-dark);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cinnamon), var(--color-amber));
    opacity: 0;
    transition: var(--transition);
}

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

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(196, 122, 58, 0.08) 0%, rgba(245, 166, 35, 0.08) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 122, 58, 0.12);
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ===== ABOUT / TEAM ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 27, 61, 0.9);
    backdrop-filter: blur(12px);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.about-image-badge span {
    color: var(--color-cinnamon-light);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.team-row {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    flex: 1;
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-soft) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.team-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.team-role {
    font-size: 0.72rem;
    color: var(--color-cinnamon);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ===== TRANSPARENCY ===== */
.transparency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.transparency-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius);
    padding: 36px;
}

.transparency-card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.transparency-card h3 {
    color: var(--color-cinnamon-light);
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.transparency-card p {
    color: var(--color-text-light-on-dark);
    font-size: 0.95rem;
}

.transparency-card strong {
    color: white;
}

/* ===== INFRASTRUCTURE ===== */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.infra-card {
    text-align: center;
    padding: 36px 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: white;
    transition: var(--transition);
}

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

.infra-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-warm);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    border: 1px solid var(--color-border);
}

.infra-card h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.infra-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--color-text-light-on-dark);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-bg-warm);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    color: var(--color-navy);
}

.footer-tagline {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.footer-contact strong {
    color: var(--color-text-heading);
}

.footer-contact a {
    color: var(--color-text-muted);
}

.footer-contact a:hover {
    color: var(--color-cinnamon);
}

.footer-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--color-cinnamon);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-navy);
    border-top: 1px solid var(--color-border-dark);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 9999;
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--color-text-light-on-dark);
    margin: 0;
}

.cookie-banner a {
    color: var(--color-cinnamon-light);
}

.cookie-btn {
    padding: 8px 20px;
    background: var(--color-cinnamon);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn:hover {
    background: var(--color-cinnamon-dark);
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
    background: var(--color-navy);
    padding: 120px 0 60px;
    text-align: center;
}

.legal-hero h1 {
    color: white;
    margin-bottom: 8px;
    font-size: 2.5rem;
}

.legal-hero .legal-date {
    color: var(--color-text-light-on-dark);
    font-size: 0.9rem;
}

.legal-content {
    padding: 60px 0 80px;
    background: var(--color-bg-white);
}

.legal-container {
    max-width: 780px;
    margin: 0 auto;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-back:hover {
    color: var(--color-cinnamon);
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 44px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    color: var(--color-navy);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--color-cinnamon);
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    color: var(--color-text-body);
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--color-text-heading);
}

/* Trust Center Cards */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.trust-card {
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.trust-card:hover {
    box-shadow: var(--shadow-md);
}

.trust-card h3 {
    color: var(--color-cinnamon);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.trust-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
}

.trust-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.trust-card li {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .status-card {
        max-width: 480px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .infra-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .transparency-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero .container {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .navbar-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .team-row {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .legal-hero h1 {
        font-size: 1.8rem;
    }
}