/* =========================================================
   AJ INTERNATIONAL — LUXURY EXPORTER THEME
   Compiled design system: tokens, base layout, components,
   and every section from the original build spec.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root{
  --c-primary: #8B0000;      /* Deep Red */
  --c-gold: #D4AF37;         /* Metallic Gold */
  --c-gold-light: #F0D98C;
  --c-gold-dark: #B8912C;
  --c-black: #111111;
  --c-navy: #0B1F3A;
  --c-bg: #FCFCFC;
  --c-bg-alt: #F5F5F5;
  --c-text: #222222;
  --c-muted: #5C5C5C;
  --c-hairline: rgba(212,175,55,.35);
  --c-glass: rgba(255,255,255,.65);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Oswald', sans-serif;
  --container-w: 1320px;
  --gap: 24px;
  --radius: 14px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--c-bg); color:var(--c-text);
  font-family:var(--font-body); font-size:16px; line-height:1.7;
  font-optical-sizing:auto; font-weight:400; font-style:normal;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; height:auto; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0 0 12px; color:var(--c-text); }
h1{ font-size:56px; line-height:1.15; }
h2{ font-size:40px; line-height:1.2; }
h3{ font-size:24px; }
h4{ font-size:18px; }
.container{ max-width:var(--container-w); margin-inline:auto; padding-inline:24px; }
.section{ padding:120px 0; }
.section--alt{ background:var(--c-bg-alt); }
.section--white{ background:var(--c-bg); }
.section-header{ text-align:center; max-width:640px; margin:0 auto 56px; }
.section-header.is-left{ text-align:left; margin:0 0 40px; }
.eyebrow{
  display:inline-block; font-size:13px; font-weight:600; letter-spacing:2px;
  text-transform:uppercase; color:var(--c-gold-dark); margin-bottom:10px;
}
.gold-accent{ color:var(--c-gold); text-shadow:0 0 18px rgba(212,175,55,.5); }
.btn{
  display:inline-flex; align-items:center; gap:8px; padding:14px 28px; border-radius:12px;
  font-weight:700; font-size:14px; letter-spacing:.3px; border:1px solid transparent;
  cursor:pointer; transition:all .3s ease;
}
.btn-gold{
  background:linear-gradient(135deg,var(--c-gold-light) 0%, var(--c-gold) 50%, var(--c-gold-dark) 100%);
  color:#111; box-shadow:0 6px 18px rgba(212,175,55,.35);
}
.btn-gold:hover{ background:linear-gradient(135deg,#8B0000,#6E0000); color:#fff; box-shadow:0 6px 20px rgba(139,0,0,.4); }
.btn-outline-dark{ border-color:var(--c-navy); color:var(--c-navy); background:transparent; }
.btn-outline-dark:hover{ background:var(--c-navy); color:#fff; }
.btn-navy{ background:var(--c-navy); color:#fff; }
.btn-navy:hover{ background:linear-gradient(135deg,var(--c-gold-light),var(--c-gold),var(--c-gold-dark)); color:#111; box-shadow:0 8px 24px rgba(212,175,55,.4); }
.btn-outline-white{ border:1px solid #fff; color:#fff; background:transparent; border-radius:12px; }
.btn-outline-white:hover{ background:#fff; color:var(--c-navy); }
.btn-red{ background:var(--c-primary); color:#fff; border-radius:12px; box-shadow:0 8px 24px rgba(139,0,0,.35); }
.btn-red:hover{ background:#6E0000; box-shadow:0 10px 28px rgba(139,0,0,.5); }
.divider{ height:1px; background:var(--c-hairline); margin:12px 0; border:0; }
.row-flex{ display:flex; gap:var(--gap); }
.skip-link{ position:absolute; left:-999px; top:0; background:#fff; padding:10px 16px; z-index:9999; }
.skip-link:focus{ left:10px; top:10px; }

/* ---------- Header ---------- */
.ajh-topbar{ background:var(--c-black); color:#EDEDED; font-size:13px; letter-spacing:.3px; padding:10px 0; }
.ajh-topbar .container{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.ajh-topbar-left, .ajh-topbar-right{ display:flex; gap:20px; flex-wrap:wrap; }
.ajh-topbar-left span, .ajh-topbar-right a{ display:inline-flex; align-items:center; gap:6px; color:#EDEDED; }
@media(max-width:767px){ .ajh-topbar-left{ display:none; } }

.ajh-mainnav{ position:sticky; top:0; z-index:999; background:var(--c-bg); transition:box-shadow .3s ease, padding .3s ease; padding-block:14px; }
.ajh-mainnav.scrolled{ box-shadow:0 4px 24px rgba(17,17,17,.08); padding-block:8px; }
.ajh-mainnav .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.ajh-logo img{ max-height:48px; }
.ajh-logo{ font-family:var(--font-display); font-weight:700; font-size:22px; color:var(--c-navy); }
.ajh-nav-menu{ display:flex; gap:28px; align-items:center; }
.ajh-nav-menu a{ position:relative; font-weight:600; letter-spacing:.4px; font-size:14.5px; padding-bottom:4px; }
.ajh-nav-menu a::after{ content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:linear-gradient(90deg,var(--c-gold),var(--c-primary)); transition:width .3s ease; }
.ajh-nav-menu a:hover::after, .ajh-nav-menu li.current-menu-item a::after{ width:100%; }
.ajh-nav-toggle{ display:none; background:none; border:0; font-size:26px; cursor:pointer; color:var(--c-navy); }
@media(max-width:900px){
  .ajh-nav-menu{ position:absolute; top:100%; left:0; right:0; background:#fff; flex-direction:column; align-items:flex-start; padding:20px 24px; gap:14px; box-shadow:0 12px 24px rgba(0,0,0,.08); display:none; }
  .ajh-nav-menu.is-open{ display:flex; }
  .ajh-nav-toggle{ display:block; }
  .ajh-mainnav{ position:relative; }
}

/* ---------- Hero ---------- */
.ajh-hero{ position:relative; overflow:hidden; min-height:92vh; display:flex; align-items:center; color:#fff; }
.ajh-hero::before{
  content:""; position:absolute; inset:0; z-index:0;
  background:linear-gradient(120deg, rgba(17,17,17,.8), rgba(17,17,17,.35)), var(--hero-bg, linear-gradient(135deg,#0B1F3A,#1B3A6B));
  background-size:cover; background-position:center;
}
.ajh-hero-content{ position:relative; z-index:1; display:flex; align-items:center; gap:40px; flex-wrap:wrap; padding-block:80px; }
.ajh-hero-left{ flex:1 1 520px; }
.ajh-hero-right{ flex:1 1 380px; display:flex; justify-content:center; }
.ajh-hero-right img{ animation: ajFloat 5s ease-in-out infinite; max-height:420px; }
.ajh-hero-title{ font-size:56px; font-weight:700; line-height:1.15; color:#fff; letter-spacing:.5px; }
.ajh-hero-desc{ color:#E5E5E5; font-size:17px; max-width:520px; margin-top:16px; }
.ajh-hero-buttons{ display:flex; gap:16px; margin-top:32px; flex-wrap:wrap; }
@keyframes ajFloat{ 0%,100%{ transform:translateY(0px); } 50%{ transform:translateY(-14px); } }
@media(max-width:1024px){ .ajh-hero-title{ font-size:42px; } }
@media(max-width:767px){ .ajh-hero{ min-height:auto; } .ajh-hero-title{ font-size:32px; } .ajh-hero-right{ display:none; } }

/* ---------- Search Card ---------- */
.ajh-search-wrap{ position:relative; z-index:10; }
.ajh-search-card{
  background:rgba(255,255,255,.9); backdrop-filter:blur(12px);
  border:1px solid var(--c-hairline); border-radius:16px;
  box-shadow:0 20px 60px rgba(17,17,17,.15); margin-top:-60px;
  padding:28px 32px;
}
.ajh-search-form{ display:grid; grid-template-columns:repeat(6,1fr); gap:16px; align-items:end; }
.ajh-search-form label{ display:block; font-size:12px; font-weight:600; color:var(--c-muted); margin-bottom:6px; text-transform:uppercase; letter-spacing:.5px; }
.ajh-search-card select, .ajh-search-card input{
  width:100%; border:1px solid #E2E2E2; border-radius:8px; padding:10px 12px; font-size:14px; font-family:var(--font-body);
}
.ajh-search-card select:focus, .ajh-search-card input:focus{ border-color:var(--c-gold); box-shadow:0 0 0 3px rgba(212,175,55,.15); outline:none; }
.ajh-search-submit{ width:100%; justify-content:center; }
@media(max-width:1024px){ .ajh-search-card{ margin-top:0; border-radius:0 0 16px 16px; } .ajh-search-form{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .ajh-search-form{ grid-template-columns:1fr; } }

/* ---------- Company Highlights ---------- */
.ajh-highlights-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:24px; }
.ajh-card{ background:rgba(255,255,255,.7); border:1px solid var(--c-hairline); border-radius:14px; padding:32px 20px; text-align:center; box-shadow:0 8px 24px rgba(17,17,17,.06); transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.ajh-card:hover{ transform:translateY(-8px); box-shadow:0 20px 40px rgba(212,175,55,.25); border-color:var(--c-gold); }
.ajh-card .icon-circle{ width:56px; height:56px; border:1px solid var(--c-gold); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; transition:background .3s ease; font-size:22px; }
.ajh-card:hover .icon-circle{ background:rgba(212,175,55,.12); }
.ajh-card h3{ font-size:18px; font-weight:700; color:#222; margin:0 0 4px; }
.ajh-card p{ font-size:13px; color:var(--c-muted); margin:0; }
@media(max-width:1024px){ .ajh-highlights-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:600px){ .ajh-highlights-grid{ grid-template-columns:repeat(2,1fr); gap:16px; } }

/* ---------- Sister Concern ---------- */
.ajh-sister-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.ajh-sister-card{ border:1px solid var(--c-hairline); border-radius:14px; padding:40px 24px; background:#fff; text-align:center; transition:all .35s ease; }
.ajh-sister-card img{ max-height:64px; margin:0 auto 16px; filter:grayscale(100%); opacity:.75; transition:all .35s ease; }
.ajh-sister-card:hover{ transform:translateY(-6px); box-shadow:0 16px 32px rgba(212,175,55,.2); border-color:var(--c-gold); }
.ajh-sister-card:hover img{ filter:grayscale(0%); opacity:1; }
.ajh-sister-card h3{ font-size:17px; font-weight:700; margin:0 0 4px; }
.ajh-sister-card p{ font-size:12px; letter-spacing:1px; text-transform:uppercase; color:var(--c-muted); margin:0; }
.ajh-sister-card.is-coming-soon{ border-style:dashed; opacity:.6; }
.ajh-sister-card.is-coming-soon img{ filter:grayscale(100%); opacity:.4; }
@media(max-width:1024px){ .ajh-sister-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .ajh-sister-grid{ grid-template-columns:1fr; } }

/* ---------- Mission / Vision / Values ---------- */
.ajh-mvv-row-outer{ display:flex; gap:60px; align-items:center; flex-wrap:wrap; }
.ajh-mvv-col-img{ flex:1 1 420px; }
.ajh-mvv-col-text{ flex:1 1 480px; }
.ajh-mvv-imgframe{ position:relative; border-radius:16px; overflow:hidden; box-shadow:0 30px 60px rgba(17,17,17,.15); }
.ajh-mvv-imgframe::after{ content:""; position:absolute; inset:12px; border:1px solid rgba(212,175,55,.6); border-radius:10px; pointer-events:none; }
.ajh-mvv-row{ display:flex; gap:12px; align-items:flex-start; margin-bottom:18px; }
.ajh-mvv-row .dot{ color:var(--c-gold); margin-top:3px; flex-shrink:0; }
.ajh-mvv-row strong{ color:var(--c-primary); font-weight:700; }
@media(max-width:1024px){ .ajh-mvv-col-img{ margin-bottom:32px; } }

/* ---------- Featured Vehicle Card ---------- */
.ajh-vgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ajh-vcard{ border:1px solid var(--c-hairline); border-radius:14px; overflow:hidden; background:#fff; box-shadow:0 10px 30px rgba(17,17,17,.06); transition:transform .35s ease, box-shadow .35s ease; }
.ajh-vcard:hover{ transform:translateY(-6px); box-shadow:0 24px 48px rgba(212,175,55,.22); }
.ajh-vcard .img-wrap{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--c-bg-alt); }
.ajh-vcard .img-wrap img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.ajh-vcard:hover .img-wrap img{ transform:scale(1.08); }
.ajh-vcard .badge{ position:absolute; top:12px; padding:4px 10px; font-size:11px; border-radius:20px; font-weight:700; }
.ajh-vcard .badge.stock{ left:12px; background:var(--c-navy); color:#fff; }
.ajh-vcard .badge.status-available{ right:12px; background:#1E7E34; color:#fff; }
.ajh-vcard .badge.status-reserved{ right:12px; background:var(--c-gold); color:#111; }
.ajh-vcard .badge.status-sold{ right:12px; background:var(--c-primary); color:#fff; }
.ajh-vcard .card-body{ padding:20px; }
.ajh-vcard h3{ font-size:18px; font-weight:700; margin:0 0 8px; letter-spacing:.3px; }
.ajh-vcard .meta-row{ display:flex; gap:12px; flex-wrap:wrap; font-size:13px; color:var(--c-muted); margin-bottom:12px; }
.ajh-vcard .price-row{ display:flex; justify-content:space-between; align-items:center; }
.ajh-vcard .price{ font-size:18px; font-weight:800; color:var(--c-navy); }
.ajh-vcard .btn-inquiry{ background:linear-gradient(135deg,var(--c-gold-light),var(--c-gold),var(--c-gold-dark)); border-radius:8px; padding:8px 16px; font-size:13px; font-weight:700; color:#111; }
.ajh-vcard .btn-inquiry:hover{ background:linear-gradient(135deg,#8B0000,#6E0000); color:#fff; }
@media(max-width:1024px){ .ajh-vgrid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .ajh-vgrid{ grid-template-columns:1fr; } }
.ajh-section-header-row{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:40px; flex-wrap:wrap; gap:16px; }
.ajh-view-more{ font-weight:700; color:var(--c-navy); }
.ajh-view-more:hover{ color:var(--c-gold-dark); }

/* ---------- Statistics ---------- */
.ajh-stats-band{ background:var(--c-navy); padding:70px 0; position:relative; overflow:hidden; }
.ajh-stats-row{ display:flex; justify-content:space-between; align-items:center; position:relative; z-index:1; flex-wrap:wrap; }
.ajh-stat-item{ text-align:center; flex:1; position:relative; min-width:120px; }
.ajh-stat-item:not(:last-child)::after{ content:""; position:absolute; right:0; top:10%; height:80%; width:1px; background:rgba(212,175,55,.3); }
.ajh-stat-item .stat-number{ color:#fff; font-size:36px; font-weight:800; font-family:var(--font-display); }
.ajh-stat-item .stat-label{ color:#D9C48C; font-size:13px; letter-spacing:.5px; margin-top:4px; }
@media(max-width:1024px){ .ajh-stats-row{ gap:32px 0; } .ajh-stat-item{ flex:0 0 50%; } .ajh-stat-item:not(:last-child)::after{ display:none; } }

/* ---------- Export Graph / Country Map ---------- */
.ajh-graph-map-row{ display:flex; gap:32px; align-items:stretch; flex-wrap:wrap; }
.ajh-graph-card, .ajh-map-card{ flex:1 1 460px; background:#fff; border-radius:16px; padding:32px; border:1px solid var(--c-hairline); box-shadow:0 12px 32px rgba(17,17,17,.06); }
.ajh-graph-card h3, .ajh-map-card h3{ font-size:20px; font-weight:700; margin-bottom:20px; }
.ajh-chart-wrap{ position:relative; height:240px; }
.ajh-country-list{ display:flex; flex-wrap:wrap; gap:10px 20px; margin-top:16px; }
.ajh-country-list li{ font-size:14px; color:var(--c-text); display:flex; align-items:center; gap:8px; }
.ajh-country-list li::before{ content:"●"; color:var(--c-gold); font-size:10px; }
@media(max-width:1024px){ .ajh-graph-card, .ajh-map-card{ margin-bottom:24px; } }

/* ---------- Managing Director ---------- */
.ajh-director-row{ display:flex; gap:60px; align-items:center; flex-wrap:wrap; }
.ajh-director-col-img{ flex:1 1 320px; }
.ajh-director-col-text{ flex:2 1 460px; }
.ajh-director-frame{ position:relative; border-radius:16px; overflow:hidden; box-shadow:0 30px 60px rgba(17,17,17,.15); }
.ajh-director-frame::after{ content:""; position:absolute; inset:12px; border:1px solid rgba(212,175,55,.6); border-radius:10px; pointer-events:none; }
.ajh-director-msg{ font-size:16px; line-height:1.8; color:#3a3a3a; font-style:italic; margin:20px 0; }
.ajh-director-signature{ max-height:48px; margin-bottom:8px; }
.ajh-director-name{ font-size:19px; font-weight:700; color:var(--c-navy); margin:0; font-family:var(--font-display); }
.ajh-director-title{ font-size:13px; letter-spacing:1px; text-transform:uppercase; color:var(--c-primary); }
@media(max-width:1024px){ .ajh-director-col-img{ margin-bottom:32px; } }

/* ---------- Testimonials ---------- */
.ajh-tgrid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.ajh-tcard{ background:#fff; border:1px solid var(--c-hairline); border-radius:14px; padding:28px; box-shadow:0 10px 24px rgba(17,17,17,.05); height:100%; }
.ajh-tcard .quote-icon{ color:var(--c-gold); font-size:26px; opacity:.6; margin-bottom:8px; display:block; }
.ajh-tcard .review-text{ font-style:italic; font-size:14.5px; color:#3a3a3a; line-height:1.7; margin-bottom:14px; }
.ajh-tcard .stars{ color:var(--c-gold); margin-bottom:14px; letter-spacing:2px; }
.ajh-tcard .reviewer-row{ display:flex; align-items:center; gap:12px; }
.ajh-tcard .reviewer-row img{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.ajh-tcard h4{ font-size:14px; font-weight:700; margin:0; font-family:var(--font-body); }
.ajh-tcard .country{ font-size:12px; color:var(--c-muted); }
@media(max-width:1024px){ .ajh-tgrid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .ajh-tgrid{ grid-template-columns:1fr; } }

/* ---------- CTA Band ---------- */
.ajh-cta-band{ background:var(--c-navy); padding:60px 0; position:relative; overflow:hidden; }
.ajh-cta-row{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:24px; position:relative; z-index:1; }
.ajh-cta-row h2{ color:#fff; font-size:30px; margin:4px 0 0; }
.ajh-cta-row .eyebrow{ color:var(--c-gold); }
.ajh-cta-buttons{ display:flex; gap:16px; flex-wrap:wrap; }
@media(max-width:900px){ .ajh-cta-row{ flex-direction:column; text-align:center; } }

/* ---------- Footer ---------- */
.ajh-footer{ background:var(--c-navy); color:#D9D9D9; padding:80px 0 0; }
.ajh-footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; }
.ajh-footer h4{ color:var(--c-gold); font-size:15px; letter-spacing:1px; text-transform:uppercase; margin-bottom:18px; font-family:var(--font-body); }
.ajh-footer p{ font-size:14px; line-height:1.8; color:#C7CEDA; }
.ajh-footer a{ color:#D9D9D9; font-size:14px; line-height:2.2; transition:color .25s ease; display:block; }
.ajh-footer a:hover{ color:var(--c-gold); padding-left:4px; }
.ajh-footer .social-icons{ display:flex; gap:10px; margin-top:16px; }
.ajh-footer .social-icons a{ width:34px; height:34px; border:1px solid rgba(212,175,55,.4); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--c-gold); }
.ajh-footer .social-icons a:hover{ background:var(--c-gold); color:#111; }
.ajh-footer-bottom{ border-top:1px solid rgba(212,175,55,.25); padding:20px 0; margin-top:50px; display:flex; justify-content:space-between; font-size:12.5px; color:#9AA5B8; flex-wrap:wrap; gap:8px; }
.ajh-footer .working-hours li{ display:flex; justify-content:space-between; font-size:13.5px; color:#C7CEDA; padding:4px 0; border-bottom:1px dashed rgba(212,175,55,.15); }
.ajh-footer .map-embed{ margin-top:14px; border-radius:10px; overflow:hidden; border:1px solid rgba(212,175,55,.25); }
.ajh-footer .map-embed iframe{ width:100%; height:160px; border:0; display:block; }
@media(max-width:1024px){ .ajh-footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:600px){ .ajh-footer-grid{ grid-template-columns:1fr; } .ajh-footer-bottom{ flex-direction:column; text-align:center; } }

/* ---------- Archive / Single Vehicle ---------- */
.ajh-page-header{ background:var(--c-navy); color:#fff; padding:80px 0; text-align:center; }
.ajh-page-header h1{ color:#fff; }
.ajh-filters-bar{ background:#fff; border:1px solid var(--c-hairline); border-radius:14px; padding:20px 24px; margin:-40px auto 40px; max-width:var(--container-w); box-shadow:0 12px 32px rgba(17,17,17,.08); position:relative; z-index:5; }
.ajh-single-vehicle{ display:flex; gap:48px; flex-wrap:wrap; padding:60px 0; }
.ajh-sv-gallery{ flex:1 1 480px; }
.ajh-sv-gallery img{ border-radius:14px; border:1px solid var(--c-hairline); }
.ajh-sv-details{ flex:1 1 420px; }
.ajh-sv-spec-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:20px 0; }
.ajh-sv-spec-grid div{ background:var(--c-bg-alt); border-radius:10px; padding:12px 14px; font-size:13.5px; }
.ajh-sv-spec-grid strong{ display:block; color:var(--c-navy); font-size:12px; text-transform:uppercase; letter-spacing:.5px; margin-bottom:2px; }
.pagination{ display:flex; justify-content:center; gap:8px; padding:40px 0; }
.pagination a, .pagination span{ padding:8px 14px; border:1px solid var(--c-hairline); border-radius:8px; font-size:14px; }
.pagination .current{ background:var(--c-navy); color:#fff; border-color:var(--c-navy); }
