﻿/* ============================================================
   LUXURIANT INTERNATIONAL — Main Stylesheet
   Offline CSS (no CDN dependencies)
   ============================================================ */

/* ---------- Google Fonts (self-hosted subset via @font-face) ---------- */
/* We replicate Playfair Display & Inter with system fallbacks.
   Replace url() paths with actual woff2 files if you self-host fonts. */
/*@import url("fonts.css");*/

/* ---------- CSS Variables ---------- */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #A07830;
    --navy: #1A1E3A;
    --navy-mid: #252A4A;
    --navy-light: #2E3460;
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --gray-100: #F4F4F4;
    --gray-200: #E8E8E8;
    --gray-400: #999999;
    --gray-600: #666666;
    --gray-800: #333333;
    --text-dark: #1A1E3A;
    --text-body: #4A4A5A;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s ease;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ---------- 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);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

    .section-label::before {
        content: '';
        display: inline-block;
        width: 24px;
        height: 2px;
        background: var(--gold);
        vertical-align: middle;
        margin-right: 8px;
    }

.section-title {
    font-family: var(--font-serif);
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.text-center {
    text-align: center;
}

    .text-center .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

/* ---------- Gold Divider ---------- */
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
}

.text-center .gold-divider {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(201,168,76,0.45);
        color: var(--white);
    }

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

    .btn-outline:hover {
        background: var(--gold);
        color: var(--white);
        transform: translateY(-2px);
    }

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
    background: transparent;
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,0.15);
        border-color: var(--white);
        transform: translateY(-2px);
    }

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

    .btn-white:hover {
        background: var(--off-white);
        transform: translateY(-2px);
    }

/* ---------- Layout ---------- */
.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-bg {
    background: var(--off-white);
}

.section-navy {
    background: var(--navy);
    color: var(--white);
}

    .section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 {
        color: var(--white);
    }

/* ---------- Grid Helpers ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    padding: 1.25rem 0;
}

    .navbar.scrolled {
        background: rgba(26, 30, 58, 0.97);
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 24px rgba(0,0,0,0.3);
        padding: 0.75rem 0;
    }

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--navy-mid);
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.navbar-brand-sub {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        right: 50%;
        height: 2px;
        background: var(--gold);
        transition: left 0.3s, right 0.3s;
        border-radius: 1px;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--gold);
    }

        .nav-link:hover::after, .nav-link.active::after {
            left: 0.85rem;
            right: 0.85rem;
        }

.navbar-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    padding: 0.55rem 1.3rem !important;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

    .navbar-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(201,168,76,0.4);
    }

    .navbar-cta::after {
        display: none;
    }

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

    .navbar-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
    }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,30,58,0.95) 0%, rgba(37,42,74,0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

    .page-hero-content .section-label {
        color: var(--gold-light);
    }

    .page-hero-content h1 {
        color: var(--white);
    }

    .page-hero-content p {
        color: rgba(255,255,255,0.7);
        font-size: 1.1rem;
        max-width: 560px;
    }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

    .breadcrumb a {
        color: var(--gold);
    }

        .breadcrumb a:hover {
            color: var(--gold-light);
        }

.breadcrumb-sep {
    color: rgba(255,255,255,0.3);
}

/* ---------- FOOTER ---------- */
footer {
    background: #0F1228;
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 1rem;
    background: var(--navy-mid);
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-brand-sub {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

    .social-icon:hover {
        border-color: var(--gold);
        color: var(--gold);
        transform: translateY(-2px);
    }

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201,168,76,0.3);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .footer-links a::before {
        content: '›';
        color: var(--gold);
        font-size: 1rem;
    }

    .footer-links a:hover {
        color: var(--gold);
        padding-left: 4px;
    }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-contact-icon {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

    .footer-bottom a {
        color: var(--gold);
    }

        .footer-bottom a:hover {
            color: var(--gold-light);
        }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/17193060/pexels-photo-17193060.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=900&w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,30,58,0.97) 0%, rgba(37,42,74,0.75) 60%, rgba(15,18,40,0.9) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-20px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    /*max-width: 760px;*/
    max-width: 1200px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

    .hero h1 span {
        color: var(--gold);
    }

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0;
        transform: scaleY(0.5);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Stats Banner */
.stats-banner {
    background: var(--navy-mid);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

    .stat-card:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: rgba(255,255,255,0.1);
    }

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Featured Products */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.product-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.product-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.product-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .product-card-body .btn {
        margin-top: auto; /* This pushes the button to the absolute bottom */
        align-self: flex-start; /* Keeps the button from stretching full width */
    }

.product-card-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.product-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.product-spec {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
}

.product-spec-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* Why Choose Us */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.feature-card h4 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* Testimonials */
.testimonials {
    background: var(--navy);
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

    .testimonial-card:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(201,168,76,0.3);
        transform: translateY(-4px);
    }

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--gold);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1A2050 100%);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    }

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

    .cta-content h2 {
        color: var(--white);
        margin-bottom: 1rem;
    }

    .cta-content p {
        color: rgba(255,255,255,0.7);
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    height: 520px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-img-badge-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-img-badge-text {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--gold);
    transition: var(--transition);
}

    .value-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.2));
        transform: translateX(-50%);
    }

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 3rem;
    align-items: start;
}

    .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 1;
        text-align: right;
    }

    .timeline-item:nth-child(odd) .timeline-dot {
        grid-column: 2;
    }

    .timeline-item:nth-child(odd) .timeline-empty {
        grid-column: 3;
    }

    .timeline-item:nth-child(even) .timeline-empty {
        grid-column: 1;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        grid-column: 2;
    }

    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 3;
        text-align: left;
    }

.timeline-dot {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold), var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    max-width: 420px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 1rem;
    justify-self: end;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 1rem;
}

.timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
}

.timeline-content h4 {
    margin-bottom: 0.4rem;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin: 0;
}

/* Certifications */
.cert-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

    .cert-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.cert-card h5 {
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.cert-card p {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin: 0;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.flagship-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

    .flagship-product.reverse {
        direction: rtl;
    }

        .flagship-product.reverse > * {
            direction: ltr;
        }

.flagship-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.product-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-features {
    margin: 1.5rem 0;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

    .product-feature-item:last-child {
        border-bottom: none;
    }

.product-feature-check {
    color: var(--gold);
    font-weight: 700;
}

.pulse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pulse-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
}

    .pulse-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

.pulse-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.pulse-card h5 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.pulse-card p {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin: 0;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pkg-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(201,168,76,0.15);
}

    .pkg-card:hover {
        transform: translateY(-4px);
        background: var(--navy-mid);
        border-color: var(--gold);
    }

.pkg-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pkg-card h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pkg-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================================
   PROCESS PAGE
   ============================================================ */
.process-steps {
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.process-step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(201,168,76,0.4);
    margin: 0 auto;
    flex-shrink: 0;
}

.process-step-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.process-step:nth-child(odd) .process-step-left {
    order: 1;
}

.process-step:nth-child(odd) .process-step-center {
    order: 2;
}

.process-step:nth-child(odd) .process-step-right {
    order: 3;
}

.process-step:nth-child(even) .process-step-left {
    order: 3;
}

.process-step:nth-child(even) .process-step-center {
    order: 2;
}

.process-step:nth-child(even) .process-step-right {
    order: 1;
}

.process-step-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.process-step-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.process-step-content h3 {
    margin-bottom: 0.75rem;
}

.process-step-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.process-tag {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    transition: var(--transition);
    cursor: pointer;
}

    .filter-btn:hover, .filter-btn.active {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--white);
    }

.masonry-grid {
    columns: 3;
    column-gap: 1.5rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .masonry-item img {
        width: 100%;
        display: block;
        transition: transform 0.6s ease;
    }

    .masonry-item:hover img {
        transform: scale(1.05);
    }

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,30,58,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-caption {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

.facility-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .facility-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.facility-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.facility-body {
    padding: 1.5rem;
}

    .facility-body h4 {
        margin-bottom: 0.4rem;
    }

    .facility-body p {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin: 0;
    }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.featured-post {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.featured-post-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.featured-post-body {
    padding: 2.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-category {
    background: rgba(201,168,76,0.12);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
}

.post-date, .post-read {
    font-size: 0.8rem;
    color: var(--gray-400);
}

    .post-date::before {
        content: '📅 ';
    }

.featured-post-body h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

    .featured-post-body h2 a:hover {
        color: var(--gold);
    }

.featured-post-body p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-img-wrap {
    overflow: hidden;
}

.blog-card-body {
    padding: 1.5rem;
}

    .blog-card-body h4 {
        margin-bottom: 0.5rem;
        font-size: 1.05rem;
    }

        .blog-card-body h4 a:hover {
            color: var(--gold);
        }

    .blog-card-body p {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-bottom: 1rem;
    }

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 1.75rem;
}

.sidebar-widget-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

.sidebar-categories li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.88rem;
}

    .sidebar-categories li:last-child {
        border-bottom: none;
    }

.sidebar-categories a {
    color: var(--text-body);
}

    .sidebar-categories a:hover {
        color: var(--gold);
    }

.cat-count {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

    .tag:hover {
        background: var(--gold);
        color: var(--white);
    }

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.7rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--transition);
}

    .newsletter-input:focus {
        border-color: var(--gold);
    }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.executive-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

    .executive-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.executive-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
}

.executive-body {
    padding: 2rem;
}

.executive-name {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.executive-role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.executive-bio {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.team-socials {
    display: flex;
    gap: 8px;
}

.team-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gray-600);
    transition: var(--transition);
}

    .team-social:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.staff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

    .staff-card:hover {
        transform: translateX(4px);
        box-shadow: var(--shadow-md);
        border-left: 3px solid var(--gold);
    }

.staff-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.staff-info h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.staff-role {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.staff-loc {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.job-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: var(--transition);
}

    .job-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
        transform: translateX(4px);
    }

.job-tag {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

.job-card h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--gray-400);
}

    .job-meta span::before {
        margin-right: 4px;
    }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

    .form-control:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    }

select.form-control {
    appearance: none;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.office-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

    .office-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-top: 3px solid var(--gold);
    }

.office-flag {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.office-card h4 {
    margin-bottom: 0.5rem;
}

.office-detail {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.4rem;
}

.office-detail-icon {
    color: var(--gold);
}

.map-section {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

.world-map-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.map-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.map-globe {
    font-size: 6rem;
    opacity: 0.2;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.map-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.map-point {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}

.map-point-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ============================================================
   ALERTS / MESSAGES
   ============================================================ */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* ---------- Delay helpers ---------- */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pulse-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .masonry-grid {
        columns: 2;
    }

    .about-story {
        gap: 3rem;
    }

    .flagship-product {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-nav {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26,30,58,0.98);
        padding: 1rem;
    }

        .navbar-nav.open {
            display: flex;
        }

    .navbar-toggle {
        display: flex;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
    }

        .timeline-item:nth-child(odd) .timeline-content,
        .timeline-item:nth-child(even) .timeline-content {
            grid-column: 2;
            text-align: left;
            margin-left: 0.5rem;
            margin-right: 0;
            justify-self: start;
        }

        .timeline-item:nth-child(odd) .timeline-dot,
        .timeline-item:nth-child(even) .timeline-dot {
            grid-column: 1;
            grid-row: 1;
        }

        .timeline-item:nth-child(odd) .timeline-empty,
        .timeline-item:nth-child(even) .timeline-empty {
            display: none;
        }

    .about-story {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step-num {
        margin-bottom: 1rem;
    }

    .flagship-product {
        grid-template-columns: 1fr;
    }

        .flagship-product.reverse {
            direction: ltr;
        }

    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pulse-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-img-badge {
        right: 0;
        bottom: -1rem;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 70px 0;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .masonry-grid {
        columns: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .pulse-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ===== TEAM SECTION ===== */
/* ==========================================
   EXECUTIVE CARD
========================================== */

.executive-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .executive-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 70px rgba(0,0,0,.12);
    }


/* ==========================================
   IMAGE CONTAINER
========================================== */

.exec-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f8f8f8;
}

/* ==========================================
   IMAGE
========================================== */

.team-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    image-rendering: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform .5s ease;
}

.team-card {
    width: 340px;
}

/* Hover */
.executive-card:hover .team-image {
    transform: scale(1.04);
}


/* ==========================================
   TEXT
========================================== */

.executive-body {
    padding: 28px;
}

.executive-name {
    margin-bottom: 10px;
}

.executive-role {
    margin-bottom: 20px;
}

.executive-bio {
    line-height: 1.8;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px) {

    .exec-image {
        aspect-ratio: 3/4;
    }

    .team-image {
        object-position: center;
    }
}

.team-socials {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.team-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(201, 168, 76), rgb(160, 120, 48));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all .3s ease;
}

    .team-social:hover {
        background: rgba(26, 30, 58, 0.97);
        transform: translateY(-3px);
    }



/* Container for the whole section */
.stats-banner {
    background-color: #1d263a;  Your dark blue background 
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

 Icon Styling - Making them big and centered 
.stat-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

 Individual Bright Colors for Dark Background 
.icon-destinations i {
    color: #00d2ff;  Bright Cyan 
}

.icon-clients i {
    color: #ff7eb3;  Soft Pink/Purple 
}

.icon-products i {
    color: #ffcc33;  Bright Yellow/Gold 
}

.icon-delivery i {
    color: #00ff87;  Bright Lime Green 
}

 The Gold Numbers 
.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #b08d48;  Your Gold color 
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

 The White Labels 
.stat-label {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}