/* ==========================================================================
   INTIGO Landing Pages — Shared Design System
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    /* Colors */
    --black: #111111;
    --charcoal: #222222;
    --dark-text: #111111;
    --medium-gray: #555555;
    --light-gray: #999999;
    --off-white: #fafafa;
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --border-color: #e5e5e5;

    /* Brand accent (gold — kept for continuity) */
    --gold: #b8956e;
    --gold-light: #c9a882;
    --gold-dark: #96744a;

    /* Typography */
    --font-title: "Roboto Condensed", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Motion */
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body.landing {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 400;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

strong {
    font-weight: 400;
}

/* ---------- Container ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======================================================================
   NAVIGATION — Variant A: Inner pages (black sticky bar)
   ====================================================================== */
.nav-inner {
    background: #000000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner .logo {
    height: 48px;
    width: auto;
}

.nav-inner ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-inner a {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-inner a:hover {
    color: var(--gold);
}

/* ======================================================================
   NAVIGATION — Variant B: Homepage (transparent → solid on scroll)
   ====================================================================== */
.nav-home {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: all 0.4s var(--transition-smooth);
    background: transparent;
}

.nav-home.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-home .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-home .logo-img {
    height: 48px !important;
    width: auto !important;
    max-width: none !important;
    vertical-align: middle;
    display: block;
    margin-top: 20px;
}

.nav-home .nav-menu {
    display: none;
    gap: 2.5rem;
    list-style: none;
}

.nav-home .nav-menu a {
    color: #000000;
    font-family: var(--font-title);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
}

.nav-home .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-home .nav-menu a:hover { color: var(--dark-text); }
.nav-home .nav-menu a:hover::after { width: 100%; }

/* Nav dark variant (for pages with dark hero) */
.nav-home.nav-dark .nav-menu a { color: rgba(255, 255, 255, 0.8); }
.nav-home.nav-dark .nav-menu a:hover { color: #fff; }
.nav-home.nav-dark.scrolled .nav-menu a { color: #000000; }
.nav-home.nav-dark.scrolled .nav-menu a:hover { color: var(--dark-text); }

/* Nav search (homepage) */
.nav-search {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-search-input {
    width: 200px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--dark-text);
    outline: none;
    transition: all 0.3s ease;
}

.nav-search-input::placeholder {
    color: var(--light-gray);
    font-size: 0.75rem;
}

.nav-search-input:focus {
    border-color: var(--gold);
    width: 280px;
}

.nav-search-btn {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
    font-family: var(--font-title);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-search-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* ======================================================================
   NAVIGATION — Variant C: Minimal header (contact / legal pages)
   ====================================================================== */
.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-minimal .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-minimal .logo {
    height: 28px;
}

.header-minimal .back-link {
    font-family: var(--font-title);
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--medium-gray);
}

.header-minimal .back-link:hover {
    color: var(--dark-text);
}

/* ======================================================================
   HERO — Variant A: Homepage (dark background, centered)
   ====================================================================== */
.hero-home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 40%, #252525 100%);
}

.hero-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(184,149,110,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,149,110,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-home .hero-decoration {
    display: none;
}

.hero-home .hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 10;
}

.hero-eyebrow {
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 1.5rem;
    font-weight: 300;
}

.hero-slogan-ar {
    font-family: 'Cairo', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    direction: rtl;
    background: linear-gradient(135deg, #c9a227 0%, #e0b040 25%, #a78bfa 50%, #c084fc 70%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

/* Hero search box */
.hero-search {
    display: flex;
    max-width: 480px;
    margin: 0 auto 2rem;
    gap: 0;
}

.hero-search input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.hero-search input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.09);
}

.hero-search button {
    padding: 0.85rem 1.5rem;
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0e0a16;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-search button:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* Hero timeline results */
.hero-timeline {
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
}

.timeline-loader {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem 0;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-nid {
    font-family: var(--font-title);
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.timeline-status {
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.timeline-price {
    font-family: var(--font-title);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.timeline-list {
    position: relative;
    padding-left: 20px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(184, 149, 110, 0.2);
}

.timeline-item {
    position: relative;
    padding: 0 0 1rem 12px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(184, 149, 110, 0.3);
    border: 1px solid rgba(184, 149, 110, 0.5);
}

.timeline-item:first-child::before {
    background: var(--gold);
    border-color: var(--gold);
}

.timeline-item-status {
    font-family: var(--font-title);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

.timeline-item-date {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

.timeline-empty {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem 0;
}

/* ======================================================================
   HERO — Variant B: Inner pages (dark background)
   ====================================================================== */
.hero-dark {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 40%, #252525 100%);
    color: white;
    padding: 8rem 2rem 5rem;
    text-align: center;
}

.hero-dark h1 {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.hero-dark p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ======================================================================
   SECTIONS
   ====================================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

section h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--dark-text);
    text-align: center;
}

section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

/* ======================================================================
   CARDS
   ====================================================================== */
.service-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-number {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.7;
    font-weight: 300;
}

/* Card variant: with border-radius (service overview / blog) */
.card-rounded {
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.card-rounded:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--gold);
}

/* Content sections (white panels) */
.content-section {
    background: white;
    padding: 2.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    line-height: 1.8;
    border: 1px solid var(--border-color);
}

.content-section h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.content-section h4 {
    font-family: var(--font-title);
    font-weight: 400;
    color: var(--medium-gray);
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    color: var(--medium-gray);
}

.content-section a {
    color: var(--gold);
}

.content-section a:hover {
    color: var(--gold-dark);
}

/* ======================================================================
   GRIDS
   ====================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.warehouses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* ======================================================================
   STATS
   ====================================================================== */
.stat-item {
    opacity: 0;
    transform: translateY(30px);
}

.stat-number {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-gray);
}

/* ======================================================================
   WAREHOUSE CARDS
   ====================================================================== */
.warehouse-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.warehouse-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.warehouse-city {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.warehouse-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.warehouse-coverage {
    font-size: 0.8rem;
    color: var(--medium-gray);
    line-height: 1.6;
    font-weight: 300;
    padding-left: 1.3rem;
}

/* ======================================================================
   BUTTONS
   ====================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    font-family: var(--font-title);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: white;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
}

.btn-secondary:hover {
    background: var(--dark-text);
    color: white;
}

.cta-btn {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: var(--gold-dark);
    color: white;
}

/* ======================================================================
   CTA SECTION
   ====================================================================== */
.cta-section-block {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
    text-align: center;
}

.cta-section-block .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section-block .cta-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.cta-section-block .cta-description {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ======================================================================
   SEARCH MODAL (homepage)
   ====================================================================== */
.search-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}

.search-modal-content {
    background: white;
    width: 90%;
    max-width: 700px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

.close-modal {
    position: absolute;
    top: 1rem; right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--medium-gray);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-modal:hover { color: var(--dark-text); }

/* Search results */
.results-list { list-style: none; display: grid; gap: 1rem; }

.result-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.result-item:hover {
    background: white;
    border-color: var(--gold-light);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.result-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.result-nid {
    font-family: var(--font-title);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--dark-text);
}

.result-status {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: white;
}

.result-group { margin-bottom: 0.75rem; }

.result-group-title {
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 0.25rem;
}

.result-group-body { font-size: 0.95rem; color: var(--dark-text); }
.result-group-sub { font-size: 0.85rem; color: var(--medium-gray); }

.empty-message {
    text-align: center;
    color: var(--light-gray);
    font-style: italic;
    margin-top: 2rem;
    display: none;
}

.loader {
    display: none;
    margin: 2rem auto;
    width: 40px; height: 40px;
    border: 1px solid var(--border-color);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ======================================================================
   FOOTER — Variant A: Simple (homepage)
   ====================================================================== */
.footer-simple {
    padding: 4rem 2rem;
    background: var(--black);
}

.footer-simple .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-simple .footer-logo-img {
    height: 24px;
    width: auto;
    opacity: 0.9;
}

.footer-simple .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-simple .footer-links a {
    color: var(--light-gray);
    font-family: var(--font-title);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.footer-simple .footer-copyright {
    font-size: 0.7rem;
    color: var(--light-gray);
    letter-spacing: 0.1em;
}

/* ======================================================================
   FOOTER — Variant B: Multi-column (inner pages)
   ====================================================================== */
.footer-columns {
    background-color: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-columns .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-columns h4 {
    font-family: var(--font-title);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-columns ul { list-style: none; }
.footer-columns li { margin-bottom: 0.5rem; }

.footer-columns a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-columns .logo {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-columns p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ======================================================================
   BLOG CARDS
   ====================================================================== */
.blog-card {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.blog-card-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.blog-card-content a {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 400;
}

.blog-card-content a:hover { color: var(--gold-dark); }

/* ======================================================================
   FAQ
   ====================================================================== */
.faq-category h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.faq-question {
    background: var(--bg-secondary);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
    font-weight: 400;
}

.faq-question:hover { background: var(--off-white); }

.faq-question h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark-text);
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-toggle.active { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: white;
}

.faq-answer.active { display: block; }

.faq-answer p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ======================================================================
   ANIMATIONS
   ====================================================================== */
@keyframes shimmer {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
@media (min-width: 768px) {
    .nav-home .nav-menu { display: flex; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 2.5rem; }
    section h2 { font-size: 2.5rem; }
    .warehouses-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
    .warehouse-card { padding: 1.75rem; }
    .warehouse-city { font-size: 1.15rem; }
}

@media (max-width: 1024px) {
    .nav-search { display: none; }
}

@media (max-width: 767px) {
    .hero-dark h1 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .warehouses-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-simple .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-simple .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-inner ul { gap: 1rem; font-size: 0.8rem; }

    .content-section { padding: 1.5rem; }
}

@media (max-width: 600px) {
    .header-minimal .header-inner { padding: 12px 20px; }
}

/* ======================================================================
   RTL (Arabic)
   ====================================================================== */
[dir="rtl"] .article-content { text-align: right; }
[dir="rtl"] .article-content ul,
[dir="rtl"] .article-content ol { margin-left: 0; margin-right: 2rem; }
[dir="rtl"] .blog-card-content { text-align: right; }
[dir="rtl"] .nav-inner ul { direction: ltr; }
[dir="rtl"] .nav-menu { direction: ltr; }
[dir="rtl"] .footer-columns { text-align: right; }
