/* ============================================
   JOURNEO - GLOBAL STYLESHEET
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Core Palette */
    --black:        #0A0A0A;
    --off-black:    #111111;
    --dark:         #1A1A1A;
    --dark-mid:     #2A2A2A;
    --gray-dark:    #3D3D3D;
    --gray:         #6B6B6B;
    --gray-mid:     #9B9B9B;
    --gray-light:   #C8C8C8;
    --border:       #E5E5E5;
    --off-white:    #F8F7F5;
    --white:        #FFFFFF;

    /* Accent */
    --gold:         #D4A017;
    --gold-light:   #F0C040;
    --gold-dark:    #A67C00;
    --gold-bg:      #FFF8E7;

    /* Semantic */
    --success:      #2D8A5A;
    --warning:      #D4A017;
    --error:        #C0392B;
    --info:         #2980B9;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
    --font-serif:   'DM Serif Display', 'Georgia', serif;

    /* Spacing */
    --space-xs:     0.25rem;
    --space-sm:     0.5rem;
    --space-md:     1rem;
    --space-lg:     1.5rem;
    --space-xl:     2rem;
    --space-2xl:    3rem;
    --space-3xl:    4rem;
    --space-4xl:    6rem;
    --space-5xl:    8rem;

    /* Radius */
    --radius-sm:    4px;
    --radius-md:    8px;
    --radius-lg:    16px;
    --radius-xl:    24px;
    --radius-full:  9999px;

    /* Shadows */
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md:    0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.06);
    --shadow-lg:    0 10px 40px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
    --shadow-xl:    0 20px 60px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.08);
    --shadow-card:  0 2px 20px rgba(0,0,0,0.07);
    --shadow-gold:  0 4px 20px rgba(212,160,23,0.25);

    /* Transitions */
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast:     150ms;
    --dur-mid:      300ms;
    --dur-slow:     500ms;

    /* Layout */
    --container:    1280px;
    --header-h:     80px;
    --section-pad:  5rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease);
}

ul, ol { list-style: none; }

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

button { cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--off-black);
}

p { line-height: 1.75; color: var(--gray); }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-pad) 0;
}

.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 1.5rem; }

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.text-xs    { font-size: 0.75rem; }
.text-sm    { font-size: 0.875rem; }
.text-base  { font-size: 1rem; }
.text-lg    { font-size: 1.125rem; }
.text-xl    { font-size: 1.25rem; }
.text-2xl   { font-size: 1.5rem; }
.text-3xl   { font-size: 1.875rem; }
.text-4xl   { font-size: 2.25rem; }
.text-5xl   { font-size: 3rem; }

.font-light  { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semi   { font-weight: 600; }
.font-bold   { font-weight: 700; }

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.text-gold    { color: var(--gold); }
.text-gray    { color: var(--gray); }
.text-white   { color: var(--white); }
.text-dark    { color: var(--dark); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '✦';
    color: var(--gold);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--off-black);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.75;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--dur-mid) var(--ease);
    border: 2px solid transparent;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--off-black);
    color: var(--white);
    border-color: var(--off-black);
}
.btn-primary:hover {
    background: var(--dark-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--off-black);
    border-color: var(--off-black);
}
.btn-outline:hover {
    background: var(--off-black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--off-black);
}
.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-icon.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
}

.see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--off-black);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    white-space: nowrap;
}
.see-all-link:hover { color: var(--gold-dark); }

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.card:hover .card-img img {
    transform: scale(1.06);
}

.card-body {
    padding: 1.25rem;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.badge-gold    { background: var(--gold); color: var(--white); }
.badge-black   { background: var(--off-black); color: var(--white); }
.badge-green   { background: var(--success); color: var(--white); }
.badge-white   { background: var(--white); color: var(--off-black); }

/* ============================================
   PACKAGE CARDS
   ============================================ */
.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--dur-mid) var(--ease);
    border: 1px solid var(--border);
}

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

.package-card .card-img img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.package-card .wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: var(--gray);
    transition: all var(--dur-fast);
    z-index: 2;
}

.package-card .wishlist-btn:hover,
.package-card .wishlist-btn.active {
    color: #e74c3c;
    background: white;
}

.pkg-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--gray-mid);
    margin: 0.6rem 0;
    flex-wrap: wrap;
}

.pkg-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pkg-meta i { color: var(--gold); font-size: 0.7rem; }

.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

.pkg-price {
    display: flex;
    flex-direction: column;
}

.pkg-price .price-label {
    font-size: 0.7rem;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pkg-price .price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--off-black);
    font-family: var(--font-display);
}

.pkg-price .price-old {
    font-size: 0.82rem;
    color: var(--gray-mid);
    text-decoration: line-through;
}

.pkg-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.pkg-rating .stars { color: var(--gold); font-size: 0.7rem; }
.pkg-rating .count { color: var(--gray-mid); }

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.1rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--dark);
    font-size: 0.9rem;
    transition: all var(--dur-fast) var(--ease);
    outline: none;
    appearance: none;
}

.form-control:focus {
    border-color: var(--off-black);
    box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}

.form-control::placeholder { color: var(--gray-light); }

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-control-icon {
    position: relative;
}

.form-control-icon .form-control {
    padding-left: 2.75rem;
}

.form-control-icon .icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
    pointer-events: none;
    font-size: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-select {
    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='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ============================================
   TAGS / BADGES
   ============================================ */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    background: var(--off-white);
    color: var(--gray-dark);
    cursor: pointer;
    transition: all var(--dur-fast);
    border: 1.5px solid var(--border);
}

.tag:hover, .tag.active {
    background: var(--off-black);
    color: var(--white);
    border-color: var(--off-black);
}

.tag-gold { background: var(--gold-bg); color: var(--gold-dark); border-color: var(--gold-light); }
.tag-gold:hover { background: var(--gold); color: white; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: all var(--dur-mid) var(--ease);
}

.site-header.transparent {
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.site-header.scrolled .header-logo,
.site-header.scrolled .nav-link {
    color: var(--off-black);
}

.site-header.dark {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    transition: color var(--dur-fast);
}

.header-logo .logo-icon {
    color: var(--gold);
}

.header-logo .logo-text { letter-spacing: -0.01em; }

.site-header.scrolled .header-logo { color: var(--off-black); }

.header-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border-radius: var(--radius-md);
    transition: all var(--dur-fast);
    position: relative;
}

.site-header.scrolled .nav-link { color: var(--gray-dark); }
.site-header.dark .nav-link { color: rgba(255,255,255,0.85); }

.nav-link:hover, .nav-link.active {
    color: var(--gold-light) !important;
    background: rgba(255,255,255,0.08);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--off-black) !important;
    background: var(--off-white);
}

.nav-link .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform var(--dur-fast);
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 200px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--dur-mid) var(--ease);
    z-index: 100;
    border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.855rem;
    font-weight: 500;
    color: var(--gray-dark);
    border-radius: var(--radius-md);
    transition: all var(--dur-fast);
}

.dropdown-menu li a:hover {
    background: var(--off-white);
    color: var(--off-black);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--white);
    color: var(--off-black);
    border-radius: var(--radius-full);
    transition: all var(--dur-fast);
    border: 2px solid transparent;
}

.site-header.scrolled .btn-book {
    background: var(--off-black);
    color: var(--white);
}

.btn-book:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--dur-mid);
}

.site-header.scrolled .mobile-menu-toggle span { background: var(--off-black); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--off-black);
    color: var(--white);
}

.footer-trust-bar {
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.07);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,160,23,0.1);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.trust-text span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.footer-main {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo .logo-icon { color: var(--gold); }

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: all var(--dur-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--dur-fast);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.875rem;
    outline: none;
    transition: border-color var(--dur-fast);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-form button {
    padding: 0.8rem;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background var(--dur-fast);
}

.newsletter-form button:hover { background: var(--gold-dark); }

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.4rem;
}

.footer-contact-info i { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-nav a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    transition: color var(--dur-fast);
}

.footer-bottom-nav a:hover { color: var(--gold-light); }

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
    position: relative;
    padding: calc(var(--header-h) + 4rem) 0 4rem;
    background: var(--dark);
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(30,20,0,0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content .section-label { color: var(--gold-light); }

.page-hero-content .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    font-size: 1.05rem;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-top: 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-item a:hover { color: var(--gold-light); }

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255,255,255,0.3);
}

.breadcrumb-item.active { color: var(--gold-light); }

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--off-black);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   RATING STARS
   ============================================ */
.stars { color: var(--gold); }
.stars .fa-star-half-alt,
.stars .far { opacity: 0.5; }

/* ============================================
   ALERT / FLASH MESSAGES
   ============================================ */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #ecfdf5;
    color: var(--success);
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: var(--error);
    border: 1px solid #fecaca;
}

.alert-warning {
    background: var(--gold-bg);
    color: var(--gold-dark);
    border: 1px solid var(--gold-light);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    border: 1.5px solid var(--border);
    transition: all var(--dur-fast);
    cursor: pointer;
}

.page-link:hover, .page-link.active {
    background: var(--off-black);
    color: var(--white);
    border-color: var(--off-black);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--off-black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--dur-mid) var(--ease);
    box-shadow: var(--shadow-md);
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   OVERLAY & MODAL
   ============================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all var(--dur-mid);
}

.overlay.active { opacity: 1; visibility: visible; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .footer-col:nth-child(4),
    .footer-col:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    :root { --section-pad: 4rem; }

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

    .header-nav { display: none; }

    .mobile-menu-toggle { display: flex; }

    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem 1.5rem 2rem;
        box-shadow: var(--shadow-xl);
        z-index: 999;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }

    .header-nav.open .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .header-nav.open .nav-link {
        color: var(--gray-dark) !important;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .header-nav.open .nav-link:hover,
    .header-nav.open .nav-link.active {
        background: var(--off-white);
        color: var(--off-black) !important;
    }

    .header-nav.open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--off-white);
        padding: 0.25rem 0 0.25rem 1rem;
        margin-top: 0;
        border: none;
    }

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

    .trust-items { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 768px) {
    :root { --section-pad: 3rem; }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col.footer-brand {
        grid-column: span 2;
    }

    .section-header-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col.footer-brand { grid-column: auto; }
    .trust-items { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .footer-bottom-nav { justify-content: center; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.03); }
}

@keyframes shimmer {
    from { background-position: -200% 0; }
    to   { background-position: 200% 0; }
}

.animate-fade-up {
    animation: fadeUp 0.6s var(--ease) forwards;
}

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

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--off-white) 25%, var(--border) 50%, var(--off-white) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}
