/* ===================================================
   ADONIECE TRAVELS & RECRUITMENT LIMITED
   Premium Design System v2.0
   =================================================== */

/* ---- Custom Properties ---- */
:root {
    --navy: #0B1B35;
    --navy-light: #162D50;
    --navy-dark: #060F1F;
    --gold: #C9A96E;
    --gold-light: #D4B97A;
    --gold-dark: #B8944D;
    --gold-muted: rgba(201, 169, 110, 0.10);
    --cream: #FAFAF8;
    --warm: #F5F3EF;
    --surface: #F8F7F4;
    --text-primary: #0B1B35;
    --text-secondary: #64648B;
    --text-muted: #9494A8;
    --border: #E8E6E1;
    --border-light: #F0EDE8;
    --white: #FFFFFF;
    --danger: #DC3545;
    --success: #10B981;

    --shadow-xs: 0 1px 2px rgba(11, 27, 53, 0.04);
    --shadow-sm: 0 2px 8px rgba(11, 27, 53, 0.05);
    --shadow: 0 4px 16px rgba(11, 27, 53, 0.06);
    --shadow-md: 0 8px 30px rgba(11, 27, 53, 0.08);
    --shadow-lg: 0 20px 50px rgba(11, 27, 53, 0.10);
    --shadow-xl: 0 25px 65px rgba(11, 27, 53, 0.14);
    --shadow-gold: 0 8px 30px rgba(201, 169, 110, 0.22);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.35s;
    --duration-slow: 0.6s;
}

/* ---- Base ---- */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(201, 169, 110, 0.2);
    color: var(--navy);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

body {
    color: var(--text-primary);
}


/* ===== NAVIGATION ===== */

.nav-glass {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    color: var(--text-secondary);
    transition: color var(--duration) var(--ease);
    padding: 0.375rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--duration) var(--ease);
    border-radius: 1px;
}
.nav-link:hover,
.nav-link.active { color: var(--navy); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Mobile Menu */
#mobileMenu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
}
#mobileMenu.active {
    max-height: 600px;
    opacity: 1;
}
.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: all var(--duration) var(--ease);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--surface);
    color: var(--navy);
}


/* ===== HERO ===== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 45%, var(--navy) 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 25% 50%, rgba(201, 169, 110, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 40%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: 1;
}

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

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}
.hero-shape-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    top: -250px;
    right: -200px;
    animation: heroFloat 25s ease-in-out infinite;
}
.hero-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation: heroFloat 20s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -25px); }
    66% { transform: translate(-20px, 15px); }
}

/* Hero entrance */
.hero-fade {
    animation: heroFadeIn 0.9s var(--ease-out) forwards;
    opacity: 0;
}
.hero-fade-d1 { animation-delay: 0.15s; }
.hero-fade-d2 { animation-delay: 0.3s; }
.hero-fade-d3 { animation-delay: 0.45s; }
.hero-fade-d4 { animation-delay: 0.6s; }
.hero-fade-d5 { animation-delay: 0.75s; }

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stat bar floating over hero/next section */
.hero-stat-bar {
    position: relative;
    z-index: 10;
    margin-top: -3.5rem;
}


/* ===== BUTTONS ===== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
    border: 2px solid var(--gold);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
    border: 2px solid rgba(255,255,255,0.25);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--navy);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
    border: 2px solid var(--navy);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}
.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
    border: 2px solid var(--border);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}
.btn-outline:hover {
    border-color: var(--navy);
    background: var(--surface);
    transform: translateY(-2px);
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
    border: 2px solid var(--gold);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.9375rem; }


/* ===== SECTIONS ===== */

.section {
    padding: 5rem 0;
}
@media (min-width: 1024px) {
    .section { padding: 7rem 0; }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.25rem;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
    .section-title { font-size: 2.75rem; }
}
@media (min-width: 1024px) {
    .section-title { font-size: 3.125rem; }
}

.section-title-light {
    color: #fff;
}

.section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 580px;
}

.section-bg-warm { background: var(--warm); }
.section-bg-cream { background: var(--cream); }
.section-bg-surface { background: var(--surface); }
.section-bg-navy {
    background: var(--navy);
    position: relative;
}
.section-bg-navy::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}


/* ===== SERVICE CARDS ===== */

.service-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration) var(--ease);
}
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    transition: all var(--duration) var(--ease);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.05);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--gold);
    transition: gap var(--duration) var(--ease);
}
.service-card:hover .service-card-link { gap: 0.625rem; }


/* ===== PROCESS / TIMELINE ===== */

.step-number {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    border: 2px solid rgba(201, 169, 110, 0.3);
    background: #fff;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 2;
    transition: all var(--duration) var(--ease);
}
.process-step:hover .step-number {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.process-connector {
    position: absolute;
    top: 34px;
    left: calc(50% + 42px);
    right: calc(-50% + 42px);
    height: 1px;
    background: var(--border);
    z-index: 1;
}


/* ===== TESTIMONIAL CARDS ===== */

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    transition: all var(--duration) var(--ease);
}
.testimonial-card:hover {
    box-shadow: var(--shadow);
}
.testimonial-quote {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 1.25rem;
    left: 2rem;
}

.star-rating { color: var(--gold); font-size: 0.8125rem; letter-spacing: 2px; }
.star-empty { color: var(--border); }


/* ===== FAQ ACCORDION ===== */

.faq-item {
    border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.375rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    transition: color var(--duration) var(--ease);
}
.faq-question:hover { color: var(--gold-dark); }

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: all var(--duration) var(--ease);
}
.faq-item.active .faq-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
}


/* ===== DESTINATION CARDS ===== */

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 340px;
    cursor: pointer;
}
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.destination-card:hover img {
    transform: scale(1.08);
}
.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 15, 31, 0.85) 0%, rgba(6, 15, 31, 0.15) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    transition: background 0.5s var(--ease);
}
.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(6, 15, 31, 0.9) 0%, rgba(6, 15, 31, 0.25) 60%, transparent 100%);
}
.destination-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}


/* ===== BLOG CARDS ===== */

.blog-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}
.blog-card-image {
    overflow: hidden;
}
.blog-card img {
    transition: transform 0.6s var(--ease);
}
.blog-card:hover img {
    transform: scale(1.05);
}
.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.post-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin: 2rem 0 0.75rem;
    color: var(--navy);
}
.post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: var(--navy);
}
.post-content p {
    margin-bottom: 1.25rem;
    line-height: 1.85;
    color: var(--text-secondary);
}
.post-content ul, .post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
    color: var(--text-secondary);
}
.post-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.post-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 0.25rem 0 0.25rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}


/* ===== FORM INPUTS ===== */

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    color: var(--navy);
    background: var(--surface);
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
    outline: none;
}
.form-input:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.08);
}
.form-input::placeholder {
    color: var(--text-muted);
}
.form-input.has-error {
    border-color: var(--danger);
    background: #fff;
}

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

.form-error {
    font-size: 0.75rem;
    color: var(--danger);
    margin-top: 0.375rem;
}

.form-select {
    appearance: none;
    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='%239494A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}


/* ===== PAGE HEADER / BREADCRUMB ===== */

.page-header {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 7.5rem 0 3.5rem;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.25), transparent);
}
.page-header-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
    transition: color var(--duration) var(--ease);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb-current { color: rgba(255,255,255,0.8); font-size: 0.8125rem; }


/* ===== CTA SECTION ===== */

.cta-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 55%);
    pointer-events: none;
}


/* ===== NEWSLETTER ===== */

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    color: var(--navy);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: all var(--duration) var(--ease);
}
.newsletter-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.08);
}


/* ===== WHATSAPP ===== */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all var(--duration) var(--ease);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}


/* ===== SCROLL ANIMATIONS ===== */

[data-aos] {
    opacity: 0;
    transition: all 0.7s var(--ease);
}
[data-aos="fade-up"] { transform: translateY(36px); }
[data-aos="fade-down"] { transform: translateY(-36px); }
[data-aos="fade-right"] { transform: translateX(-36px); }
[data-aos="fade-left"] { transform: translateX(36px); }
[data-aos="scale"] { transform: scale(0.92); }
[data-aos="fade"] { transform: none; }

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }


/* ===== UTILITIES ===== */

.gold-line {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-gold-muted { background: var(--gold-muted); }

.divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

.tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all var(--duration) var(--ease);
}
.tag-gold {
    background: var(--gold-muted);
    color: var(--gold-dark);
}
.tag-navy {
    background: rgba(11, 27, 53, 0.06);
    color: var(--navy);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

/* Pattern background */
.bg-pattern {
    background-image:
        linear-gradient(rgba(11, 27, 53, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 27, 53, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .hero { min-height: 92vh; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.875rem; }
    .hero-stat-bar { margin-top: -2rem; }
    .page-header { padding: 6.5rem 0 2.5rem; }
    .testimonial-card { padding: 1.75rem; }
    .step-number { width: 56px; height: 56px; font-size: 1.25rem; }
}

@media (max-width: 640px) {
    .btn-primary, .btn-secondary, .btn-navy, .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
    }
}
