*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#e3ddd1;
  color:#111;
  overflow-x:hidden;
}

/* =========================
   GLOBAL
========================= */

.section{
  padding:82px 7%;
}

.section-head{
  text-align:center;
  margin-bottom:60px;
}

.section-head span{
  color:#b68b2d;
  letter-spacing:2px;
  font-size:13px;
  font-weight:600;
}



/* =========================
   NAVBAR
========================= */

.navbar{
  position:fixed;
  top:3px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  height:85px;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(12px);
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 35px;
  z-index:999;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.logo img{
  height:105px;
}

.nav-links{
  display:flex;
  gap:38px;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-size:15px;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#b68b2d;
}

.nav-btn{
  background:#08210f;
  color:white;
  text-decoration:none;
  padding:14px 28px;
  border-radius:12px;
  transition:0.3s;
  font-size:14px;
}

.nav-btn:hover{
  background:#b68b2d;
}

.menu-btn{
  display:none;
}


/* =============================================
   GENIE GLOBAL — HERO SECTION
   Dynamic · Modern · Layered depth
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Inter', sans-serif; }

/* ─────────────────────────────
   HERO WRAPPER
───────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    max-height: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}

/* ─────────────────────────────
   VIDEO + OVERLAYS
───────────────────────────── */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bg-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* Dark base overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 24, 0.58);
}

/* Directional gradient for depth */
.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,    rgba(6, 12, 24, 0.95) 0%,  transparent 45%),
        linear-gradient(to bottom, rgba(6, 12, 24, 0.50) 0%,  transparent 30%),
        linear-gradient(to right,  rgba(6, 12, 24, 0.35) 0%,  transparent 60%);
}

/* ─────────────────────────────
   FLOATING BADGE (top)
───────────────────────────── */
.hero-badge {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 7px 16px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
    animation: fadeDown 0.8s ease 0.2s both;
}

.hero-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c578;
    box-shadow: 0 0 0 0 rgba(34, 197, 120, 0.5);
    animation: pulse-dot 2.2s ease infinite 1.2s;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0   rgba(34, 197, 120, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 120, 0); }
    100% { box-shadow: 0 0 0 0   rgba(34, 197, 120, 0); }
}

/* ─────────────────────────────
   MAIN CONTENT
───────────────────────────── */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
    width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease 0.4s both;
}

.eyebrow-line {
    display: block;
    width: 36px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* Headline */
.hero-headline {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.2; /* was 1.0 — gives descenders room */
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: #ffffff;
}

/* Animated words */
.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(32px);
}

.word-1 { animation: wordIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards; }
.word-2 { animation: wordIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards; }
.word-3 { animation: wordIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.90s forwards; }
.word-4 { animation: wordIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 1.07s forwards; }

/* Accent words — gold tint */
.accent-word {
    background: linear-gradient(90deg, #f5c842 0%, #f09a28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes wordIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Subheading */
.hero-sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.62);
    line-height: 1.7;
    margin-bottom: 44px;
    animation: fadeUp 0.7s ease 1.2s both;
}

/* Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 1.38s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0a1628;
    background: linear-gradient(135deg, #f5c842 0%, #f09a28 100%);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, gap 0.22s ease;
    box-shadow: 0 4px 24px rgba(245, 200, 66, 0.30);
}

.btn-primary svg { transition: transform 0.22s ease; }

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 200, 66, 0.42);
    gap: 12px;
}

.btn-primary:hover svg { transform: translateX(2px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.30);
    transform: translateY(-2px);
}



/* ─────────────────────────────
   SCROLL INDICATOR
───────────────────────────── */
.scroll-indicator {
    position: absolute;
    right: 36px;
    bottom: 100px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease 1.8s both;
}

.scroll-indicator span {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    writing-mode: vertical-rl;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 11px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: rgba(255,255,255,0.55);
    border-radius: 2px;
    animation: scroll-bounce 1.8s ease infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0);   opacity: 1; }
    50%       { transform: translateY(8px); opacity: 0.3; }
}

/* ─────────────────────────────
   SHARED ANIMATIONS
───────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translate(-50%, -12px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ─────────────────────────────
   HOMEPAGE SECTION REVEAL
   Same fadeUp used by the hero title/subhead —
   plays every time a section scrolls into view.
───────────────────────────── */
.home-reveal {
    opacity: 0;
}

.home-reveal.in-view {
    animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 768px) {
    .hero-stats {
        gap: 0;
        padding: 16px 12px;
    }

    .stat-item { padding: 0 16px; }
    .stat-num  { font-size: 20px; }

    .scroll-indicator { display: none; }

    .hero-badge { font-size: 10.5px; top: 24px; }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 12px 0;
        padding: 16px;
    }

    .stat-divider { display: none; }
    .stat-item    { width: 50%; padding: 8px 0; }

    .hero-sub { display: none; }
}







/* =========================
   COLOR THEME
========================= */

:root{
  --deep-green:#062815;
  --dark-green:#031b0d;
  --gold:#b8872f;
  --soft-gold:#d6a547;
  --cream:#f8f4ed;
  --warm-cream:#efe7dc;
  --white:#ffffff;
  --text-dark:#08210f;
}

/* =============================================
   GENIE GLOBAL — BRANDS SECTION
   Three-brand showcase with identity colours
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background: #f0f4f8;
}

/* ── SECTION ── */
.brands-section {
    padding: 96px 0 112px;
    background: #f5f6f8;
    position: relative;
    overflow: hidden;
}

/* Subtle dot-grid texture */
.brands-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(18,21,28,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.brands-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

/* ── SECTION HEAD ── */
.brands-head {
    text-align: center;
    margin-bottom: 64px;
}

.brands-eyebrow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(20, 24, 32, 0.75);
    background: rgba(20, 24, 32, 0.06);
    border: 1px solid rgba(20, 24, 32, 0.12);
    padding: 7px 16px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    white-space: nowrap;
    animation: 0.8s ease 0.2s 1 normal both running fadeDown;
}

.brands-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    color: #14181c;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.brands-sub {
    font-size: 15px;
    color: rgba(20, 24, 32, 0.5);
    letter-spacing: 0.01em;
}

/* ── BRAND GRID ── */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* ── BRAND CARD ── */
.brand-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
   cursor: default; 
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    background: #12151c;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 4px 18px rgba(20, 24, 32, 0.10);
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(20, 24, 32, 0.14);
}

/* ── IMAGE AREA ── */
.brand-card__image {
    position: relative;
    height: 270px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: radial-gradient(circle at center, #000000 0%, #171b24 55%, #12151c 100%);
}

.spices-card .brand-card__image {
    background: radial-gradient(circle at center, #000000 0%, #1c202a 55%, #12151c 100%);
}

.brand-bg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-card:hover .brand-bg {
    transform: scale(1.06);
}

/* Gradient fade from image into content area */


/* ── CARD CONTENT ── */
.brand-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 26px 28px 28px;
    gap: 20px;
}

/* ── TOP ROW: label + wordmark ── */
.brand-card__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Category pill */
.brand-label {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Per-brand label colours */
.tropella-label {
    background: rgba(34, 197, 120, 0.15);
    color: #22c578;
    border: 1px solid rgba(34, 197, 120, 0.25);
}

.pawsage-label {
    background: rgba(250, 179, 65, 0.15);
    color: #fab341;
    border: 1px solid rgba(250, 179, 65, 0.25);
}

.spices-label {
    background: rgba(232, 93, 69, 0.15);
    color: #e85d45;
    border: 1px solid rgba(232, 93, 69, 0.25);
}

/* Brand name / wordmark */
.brand-wordmark {
    font-size: clamp(26px, 2.4vw, 34px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1;
}

.brand-wordmark sup {
    font-size: 0.45em;
    font-weight: 600;
    vertical-align: super;
    letter-spacing: 0;
}

/* ── BOTTOM ROW: desc + CTA ── */
.brand-card__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.brand-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.58);
    line-height: 1.7;
}

/* ── CTA BUTTON ── */
.brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 50px;
  letter-spacing: 0.01em;
  transition: gap 0.22s ease, opacity 0.22s ease;
  border: 1.5px solid transparent;
  text-decoration: none;
}

.brand-cta svg {
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.brand-card:hover .brand-cta svg {
    transform: translateX(3px);
}

.brand-card:hover .brand-cta {
    gap: 11px;
}

/* Per-brand CTA colours */
.tropella-cta {
    color: #22c578;
    background: rgba(34, 197, 120, 0.10);
    border-color: rgba(34, 197, 120, 0.28);
}

.tropella-card:hover .tropella-cta {
    background: rgba(34, 197, 120, 0.18);
}

.pawsage-cta {
    color: #fab341;
    background: rgba(250, 179, 65, 0.10);
    border-color: rgba(250, 179, 65, 0.28);
}

.pawsage-card:hover .pawsage-cta {
    background: rgba(250, 179, 65, 0.18);
}

.spices-cta {
    color: #e85d45;
    background: rgba(232, 93, 69, 0.10);
    border-color: rgba(232, 93, 69, 0.28);
}

.spices-card:hover .spices-cta {
    background: rgba(232, 93, 69, 0.18);
}

/* ── CARD ACCENT GLOW ON HOVER (subtle top border) ── */
.tropella-card::after,
.pawsage-card::after,
.spices-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tropella-card::after  { background: #22c578; box-shadow: 0 0 20px 4px rgba(34, 197, 120, 0.5); }
.pawsage-card::after   { background: #fab341; box-shadow: 0 0 20px 4px rgba(250, 179, 65, 0.5); }
.spices-card::after    { background: #e85d45; box-shadow: 0 0 20px 4px rgba(232, 93, 69, 0.5); }

.brand-card:hover::after { opacity: 1; }



/* ==========================================================================
   SERVICES SECTION — PREMIUM DARK-GOLDEN GLASS THEME
   Matches the golden palette used in the portfolio bento section.
   ========================================================================== */

:root {
  --gold-ink:         #2A2115;
  --gold-deep:         #7A5A12;
  --gold-deep-hover:   #5E450E;
  --gold-mid:          #B8860B;
  --gold-bright:       #E3B23C;
  --gold-pale:         #F1E4BE;
  --gold-line:         rgba(184, 134, 11, 0.28);
  --bg-light:          #FFFFFF;
  --glass-bg:          rgba(250, 250, 249, 0.65);
  --glass-border:      rgba(0, 0, 0, 0.06);
  --glass-shadow:      0 20px 50px rgba(20, 18, 12, 0.08);
  --neutral-circle:    #ECEAE3;
}

/* ---- Section shell (neutral, no gold) ---- */
.services-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  padding: 110px 0;
  color: var(--gold-ink);
}

/* ---- Decorative background circles — neutral, not gold ---- */
.services-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.services-bg-circle--1 {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle, var(--neutral-circle) 0%, transparent 70%);
}

.services-bg-circle--2 {
  width: 380px;
  height: 380px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, var(--neutral-circle) 0%, transparent 70%);
}

.services-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Head ---- */
.services-head {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.services-eyebrow {
  position: absolute;
  top: -50px;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(20, 24, 32, 0.75);
  background: rgba(20, 24, 32, 0.06);
  border: 1px solid rgba(20, 24, 32, 0.12);
  padding: 7px 16px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
  animation: fadeDown 0.8s ease 0.2s 1 normal both running;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translate(-50%, -12px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.services-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.services-title span {
    color: #d99a1f;
}

.services-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #5A4A2A;
}

/* ---- Services grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* ---- Glass card ---- */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--glass-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227, 178, 60, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(122, 90, 18, 0.22);
  border-color: var(--gold-mid);
}

.service-card:hover::before {
  opacity: 1;
}

/* ---- Icon (golden gradient badge) ---- */
.service-card__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card__icon i {
  font-size: 22px;
  color: #FFFDF5;
}

.service-card:hover .service-card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 26px rgba(122, 90, 18, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ---- Body ---- */
.service-card__body {
  flex: 1;
  margin-bottom: 20px;
}

.service-card__body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-ink);
  margin-bottom: 10px;
}

.service-card__body p {
  font-size: 14px;
  line-height: 1.6;
  color: #5A4A2A;
}

/* ---- Tags (glassy golden pills) ---- */
.service-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-deep);
  background: rgba(241, 228, 190, 0.65);
  border: 1px solid var(--gold-line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 13px;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .service-tag {
  background: linear-gradient(90deg, var(--gold-bright), var(--gold-mid));
  color: #FFFDF5;
  border-color: transparent;
}

/* ---- Trust bar (glass strip) ---- */
.services-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 26px 36px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--glass-shadow);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-ink);
  white-space: nowrap;
}

.trust-item i {
  font-size: 16px;
  color: var(--gold-mid);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-divider {
  width: 1px;
  height: 22px;
  background: var(--gold-line);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-trust {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
    gap: 16px;
  }
  .trust-divider { display: none; }
}







/* =============================================
   GENIE GLOBAL — STATS SECTION
   No cards. Bold editorial strip layout.
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: #060c18; }

/* ── SECTION ── */
.stats-section {
    padding: 20px 0 0;
    background: #060c18;
    overflow: hidden;
}

/* ── CONTAINER ── */
.stats-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

/* ── EYEBROW ── */
.stats-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.20);
}

/* ── HEADLINE ── */
.stats-headline {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.stats-headline em {
    font-style: normal;
    background: linear-gradient(90deg, #f5c842 0%, #f09a28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── STAT ROW ── */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── STAT ITEM ── */
.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 0 20px;
    transition: transform 0.28s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

/* ── BIG NUMBER ── */
.stat-num {
    font-size: clamp(48px, 4vw, 80px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
}

/* Animate number colour on hover */
.stat-item:hover .stat-num {
    background: linear-gradient(135deg, #4a9eca 0%, #f5c842 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── META: label + desc ── */
.stat-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.stat-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
}

/* ── DIVIDERS ── */
.stat-sep {
    width: 1px;
    height: 80px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255,255,255,0.12) 30%,
        rgba(255,255,255,0.12) 70%,
        transparent 100%
    );
    flex-shrink: 0;
}

/* ── MARQUEE STRIP ── */
.stats-marquee {
    width: 100vw;
    overflow: hidden;
    background: #0a1628;
    padding: 16px 0;
    margin-top: 0;
    position: relative;
}

/* Fade edges */
.stats-marquee::before,
.stats-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.stats-marquee::before {
    left: 0;
    background: linear-gradient(to right, #0a1628, transparent);
}

.stats-marquee::after {
    right: 0;
    background: linear-gradient(to left, #0a1628, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
}

.marquee-dot {
    color: #4a9eca !important;
    font-size: 18px !important;
    line-height: 1;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .stats-row {
        flex-wrap: wrap;
        gap: 40px;
        padding: 40px 0;
    }

    .stat-item { flex: 0 0 45%; }
    .stat-sep  { display: none; }
    .stat-num  { font-size: 52px; }
}

@media (max-width: 480px) {
    .stat-item { flex: 0 0 100%; }
    .stats-section { padding: 72px 0 0; }
}






/* =========================
   MARKETS STRIP
========================= */

.markets-strip{
  padding:64px 7%;
  background:#0a1628;
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* WORLD MAP BACKGROUND */
.markets-strip::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg") center/cover no-repeat;
  opacity:0.06;
  z-index:1;
}

/* EYEBROW */
.markets-eyebrow{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:0.22em;
  color:rgba(255,255,255,0.45);
  text-transform:uppercase;
  margin-bottom:36px;
}

/* ROW */
.markets-row{
  position:relative;
  z-index:2;

  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:0;
}

/* MARKET ITEM */
.market-item{
  display:flex;
  align-items:center;
  justify-content:center;

  gap:14px;
  padding:14px 36px;

  white-space:nowrap;

  font-size:13.5px;
  font-weight:700;
  color:#ffffff;
  letter-spacing:0.04em;
  text-transform:uppercase;

  border-radius:14px;
  transition:transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
             background 0.28s ease;
}

.market-item:hover{
  transform:translateY(-3px);
  background:rgba(245, 200, 66, 0.06);
}

/* FLAG */
.market-item img{
  width:42px;
  height:28px;
  border-radius:4px;
  object-fit:cover;
  display:block;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 4px 14px rgba(0,0,0,0.35);
  transition:transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.market-item:hover img{
  transform:scale(1.06);
}

.market-item span{
  transition:color 0.28s ease;
}

.market-item:hover span{
  color:#f5c842;
}

/* DIVIDER */
.market-divider{
  width:1px;
  height:32px;
  background:rgba(255,255,255,0.14);
  flex-shrink:0;
}

/* MOBILE */
@media(max-width:768px){

  .markets-row{
    flex-direction:column;
    gap:8px;
  }

  .market-divider{
    width:60px;
    height:1px;
  }

  .market-item{
    width:100%;
    padding:12px 20px;
  }
}







/* ==========================
   QUALITY & CERTIFICATIONS
========================== */

.certification-section{
    padding:120px 0;
    background:linear-gradient(
    180deg,
    #f9faf8 0%,
    #ffffff 100%);
}

.certification-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

/* CONTENT */

.certification-content{
    max-width:1200px;
    margin:0 auto 50px;
}

.certification-content h2{
    font-size:64px;
    max-width:900px;
    margin:20px auto;
}

.certification-content p{
    max-width:1000px;
    margin:0 auto 40px;
    font-size:19px;
    line-height:1.8;
}

/* TRUST BADGES */

.trust-points{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:10px;

    background:#fff;
    border:1px solid rgba(6,40,21,.08);
    border-radius:50px;

    padding:14px 22px;

    color:#062815;
    font-weight:600;

    box-shadow:0 5px 20px rgba(0,0,0,.04);
}

.trust-item i{
    color:#f28c28;
    font-size:16px;
}

/* CERTIFICATIONS GRID */

.certification-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* PREMIUM CERTIFICATE CARDS */

.cert-card{
    position:relative;

    background:linear-gradient(
    145deg,
    #ffffff,
    #f8f8f8);

    border:1px solid rgba(242,140,40,.18);

    border-radius:28px;

    padding:45px 35px;

    text-align:center;

    overflow:hidden;

    transition:.4s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05),
    0 1px 0 rgba(255,255,255,.8) inset;
}

.cert-card::before{
    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.8),
    transparent);

    transition:.8s;
}

.cert-card:hover::before{
    left:100%;
}

.cert-card:hover{
    transform:translateY(-12px);
    box-shadow:
    0 25px 50px rgba(6,40,21,.12);
}

.cert-card::after{
    content:"Certified";

    position:absolute;

    top:15px;
    right:15px;

    background:#f28c28;
    color:#fff;

    font-size:11px;
    font-weight:700;

    padding:6px 12px;

    border-radius:50px;
}

/* CERTIFICATE IMAGE */

.cert-card img{
    width:110px;
    height:110px;

    object-fit:contain;

    cursor:pointer;

    filter:drop-shadow(
    0 8px 15px rgba(0,0,0,.08));

    margin-bottom:20px;
}

/* TITLE */

.cert-card h3{
    font-size:22px;
    color:#062815;
    font-weight:700;
    margin-bottom:8px;
}

/* DESCRIPTION */

.cert-card p{
    color:#6d756f;
    font-size:14px;
    line-height:1.6;
}

/* ==========================
   CERTIFICATE POPUP
========================== */

.certificate-modal{
    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.88);

    z-index:99999;

    justify-content:center;
    align-items:center;

    padding:40px;
}

.certificate-modal.active{
    display:flex;
}

#certificatePreview{
    max-width:90%;
    max-height:90vh;

    border-radius:12px;

    background:#fff;

    box-shadow:0 20px 80px rgba(0,0,0,.5);

    animation:certificateZoom .35s ease;
}

.close-certificate{
    position:absolute;

    top:25px;
    right:35px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

    z-index:100000;
}

@keyframes certificateZoom{

    from{
        opacity:0;
        transform:scale(.8);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .certification-content h2{
        font-size:46px;
    }

    .certification-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .certification-section{
        padding:90px 0;
    }

    .certification-content h2{
        font-size:38px;
    }

    .certification-content p{
        font-size:16px;
    }

    .trust-points{
        gap:12px;
    }

    .trust-item{
        width:100%;
        justify-content:center;
    }

    .certification-grid{
        grid-template-columns:1fr;
    }

}



















/* ==========================
   EXPORT & LOGISTICS
========================== */

.export-logistics{
    padding:120px 0;
    background:#f8faf8;
}

.export-header{
    text-align:center;
    max-width:950px;
    margin:0 auto 70px;
}

.export-header h2{
    font-size:58px;
    color:#062815;
    margin:20px 0;
    line-height:1.1;
}

.export-header p{
    font-size:18px;
    color:#66746c;
    line-height:1.9;
}

.export-wrapper{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.export-image{
    border-radius:30px;
    overflow:hidden;
}

.export-image img{
    width:100%;
    display:block;
    border-radius:30px;
}

.export-content{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.export-point{
    display:flex;
    gap:20px;

    background:#fff;
    padding:28px;

    border-radius:22px;

    box-shadow:0 10px 25px rgba(0,0,0,.04);

    transition:.3s ease;
}

.export-point:hover{
    transform:translateY(-6px);
}

.export-point i{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#f28c28;
    color:#fff;

    font-size:22px;
    flex-shrink:0;
}

.export-point h3{
    color:#062815;
    margin-bottom:8px;
    font-size:22px;
}

.export-point p{
    color:#66746c;
    line-height:1.7;
}

/* TABLET */

@media(max-width:991px){

    .export-wrapper{
        grid-template-columns:1fr;
    }

}

/* MOBILE */

@media(max-width:768px){

    .export-logistics{
        padding:90px 0;
    }

    .export-header h2{
        font-size:38px;
    }

    .export-point{
        flex-direction:column;
        text-align:center;
    }

    .export-point i{
        margin:auto;
    }

}






/* =============================================
   GENIE GLOBAL — CTA SECTION
   Full-bleed dark closer, just above footer
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; }

/* ── SECTION ── */
.cta-section {
    position: relative;
    background: #060c18;
    padding: 72px 28px 60px;
    overflow: hidden;
    text-align: center;
}

/* ── DOT GRID TEXTURE ── */
.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* ── GLOW ORBS ── */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.cta-orb--left {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    background: rgba(74, 158, 202, 0.12);
}

.cta-orb--right {
    width: 400px;
    height: 400px;
    bottom: -80px;
    right: -100px;
    background: rgba(245, 200, 66, 0.09);
}

/* ── CONTAINER ── */
.cta-container {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* ── BADGE ── */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 7px 16px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.cta-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c578;
    box-shadow: 0 0 0 0 rgba(34, 197, 120, 0.5);
    animation: pulse 2.2s ease infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0   rgba(34, 197, 120, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 120, 0);    }
    100% { box-shadow: 0 0 0 0   rgba(34, 197, 120, 0);    }
}

/* ── HEADLINE ── */
.cta-title {
    font-size: clamp(38px, 6vw, 60px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.cta-title__accent {
    background: linear-gradient(90deg, #f5c842 0%, #f09a28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── SUBTEXT ── */
.cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.50);
    line-height: 1.75;
    max-width: 480px;
}

/* ── BUTTONS ── */
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    font-weight: 700;
    color: #0a1628;
    background: linear-gradient(135deg, #f5c842 0%, #f09a28 100%);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 28px rgba(245, 200, 66, 0.32);
    transition: transform 0.22s ease, box-shadow 0.22s ease, gap 0.22s ease;
}

.cta-btn-primary svg { transition: transform 0.22s ease; }

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(245, 200, 66, 0.44);
    gap: 13px;
}

.cta-btn-primary:hover svg { transform: translateX(2px); }

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.30);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ── BOTTOM DETAIL ROW ── */
.cta-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.30);
    margin-top: 6px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
    width: 100%;
}

.cta-details i {
    color: rgba(255,255,255,0.40);
    margin-right: 5px;
}

.cta-mail {
    color: rgba(255,255,255,0.30);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cta-mail:hover {
    color: #f5c842;
    text-decoration: underline;
}

.cta-detail-dot {
    color: rgba(255,255,255,0.15);
    font-size: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
    .cta-section { padding: 88px 20px; }
    .cta-detail-dot { display: none; }
    .cta-details { flex-direction: column; gap: 10px; }
    .cta-btn-primary,
    .cta-btn-secondary { width: 100%; justify-content: center; }
}






/* =============================================
   GENIE GLOBAL — FOOTER
   Blue glassy theme, clean alignment
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; }

/* ── FOOTER WRAPPER ── */
.footer {
    position: relative;
    background: linear-gradient(135deg, #061428 0%, #0a1e3d 50%, #071630 100%);
    border-top: 1px solid rgba(245, 200, 66, 0.18);
    overflow: hidden;
}

/* Glass shimmer layer */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(245, 200, 66, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 200, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Dot grid texture */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* ── INNER ── */
.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── TOP ROW ── */
.footer-top {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
    padding: 56px 0 44px;
    border-bottom: 1px solid rgba(245, 200, 66, 0.12);
}

/* ── BRAND ── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand img {
    height: 160px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.40);
    line-height: 1.75;
    max-width: 240px;
}

/* ── NAV GROUP ── */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ── COLUMN ── */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: left;          /* force left alignment */
    color: #f5c842;
    margin-bottom: 6px;
    padding-bottom: 10px;
    width: 100%;                /* ensure border-bottom spans full column */
    border-bottom: 1px solid rgba(245, 200, 66, 0.15);
}

.footer-col a,
.footer-col span {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.18s ease, padding-left 0.18s ease;
}

.footer-col a:hover {
    color: #f5c842;
    padding-left: 4px;
}

.footer-col i {
    font-size: 11px;
    color: #f5c842;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* ── BOTTOM ROW ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.20);
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom__links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.20);
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-bottom__links a:hover {
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom__links span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.10);
}

/* =============================================
   RESPONSIVE — structure only
   Logo stacked → col 1 | col 2 side by side
   → col 3 spans full width below
   ============================================= */

@media (max-width: 900px) {
    .footer-inner {
        padding: 0 24px;
    }

    .footer-top {
        grid-template-columns: 200px 1fr;
        gap: 32px;
        padding: 40px 0 32px;
    }

    .footer-brand img {
        height: 120px;
    }

    .footer-nav {
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .footer-inner {
        padding: 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0 24px;
    }

    .footer-brand {
        gap: 10px;
    }

    .footer-brand img {
        height: 100px;
    }

    .footer-brand p {
        max-width: 100%;
        line-height: 1.6;
    }

    /* 2-column grid: col 1 + col 2 sit side by side */
    .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
    }

    .footer-col {
        gap: 8px;
    }

    .footer-col h4 {
        margin-bottom: 2px;
        padding-bottom: 6px;
    }

    /* 3rd column spans the full row underneath */
    .footer-col:nth-child(3) {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 0;
    }
}

@media (max-width: 400px) {
    .footer-inner {
        padding: 0 16px;
    }

    .footer-top {
        gap: 24px;
        padding: 28px 0 20px;
    }

    .footer-brand img {
        height: 88px;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 18px 14px;
    }

    .footer-bottom__links {
        flex-wrap: wrap;
        gap: 8px 10px;
    }
}
















/* ── RESPONSIVE ──








/* =========================
   MOBILE
========================= */

@media(max-width:1024px){

  .menu-btn{
    display:block;
    background:none;
    border:none;
    font-size:32px;
  }

  .nav-links{
    position:absolute;
    top:95px;
    right:20px;
    background:white;
    flex-direction:column;
    width:240px;
    padding:30px;
    border-radius:20px;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-btn{
    display:none;
  }

  .hero{
    height:auto;
    padding:180px 7% 120px;
  }

  .hero h1{
    font-size:54px;
  }

  .hero p{
    font-size:18px;
  }

  .hero-card{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:40px;
    width:100%;
  }

  .brand-grid,
  .service-grid,
  .market-grid,
  .footer{
    grid-template-columns:1fr;
  }

  .brand-card{
    flex-direction:column;
    text-align:center;
    gap:0px;
  }

  .brand-card img{
    width:220px;
  }

  .section-head h2{
    font-size:38px;
  }

  .cta h2{
    font-size:42px;
  }

  .stats{
    flex-direction:column;
    gap:40px;
  }

}




/* =========================
   OUR BRANDS PAGE
========================= */

.brands-page-hero{
  min-height:75vh;

  background:
  linear-gradient(rgba(0,0,0,0.72),rgba(0,0,0,0.78)),
  url("../images/hero-ship.jpg") center/cover;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  padding:180px 7% 120px;

  position:relative;
}

.brands-hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  color:white;
}

.brands-hero-content span{
  color:#d6a547;
  letter-spacing:2px;
  font-size:14px;
  font-weight:600;
}

.brands-hero-content h1{
  font-size:78px;
  line-height:1.05;
  margin:25px 0;
  font-family:'Playfair Display',serif;
}

.brands-hero-content p{
  font-size:20px;
  line-height:1.9;
}

/* SHOWCASE */

.brand-showcase-grid{
  display:flex;
  flex-direction:column;
  gap:45px;
}

.brand-showcase{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;

  align-items:center;

  border-radius:36px;
  overflow:hidden;

  text-decoration:none;

  padding:70px;

  transition:0.5s;
}

.brand-showcase:hover{
  transform:translateY(-10px);
}

.tropella-showcase{
  background:linear-gradient(135deg,#012b14,#08210f);
  color:white;
}

.pawsage-showcase{
  background:#efe7dc;
  color:#08210f;
}

.brand-showcase-content span{
  color:#d6a547;
  letter-spacing:2px;
  font-size:13px;
  font-weight:600;
}

.brand-showcase-content h2{
  font-size:68px;
  margin:20px 0;
  font-family:'Playfair Display',serif;
}

.brand-showcase-content p{
  line-height:1.9;
  margin-bottom:25px;
  max-width:550px;
}

.brand-showcase-content ul{
  margin-bottom:30px;
}

.brand-showcase-content li{
  margin-bottom:14px;
  list-style:none;
}

.brand-link{
  font-weight:600;
  color:#d6a547;
}

.brand-showcase-image{
  display:flex;
  justify-content:center;
}

.brand-showcase-image img{
  width:350px;
  transition:0.5s;
}

.brand-showcase:hover img{
  transform:scale(1.08) rotate(-5deg);
}

@media(max-width:1024px){

  .brands-hero-content h1{
    font-size:48px;
  }

  .brand-showcase{
    grid-template-columns:1fr;
    padding:40px 30px;
    text-align:center;
  }

  .brand-showcase-content h2{
    font-size:46px;
  }

  .brand-showcase-image img{
    width:220px;
  }

}




/* =========================
   PRODUCTS PAGE
========================= */

.products-hero{
  min-height:75vh;
  padding:0px 7% 100px;
  background:
    linear-gradient(rgba(4,20,11,0.75),rgba(4,20,11,0.88)),
    url("../images/hero-ship.jpg") center/cover;
  display:flex;
  align-items:center;
  color:white;
}

.products-hero div{
  max-width:850px;
}

.products-hero span{
  color:#d6a547;
  letter-spacing:2px;
  font-weight:600;
  font-size:14px;
}

.products-hero h1{
  font-size:76px;
  line-height:1.08;
  margin:20px 0;
  font-family:'Playfair Display',serif;
}

.products-hero p{
  font-size:20px;
  line-height:1.8;
  max-width:650px;
}

.products-page-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:45px;
}

.products-main-card{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:45px;
  padding:70px;
  border-radius:36px;
  overflow:hidden;
}

.tropella-product-box{
  background:linear-gradient(135deg,#012b14,#08210f);
  color:white;
}

.pawsage-product-box{
  background:#efe7dc;
  color:#08210f;
}

.products-card-text span{
  color:#d6a547;
  letter-spacing:2px;
  font-size:13px;
  font-weight:600;
}

.products-card-text h3{
  font-size:58px;
  line-height:1.1;
  margin:18px 0;
  font-family:'Playfair Display',serif;
}

.products-card-text p{
  line-height:1.9;
  max-width:600px;
  margin-bottom:24px;
}

.products-card-text ul{
  margin-bottom:32px;
  padding-left:18px;
}

.products-card-text li{
  margin-bottom:12px;
}

.products-main-card img{
  width:360px;
  justify-self:center;
  transition:0.5s;
}

.products-main-card:hover img{
  transform:scale(1.08) rotate(-5deg);
}

@media(max-width:1024px){
  .products-hero h1{
    font-size:46px;
  }

  .products-main-card{
    grid-template-columns:1fr;
    padding:40px 28px;
    text-align:center;
  }

  .products-card-text h3{
    font-size:40px;
  }

  .products-card-text ul{
    list-style-position:inside;
    padding-left:0;
  }

  .products-main-card img{
    width:220px;
  }
}






























/* ============================================
   GENIE GLOBAL — PORTFOLIO BENTO GRID
   "Live Bento" (motion-first) concept
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background: #eef5fb;
}

/* ── SECTION ── */
.portfolio-section {
    padding: 80px 0 100px;
    background: #eef5fb;
}

.container {
    max-width: 1160px;
    margin: 15px auto;
    padding: 0 24px;
}

/* ── HEADING ── */
.portfolio-head {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-tagline {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(20, 24, 32, 0.75);
    background: rgba(20, 24, 32, 0.06);
    border: 1px solid rgba(20, 24, 32, 0.12);
    padding: 7px 16px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
}

.portfolio-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.portfolio-title span {
    display: block;
    color: #000000;
}

.portfolio-intro {
    font-size: 15.5px;
    color: #6b7a99;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─────────────────────────────────────────────
   BENTO GRID — 5 cards, same placement as before
───────────────────────────────────────────── */

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 320px 250px;
    gap: 14px;
}

.bcard--main        { grid-column: 1;   grid-row: 1 / 3; }
.bcard--top-center  { grid-column: 2;   grid-row: 1;     }
.bcard--top-right   { grid-column: 3;   grid-row: 1;     }
.bcard--bot-left    { grid-column: 2;   grid-row: 2;     }
.bcard--bot-center  { grid-column: 3;   grid-row: 2;     }

/* ── CARD BASE ── */
.bcard {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transform: scale(1);
    z-index: 1;
    transition: transform 0.32s cubic-bezier(0.22, 0.9, 0.3, 1),
                box-shadow 0.32s ease,
                opacity 0.32s ease,
                filter 0.32s ease;
}

/* ── SPOTLIGHT: hovered card lifts + scales, others dim ── */
.bcard:hover {
    transform: scale(1.035);
    z-index: 5;
    box-shadow: 0 24px 54px rgba(15, 31, 61, 0.24);
}

.bento-grid:hover .bcard:not(:hover) {
    opacity: 0.62;
    filter: grayscale(0.4) brightness(0.88);
    transform: scale(0.98);
}

/* ── BACKGROUND IMAGE ── */
.bcard__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bcard:hover .bcard__bg {
    transform: scale(1.08);
}

/* ── FALLBACK COLORS (when images are missing) ── */
.bcard--main        { background: linear-gradient(155deg, #b8ddf5 0%, #78b8e0 100%); }
.bcard--top-center  { background: linear-gradient(145deg, #1e2d52 0%, #141e3a 100%); }
.bcard--top-right   { background: linear-gradient(145deg, #c9a87a 0%, #a87848 100%); }
.bcard--bot-left    { background: linear-gradient(145deg, #68b8d4 0%, #3890b0 100%); }
.bcard--bot-center  { background: linear-gradient(145deg, #e898b0 0%, #c86888 100%); }

/* ── GRADIENT OVERLAY ── */
.bcard::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(8, 16, 40, 0.04) 0%,
        rgba(8, 16, 40, 0.38) 45%,
        rgba(8, 16, 40, 0.80) 100%
    );
    transition: opacity 0.28s ease;
}

.bcard:hover::before { opacity: 0.94; }

/* ── CARD CONTENT ── */
.bcard__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 24px 24px;
    z-index: 2;
}

/* ── CATEGORY PILL ── */
.bcard__cat {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 9px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* ── TITLE ── */
.bcard__title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.bcard--main .bcard__title {
    font-size: 22px;
    margin-bottom: 10px;
}

.bcard:hover .bcard__title {
    transform: translateY(-2px);
}

/* ── CROSSFADE STACK: description ↔ reveal list share one slot ── */
.bcard__stack {
    display: grid;
    margin-bottom: 16px;
}

.bcard__desc,
.bcard__reveal {
    grid-area: 1 / 1;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.bcard__desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.bcard--main .bcard__desc {
    font-size: 13.5px;
    -webkit-line-clamp: 3;
}

.bcard__reveal {
    list-style: none;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
}

.bcard__reveal li {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.9;
    padding-left: 16px;
    position: relative;
}

.bcard__reveal li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d99a1f;
}

.bcard--main .bcard__reveal li { font-size: 13px; }

.bcard:hover .bcard__desc {
    opacity: 0;
    transform: translateY(-6px);
}

.bcard:hover .bcard__reveal {
    opacity: 1;
    transform: translateY(0);
}

/* small cards: description is clamped to 1 line by default, list still reveals on hover */
.bcard--bot-left .bcard__desc,
.bcard--bot-center .bcard__desc {
    -webkit-line-clamp: 1;
}

/* ── CTA BUTTON ── */
.bcard__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    color: #0a1628;
    background: #ffffff;
    padding: 7px 14px;
    border-radius: 50px;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: background 0.22s ease, color 0.22s ease, gap 0.22s ease, transform 0.28s ease;
}

.bcard__btn i {
    font-size: 10px;
    transition: transform 0.22s ease;
}

.bcard:hover .bcard__btn {
    background: #d99a1f;
    color: #ffffff;
    gap: 11px;
    transform: translateY(-1px);
}

.bcard:hover .bcard__btn i {
    transform: translateX(2px);
}

/* respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .bcard,
    .bcard__bg,
    .bcard__title,
    .bcard__desc,
    .bcard__reveal,
    .bcard__btn,
    .bcard__btn i {
        transition: none !important;
    }
    .bcard:hover { transform: none; }
    .bento-grid:hover .bcard:not(:hover) { transform: none; }
}

/* ─────────────────────────
   RESPONSIVE
───────────────────────── */

@media (max-width: 860px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 240px 240px;
        gap: 12px;
    }

    .bcard--main       { grid-column: 1 / -1; grid-row: 1; }
    .bcard--top-center { grid-column: 1;       grid-row: 2; }
    .bcard--top-right  { grid-column: 2;       grid-row: 2; }
    .bcard--bot-left   { grid-column: 1;       grid-row: 3; }
    .bcard--bot-center { grid-column: 2;       grid-row: 3; }

    .bcard--bot-left .bcard__desc,
    .bcard--bot-center .bcard__desc { -webkit-line-clamp: 2; }
}

/* Mobile: hover states are unreliable on touch, so show content flat */
@media (max-width: 540px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bcard--main,
    .bcard--top-center,
    .bcard--top-right,
    .bcard--bot-left,
    .bcard--bot-center { grid-column: 1; grid-row: auto; }

    .bcard { height: 250px; }
    .bcard--main { height: 300px; }

    .bcard:hover,
    .bento-grid:hover .bcard:not(:hover) {
        transform: none;
        opacity: 1;
        filter: none;
    }

    .bcard__desc { -webkit-line-clamp: 2; }
    .bcard__reveal { display: none; }

    .portfolio-section { padding: 56px 0 70px; }
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {

    .stats-section{ padding:12px 0 0; }

    .stats-row{
        flex-wrap:wrap;
        padding:28px 0;
        gap:22px 0;
        border-top:none;
        border-bottom:none;
    }

    .stat-item{
        flex:1 1 40%;
        padding:0 14px;
    }

    .stat-sep{
        display:none;
    }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 640px) {

    .stats-section{ padding:8px 0 0; }

    .stats-container{
        padding:0 18px;
        gap:3px;
    }

    .stats-eyebrow{
        font-size:8.5px;
        letter-spacing:.14em;
        gap:8px;
    }

    .eyebrow-line{ width:18px; }

    .stats-headline{
        font-size:clamp(21px, 6.5vw, 28px);
        line-height:1.15;
    }

    /* ── 2x2 grid, compact, no dividers ── */
    .stats-row{
        flex-wrap:wrap;
        padding:18px 0;
        gap:14px 0;
        border-top:none;
        border-bottom:none;
    }

    .stat-item{
        flex:1 1 50%;
        padding:0 8px;
        gap:4px;
    }

    .stat-item:hover{
        transform:none;
    }

    .stat-item:hover .stat-num{
        background:none;
        -webkit-text-fill-color:#ffffff;
    }

    .stat-num{
        font-size:clamp(24px, 7vw, 32px);
    }

    .stat-label{
        font-size:10.5px;
    }

    .stat-desc{
        font-size:9px;
        line-height:1.3;
    }

    .stat-sep{
        display:none;
    }
}

@media (max-width: 380px) {

    .stat-num{
        font-size:clamp(20px, 7vw, 26px);
    }

    .stat-label{
        font-size:10px;
    }

    .stat-desc{
        font-size:8.5px;
    }

    .stats-row{
        padding:14px 0;
        gap:10px 0;
    }
}



/* ── RESPONSIVE ── */
@media (max-width: 768px) {

    .cta-section{ padding:56px 24px 44px; }

    .cta-container{ gap:14px; }

    .cta-badge{
        font-size:10px;
        padding:6px 13px;
        gap:6px;
    }

    .cta-title{
        font-size:clamp(28px, 7vw, 40px);
    }

    .cta-sub{
        font-size:14px;
        line-height:1.65;
        max-width:100%;
    }

    .cta-actions{
        gap:10px;
        margin-top:2px;
    }

    .cta-btn-primary,
    .cta-btn-secondary{
        font-size:13px;
        padding:15px 22px;
    }

    .cta-details{
        font-size:11px;
        gap:8px 14px;
        margin-top:4px;
        padding-top:16px;
    }
}

@media (max-width: 560px) {

    .cta-section{ padding:44px 18px 36px; }

    .cta-badge{
        font-size:9.5px;
        padding:5px 11px;
    }

    .cta-title{
        font-size:clamp(24px, 8vw, 32px);
    }

    .cta-sub{
        font-size:13px;
        line-height:1.6;
    }

    .cta-detail-dot{ display:none; }

    .cta-details{
        flex-direction:column;
        gap:8px;
        font-size:10.5px;
    }

    .cta-btn-primary,
    .cta-btn-secondary{
        width:106%;
        justify-content:center;
        padding:11px 20px;
        font-size:12.5px;
    }
}

@media (max-width: 380px) {

    .cta-section{ padding:36px 14px 28px; }

    .cta-title{
        font-size:clamp(22px, 8vw, 28px);
    }

    .cta-sub{
        font-size:12px;
    }

    .cta-btn-primary,
    .cta-btn-secondary{
        padding:10px 16px;
        font-size:12px;
    }
}




/* ===========================================================
   FROZEN FRUITS — EDITORIAL / PREMIUM EXPORT CATALOG (scoped)
   All selectors are prefixed with .ffh- and nested under
   .ffh-page so nothing here can collide with the shared
   site stylesheet's .fruit-card / .product-cta / .cta-btn /
   .section / .container / .frozen-fruits-hero classes used
   on the ingredients, hotel, machinery and syrup pages.

   Ink        #211D17
   Cream      #F6F1E6
   Forest     #223626
   Gold       #B8863A
   Rust       #93411F
   Line       #D8CFBD
=========================================================== */

.ffh-page{
    margin:0;
    padding:0;
    box-sizing:border-box;
    background:#F6F1E6;
    color:#211D17;
    font-family:'Work Sans', sans-serif;
}

.ffh-page *{
    box-sizing:border-box;
}

.ffh-container{
    max-width:1240px;
    margin:0 auto;
    padding:0 40px;
}

.ffh-page a{ color:inherit; }

/* ===========================================================
   HERO — split ledger cover: cream panel + framed photograph
=========================================================== */

.ffh-hero{
    display:grid;
    grid-template-columns: 0.78fr 1fr;
    min-height:88vh;
    background:#F6F1E6;
    border-bottom:1px solid #211D17;
}

.ffh-hero-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px 70px 60px 40px;
}

.ffh-hero-eyebrow{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:34px;
}

.ffh-hero-eyebrow .ffh-num{
    font-family:'IBM Plex Mono', monospace;
    font-size:13px;
    color:#B8863A;
    border:1px solid #B8863A;
    padding:3px 9px;
    border-radius:2px;
    letter-spacing:1px;
}

.ffh-hero-eyebrow span{
    font-family:'IBM Plex Mono', monospace;
    font-size:12px;
    letter-spacing:3px;
    color:#5B5343;
    text-transform:uppercase;
}

.ffh-hero-text h1{
    font-family:'Fraunces', serif;
    font-weight:450;
    font-size:64px;
    line-height:1.04;
    letter-spacing:-1px;
    color:#211D17;
    margin-bottom:28px;
}

.ffh-hero-text h1 em{
    font-style:italic;
    font-weight:300;
    color:#93411F;
}

.ffh-hero-text p{
    max-width:420px;
    font-size:16.5px;
    line-height:1.85;
    color:#4A4436;
    margin-bottom:40px;
}

.ffh-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    width:fit-content;
    padding:15px 26px;
    border:1px solid #211D17;
    text-decoration:none;
    color:#211D17;
    font-family:'IBM Plex Mono', monospace;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s ease;
}

.ffh-btn:hover{
    background:#211D17;
    color:#F6F1E6;
}

.ffh-hero-photo{
    position:relative;
    padding:28px 28px 28px 0;
}

.ffh-hero-photo-frame{
    position:relative;
    width:100%;
    height:100%;
    border:1px solid #211D17;
    overflow:hidden;
}

.ffh-hero-photo-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:saturate(1.05) contrast(1.02);
}

.ffh-hero-photo-tag{
    position:absolute;
    bottom:18px;
    left:18px;
    background:#F6F1E6;
    border:1px solid #211D17;
    padding:8px 14px;
    font-family:'IBM Plex Mono', monospace;
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#211D17;
}

/* stat strip beneath hero */

.ffh-stat-strip{
    display:flex;
    justify-content:center;
    gap:0;
    background:#211D17;
}

.ffh-stat-strip .ffh-container{
    display:flex;
    width:100%;
}

.ffh-stat-item{
    flex:1;
    text-align:center;
    padding:22px 20px;
    border-right:1px solid rgba(246,241,230,.18);
}

.ffh-stat-item:last-child{ border-right:none; }

.ffh-stat-item .ffh-val{
    font-family:'Fraunces', serif;
    font-size:26px;
    color:#F6F1E6;
    margin-bottom:4px;
}

.ffh-stat-item .ffh-lbl{
    font-family:'IBM Plex Mono', monospace;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#B8863A;
}

/* ===========================================================
   CATALOG SECTION
=========================================================== */

.ffh-section{ padding:130px 0; }

.ffh-section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    max-width:1240px;
    margin:0 auto 70px;
    border-bottom:1px solid #211D17;
    padding-bottom:4px;
}

.ffh-section-head-left span{
    font-family:'IBM Plex Mono', monospace;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#93411F;
    display:block;
    margin-bottom:18px;
}

.ffh-section-head-left h2{
    font-family:'Fraunces', serif;
    font-weight:450;
    font-size:44px;
    letter-spacing:-0.5px;
    color:#211D17;
}

.ffh-section-head-right p{
    max-width:340px;
    font-size:15px;
    line-height:1.8;
    color:#5B5343;
    text-align:right;
}

.ffh-products{
    background:#F6F1E6;
}

.ffh-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:#D8CFBD;
    border:1px solid #D8CFBD;
}

.ffh-card{
    position:relative;
    background:#F6F1E6;
    display:flex;
    flex-direction:column;
    transition:background .3s ease;
}

.ffh-card:hover{
    background:#FFFFFF;
}

.ffh-card-index{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 20px 0;
}

.ffh-card-index .ffh-no{
    font-family:'IBM Plex Mono', monospace;
    font-size:12px;
    letter-spacing:1px;
    color:#93411F;
}

.ffh-card-index .ffh-grade{
    font-family:'IBM Plex Mono', monospace;
    font-size:10px;
    letter-spacing:1px;
    color:#5B5343;
    border:1px solid #D8CFBD;
    padding:2px 8px;
    text-transform:uppercase;
}

.ffh-card-img{
    height:190px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
}

.ffh-card-img img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    transition:transform .4s ease;
}

.ffh-card:hover .ffh-card-img img{
    transform:scale(1.06);
}

.ffh-card-content{
    padding:0 22px 22px;
    border-top:1px solid #D8CFBD;
    padding-top:18px;
    margin-top:auto;
}

.ffh-card-content h3{
    font-family:'Fraunces', serif;
    font-weight:450;
    font-size:21px;
    color:#211D17;
    margin-bottom:8px;
}

.ffh-card-content > p{
    font-size:13.5px;
    line-height:1.65;
    color:#5B5343;
    margin-bottom:16px;
    min-height:42px;
}

.ffh-specs{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    padding-top:14px;
    border-top:1px dashed #D8CFBD;
}

.ffh-specs div{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.ffh-specs .ffh-k{
    font-family:'IBM Plex Mono', monospace;
    font-size:9.5px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#93411F;
}

.ffh-specs .ffh-v{
    font-family:'IBM Plex Mono', monospace;
    font-size:11.5px;
    color:#211D17;
}

/* ===========================================================
   CTA
=========================================================== */

.ffh-cta{
    padding:150px 0;
    text-align:center;
    background:#223626;
    position:relative;
    border-top:1px solid #211D17;
}

.ffh-cta-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'IBM Plex Mono', monospace;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#C9A063;
    margin-bottom:30px;
}

.ffh-cta-tag::before,
.ffh-cta-tag::after{
    content:'';
    width:30px;
    height:1px;
    background:#C9A063;
}

.ffh-cta h2{
    font-family:'Fraunces', serif;
    font-weight:450;
    font-size:52px;
    line-height:1.15;
    color:#F6F1E6;
    max-width:720px;
    margin:0 auto 22px;
}

.ffh-cta p{
    color:rgba(246,241,230,.75);
    font-size:16.5px;
    line-height:1.9;
    max-width:620px;
    margin:0 auto 44px;
}

.ffh-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:17px 34px;
    border:1px solid #C9A063;
    text-decoration:none;
    color:#F6F1E6;
    font-family:'IBM Plex Mono', monospace;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s ease;
}

.ffh-cta-btn:hover{
    background:#C9A063;
    color:#211D17;
}

/* ===========================================================
   RESPONSIVE
=========================================================== */

@media(max-width:1100px){
    .ffh-grid{ grid-template-columns:repeat(2,1fr); }
    .ffh-hero-text h1{ font-size:48px; }
}

@media(max-width:860px){
    .ffh-hero{ grid-template-columns:1fr; min-height:auto; }
    .ffh-hero-photo{ padding:0 24px 40px; order:-1; height:320px; }
    .ffh-hero-text{ padding:50px 24px 30px; }
    .ffh-stat-strip .ffh-container{ flex-direction:column; }
    .ffh-stat-item{ border-right:none; border-bottom:1px solid rgba(246,241,230,.18); }
    .ffh-stat-item:last-child{ border-bottom:none; }
    .ffh-section{ padding:80px 0; }
    .ffh-section-head{ flex-direction:column; align-items:flex-start; }
    .ffh-section-head-right p{ text-align:left; }
}

@media(max-width:600px){
    .ffh-grid{ grid-template-columns:1fr; }
    .ffh-hero-text h1{ font-size:36px; }
    .ffh-cta h2{ font-size:34px; }
    .ffh-container{ padding:0 20px; }
}



/* ==========================================
   PREMIUM MACHINERIES
========================================== */

.machinery-products{
    padding:120px 0;
    background:#f8fafc;
}

.machinery-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.machinery-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;

    height:100%;

}

.machinery-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

.machinery-card img{

    width:100%;

    height:260px;

    object-fit:fill;

    display:block;

}

.machinery-content{

    padding:30px;

}

.machinery-content h3{

    font-size:28px;

    color:#0D2340;

    margin-bottom:15px;

    line-height:1.2;

}

.machinery-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

    font-size:15px;

}

.machinery-content ul{

    list-style:none;

    padding:0;

    margin:0;

}

.machinery-content ul li{

    position:relative;

    padding-left:28px;

    margin-bottom:14px;

    color:#0D2340;

    font-weight:500;

}

.machinery-content ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    color:#D18C2E;

    font-weight:700;

}

.machinery-content ul li:last-child{

    margin-bottom:0;

}


/* SECTION HEADING */

.machinery-products .section-head{

    text-align:center;

    max-width:800px;

    margin:auto;

}

.machinery-products .section-head span{

    color:#D18C2E;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.machinery-products .section-head h2{

    font-size:52px;

    color:#0D2340;

    margin:15px 0 20px;

}

.machinery-products .section-head p{

    color:#666;

    line-height:1.8;

}


/* RESPONSIVE */

@media(max-width:991px){

    .machinery-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .machinery-grid{

        grid-template-columns:1fr;

    }

    .machinery-products{

        padding:90px 0;

    }

    .machinery-products {

        font-size:38px;

    }

    .machinery-content{

        padding:25px;

    }

    .machinery-content h3{

        font-size:24px;

    }

}


/* ==========================================
   CONSUMABLES
========================================== */

.consumable-products{
    padding:120px 0;
    background:#ffffff;
}

.consumable-head{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.consumable-head span{
    color:#D18C2E;
    font-weight:600;
    letter-spacing:2px;
}

.consumable-head h2{
    font-size:52px;
    color:#0D2340;
    margin:15px 0 20px;
}

.consumable-head p{
    color:#666;
    line-height:1.8;
}

.consumable-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.consumable-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;

}

.consumable-card:hover{

    transform:translateY(-10px);

}

.consumable-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.consumable-content{

    padding:30px;

}

.consumable-content h3{

    font-size:26px;

    color:#0D2340;

    margin-bottom:15px;

}

.consumable-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.consumable-content ul{

    list-style:none;

    padding:0;

    margin:0;

}

.consumable-content li{

    position:relative;

    padding-left:26px;

    margin-bottom:12px;

    color:#0D2340;

}

.consumable-content li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#D18C2E;

    font-weight:700;

}

@media(max-width:991px){

    .consumable-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .consumable-grid{
        grid-template-columns:1fr;
    }

    .consumable-head h2{
        font-size:38px;
    }

}









/* ==========================================
   HOTEL HERO
========================================== */

.hotel-hero{
    position:relative;
    height:90vh;
    overflow:hidden;
}

.hotel-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hotel-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        90deg,
        rgba(6,20,35,.90),
        rgba(6,20,35,.65),
        rgba(6,20,35,.25)
    );
}

.hotel-overlay .container{
    max-width:1300px;
}

.hotel-overlay span{
    color:#D18C2E;
    letter-spacing:3px;
    font-weight:600;
}

.hotel-overlay h1{
    color:#fff;
    font-size:72px;
    line-height:1.1;
    margin:20px 0;
    max-width:750px;
}

.hotel-overlay p{
    color:rgba(255,255,255,.9);
    max-width:650px;
    line-height:1.9;
    font-size:18px;
}

.hotel-btn{
    display:inline-block;
    margin-top:30px;
    padding:16px 38px;

    background:#D18C2E;

    color:#fff;
    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.hotel-btn:hover{
    transform:translateY(-3px);
}


/* ==========================================
   PRODUCTS SECTION
========================================== */

.hotel-products{
    padding:120px 0;
    background:#f8fafc;
}

.section-head{
    text-align:center;
    max-width:850px;
    margin:auto;
}

.section-head span{
    color:#D18C2E;
    letter-spacing:2px;
    font-weight:600;
}



.section-head p{
    color:#666;
    line-height:1.8;
}

/* GRID */

.hotel-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

/* CARD */

.hotel-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;

}

.hotel-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

.hotel-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

}

/* CONTENT */

.hotel-content{
    padding:30px;
}

.hotel-content h3{

    font-size:28px;

    color:#0D2340;

    margin-bottom:15px;

    line-height:1.2;

}

.hotel-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:22px;

}

.hotel-content ul{

    list-style:none;

    padding:0;

    margin:0;

}

.hotel-content ul li{

    position:relative;

    padding-left:28px;

    margin-bottom:12px;

    color:#0D2340;

    line-height:1.7;

}

.hotel-content ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#D18C2E;

    font-weight:700;

}



/* ==========================================
   HOTEL CTA
========================================== */

.hotel-cta{

    padding:120px 0;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #0D2340,
        #16365C,
        #224C7A
    );

}

.hotel-cta .container{
    max-width:900px;
}

.cta-tag{

    color:#D18C2E;

    letter-spacing:2px;

    font-weight:600;

}

.hotel-cta h2{

    color:#fff;

    font-size:56px;

    margin:20px 0;

    line-height:1.2;

}

.hotel-cta p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:40px;

}

.hotel-cta-btn{

    display:inline-block;

    padding:18px 42px;

    background:#D18C2E;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.hotel-cta-btn:hover{

    transform:translateY(-4px);

}


/* ==========================================
   FOOTER
========================================== */

.footer{

    padding:35px 0;

    background:#081521;

    text-align:center;

}

.footer p{

    color:rgba(255,255,255,.7);

    margin:0;

}


@media(max-width:991px){

    .hotel-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hotel-overlay h1{
        font-size:58px;
    }

}

@media(max-width:768px){

    .hotel-grid{
        grid-template-columns:1fr;
    }

    .hotel-overlay h1{
        font-size:42px;
    }

    .section-head h2{
        font-size:38px;
    }

    .hotel-cta h2{
        font-size:38px;
    }

}












/* ==========================================
   SYRUP HERO
========================================== */

.syrup-hero{
    position:relative;
    height:90vh;
    overflow:hidden;
}

.syrup-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.syrup-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        90deg,
        rgba(8,18,32,.92),
        rgba(8,18,32,.65),
        rgba(8,18,32,.20)
    );
}

.syrup-overlay .container{
    max-width:1300px;
}

.syrup-overlay span{
    color:#D18C2E;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.syrup-overlay h1{
    font-size:72px;
    color:#fff;
    margin:20px 0;
    line-height:1.1;
    max-width:750px;
}

.syrup-overlay p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.9;
    max-width:650px;
}

.syrup-btn{
    display:inline-block;
    margin-top:35px;
    padding:16px 40px;
    background:#D18C2E;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.syrup-btn:hover{
    transform:translateY(-4px);
}


/* ==========================================
   PRODUCTS SECTION
========================================== */

.syrup-products{
    padding:120px 0;
    background:#f8fafc;
}

.section-head{
    text-align:center;
    max-width:850px;
    margin:auto;
}

.section-head span{
    color:#D18C2E;
    font-weight:600;
    letter-spacing:2px;
}



.section-head p{
    color:#666;
    line-height:1.9;
}

.syrup-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:70px;
}

.syrup-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.syrup-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.syrup-card img{
    width:75%;
    height:260px;

    object-fit:contain;

    display:block;

    margin:30px auto 0;
}

.syrup-content{
    padding:40px;
}

.syrup-tag{
    color:#D18C2E;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.syrup-content h3{
    font-size:34px;
    color:#0D2340;
    margin:15px 0;
}

.syrup-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.syrup-content ul{
    list-style:none;
    padding:0;
    margin:0;
}

.syrup-content ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#0D2340;
    line-height:1.7;
}

.syrup-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#D18C2E;
    font-weight:700;
}


/* ==========================================
   APPLICATIONS
========================================== */

.syrup-applications{
    padding:120px 0;
    background:#fff;
}

.application-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.application-box{
    padding:35px;
    text-align:center;

    background:#f8fafc;

    border-radius:20px;

    font-size:18px;
    font-weight:600;
    color:#0D2340;

    transition:.3s ease;
}

.application-box:hover{
    transform:translateY(-8px);
    background:#0D2340;
    color:#fff;
}


/* ==========================================
   CTA
========================================== */

.syrup-cta{

    padding:130px 0;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #0D2340,
        #1B4064,
        #295A83
    );
}

.syrup-cta .container{
    max-width:900px;
}

.cta-tag{
    color:#D18C2E;
    font-weight:600;
    letter-spacing:2px;
}

.syrup-cta h2{
    color:#fff;
    font-size:56px;
    margin:20px 0;
    line-height:1.2;
}

.syrup-cta p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
    margin-bottom:40px;
}

.syrup-cta-btn{
    display:inline-block;
    padding:18px 42px;

    background:#D18C2E;

    color:#fff;
    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s ease;
}

.syrup-cta-btn:hover{
    transform:translateY(-4px);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .syrup-grid{
        grid-template-columns:1fr;
    }

    .application-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .syrup-overlay h1{
        font-size:56px;
    }

}

@media(max-width:768px){

    .syrup-hero{
        height:80vh;
    }

    .syrup-overlay h1{
        font-size:42px;
    }

    .section-head h2{
        font-size:38px;
    }

    .syrup-cta h2{
        font-size:38px;
    }

    .application-grid{
        grid-template-columns:1fr;
    }

    .syrup-card img{
        height:300px;
    }

    .syrup-content{
        padding:25px;
    }

}














.about-hero {
    height: 540px;
    position: relative;
    overflow: hidden;
    padding: 99px 0 100px;
    background: linear-gradient(135deg, #0b1f3a 0%, #123a5c 55%, #0e2c47 100%);
    color: #fff;
}

/* Decorative background layer */
.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}




.about-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 70%);
}

/* Content */
.about-hero .container {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.about-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 20px;
}

.about-hero-label-line {
    width: 32px;
    height: 2px;
    background: #d4af37;
}

.about-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.about-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Stats row */
.about-hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.about-hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}

@media (max-width: 640px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    .about-hero-stats {
        gap: 28px;
    }
}




/* ==========================================
   WHO WE ARE / COMPANY OVERVIEW
========================================== */

.gg-company-overview {
    --accent: #d4af37;
    --accent-blue: #2f80ed;
    padding: 110px 0;
    background: linear-gradient(135deg, #0b1f3a 0%, #123a5c 55%, #0e2c47 100%);
    position: relative;
    overflow: hidden;
}



.gg-company-overview .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.gg-company-overview .gg-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
}

/* ===== LEFT CONTENT ===== */

.gg-company-overview .gg-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.gg-company-overview .gg-tag::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.gg-company-overview .gg-overview-content h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 28px;
    letter-spacing: -0.01em;
}

.gg-company-overview .gg-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    font-weight: 400;
    margin-bottom: 22px;
}

.gg-company-overview .gg-overview-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.62);
    font-weight: 300;
    margin-bottom: 18px;
}

.gg-company-overview .gg-overview-content p:last-child {
    margin-bottom: 0;
}

/* ===== RIGHT IMAGE CARDS ===== */

.gg-company-overview .gg-overview-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
    height: 100%;
}

.gg-company-overview .gg-info-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gg-company-overview .gg-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%);
    transition: background 0.4s ease;
}

.gg-company-overview .gg-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}

.gg-company-overview .gg-info-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 25%, rgba(0,0,0,0.65) 70%, rgba(0,0,0,0.9) 100%);
}

.gg-company-overview .gg-card-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gg-company-overview .gg-info-card:hover .gg-card-arrow {
    background: var(--accent);
    color: #18130a;
    transform: rotate(45deg);
}

.gg-company-overview .gg-card-text {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.gg-company-overview .gg-card-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.gg-company-overview .gg-card-text p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.gg-company-overview .gg-info-card:hover .gg-card-text p {
    max-height: 60px;
    opacity: 1;
    margin-top: 4px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 600px) {
    .gg-company-overview .gg-info-card {
        min-height: 240px;
    }
}


/* =============================================
   GENIE GLOBAL — OUR BRANDS (WRAPPER)
   ============================================= */

.gg-brands-showcase {
    --accent-orange: #e88a1f;
    --accent-blue: #4a9eca;
    --accent-green: #22c578;
    position: relative;
  background: linear-gradient(135deg, #0b1f3a 0%, #123a5c 55%, #0e2c47 100%);
    padding: 100px 28px;
    overflow: hidden;
}

.gg-brands-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,0.9), transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.gg-brands-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
}

.gg-brands-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
}

.gg-brands-head .gg-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e6a817;
    margin-bottom: 16px;
}

.gg-brands-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.gg-brands-head h2 sup { font-size: 0.45em; vertical-align: super; }

.gg-brands-head p {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

.gg-brands-foot {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.gg-brands-foot li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.gg-brands-foot li svg {
    width: 15px;
    height: 15px;
    stroke: #e6a817;
    flex-shrink: 0;
}

/* ── TEXT MARQUEE EXPAND ── */
.gg-mq-wrap {
    margin-bottom: 60px;
}

.gg-mq-names {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0 28px;
    max-width: 900px;
    margin: 0 auto;
}

.gg-mq-name {
    color: rgba(255,255,255,0.35);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 500;
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.gg-mq-name:hover {
    color: rgba(255,255,255,0.7);
}

.gg-mq-name.is-active {
    color: #fff;
}

.gg-mq-sep {
    color: rgba(255,255,255,0.2);
    font-size: 1.75rem;
    align-self: center;
}

.gg-mq-preview {
    max-height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1);
}

.gg-mq-preview.is-open {
    max-height: 220px;
}

.gg-mq-preview-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-top: 36px;
    margin-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.gg-mq-bar {
    width: 4px;
    align-self: stretch;
    flex-shrink: 0;
    background: #e6a817;
}

.gg-mq-content {
    max-width: 480px;
}

.gg-mq-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gg-mq-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0 0 14px;
}

.gg-mq-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}




/* =============================================
   WHAT WE DO
============================================= */

.wwd-section {
    /* All vars scoped here — no global :root pollution */
    --wwd-bg-card: #121214;
    --wwd-line: rgba(255,255,255,0.10);
    --wwd-text: #ffffff;
    --wwd-text-dim: rgba(255,255,255,0.62);
    --wwd-accent: #e6a817;
    --wwd-accent-soft: rgba(230,168,23,0.14);

background: linear-gradient(135deg, #0b1f3a 0%, #123a5c 55%, #0e2c47 100%);
    padding: 100px 24px;
}

.wwd-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wwd-head {
    max-width: 640px;
    margin: 0 0 56px;
}

.wwd-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wwd-accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.wwd-eyebrow__line {
    width: 36px;
    height: 2px;
    background: var(--wwd-accent);
    display: inline-block;
}

.wwd-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--wwd-text);
}

.wwd-title em {
    font-style: normal;
    font-weight: 300;
    color: var(--wwd-text-dim);
}

.wwd-route {
    position: relative;
}

.wwd-route__line {
    position: absolute;
    left: 0; right: 0;
    top: 34px;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--wwd-line) 0 10px,
        transparent 10px 18px
    );
    display: none;
}

.wwd-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.wwd-step {
    background: var(--wwd-bg-card);
    border: 1px solid var(--wwd-line);
    border-radius: 20px;
    padding: 2.25rem 1.75rem 2rem;
    position: relative;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.wwd-step:hover {
    border-color: rgba(230,168,23,0.40);
    transform: translateY(-4px);
}

.wwd-step__index {
    position: absolute;
    top: 1.5rem;
    right: 1.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.14);
    letter-spacing: 0.04em;
}

.wwd-step__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--wwd-accent-soft);
    color: var(--wwd-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wwd-step__icon svg {
    width: 24px;
    height: 24px;
}

.wwd-step__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
    margin: 0 0 0.65rem;
    color: var(--wwd-text);
    letter-spacing: -0.01em;
}

.wwd-step__desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--wwd-text-dim);
    font-weight: 300;
    margin: 0;
}

.wwd-step__node {
    display: none;
}





/* ==========================================
   CTA SECTION
========================================== */

.gg-cta-section {
    --accent: #e6a817;
    padding: 100px 0;
    background: #0c0c0e;
    position: relative;
    overflow: hidden;
}

.gg-cta-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== BOX ===== */

.gg-cta-section .gg-cta-box {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 56px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(230,168,23,0.1), rgba(255,255,255,0.04)),
        #121214;
    border: 1px solid rgba(230,168,23,0.25);
    overflow: hidden;
}

.gg-cta-section .gg-cta-box::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(230,168,23,0.16), transparent 70%);
    pointer-events: none;
}

.gg-cta-section .gg-cta-box::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(230,168,23,0.08), transparent 70%);
    pointer-events: none;
}

/* ===== TAG ===== */

.gg-cta-section .gg-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.gg-cta-section .gg-tag::before,
.gg-cta-section .gg-tag::after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

/* ===== HEADING & TEXT ===== */

.gg-cta-section h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 22px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.gg-cta-section p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.68);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

/* ===== BUTTONS ===== */

.gg-cta-section .gg-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.gg-cta-section .gg-btn-primary,
.gg-cta-section .gg-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.gg-cta-section .gg-btn-primary {
    background: var(--accent);
    color: #18130a;
    border: 1px solid var(--accent);
}

.gg-cta-section .gg-btn-primary:hover {
    background: #f4b827;
    transform: translateY(-3px);
}

.gg-cta-section .gg-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

.gg-cta-section .gg-btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 600px) {
    .gg-cta-section {
        padding: 70px 0;
    }

    .gg-cta-section .gg-cta-box {
        padding: 52px 28px;
        border-radius: 18px;
    }

    .gg-cta-section .gg-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .gg-cta-section .gg-btn-primary,
    .gg-cta-section .gg-btn-secondary {
        width: 100%;
    }
}







/* ==========================================
   ABOUT FOOTER
========================================== */

.about-footer {
    --accent: #e6a817;
    background: #08080a;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}

.about-footer::before {
    content: "";
    position: absolute;
    bottom: -240px;
    right: -160px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(230,168,23,0.06), transparent 70%);
    pointer-events: none;
}

/* ===== GIANT WATERMARK HEADER ===== */

.about-footer .about-footer-header {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.about-footer .about-footer-header span {
    display: block;
    font-size: clamp(2.6rem, 7vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    text-align: center;            /* ← add this */
    background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== CONTENT GRID ===== */

.about-footer .about-footer-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 0.85fr 0.85fr 0.85fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-footer .about-footer-column img {
    height: 180px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.about-footer .about-footer-column p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    margin: 0 0 10px;
}

.about-footer .about-footer-column:first-child p {
    padding-top: 10px;
    max-width: 280px;
    margin-bottom: 0;
}

.about-footer .about-footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 24px;
}

.about-footer .about-footer-column a {
    display: block;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-weight: 300;
    margin-bottom: 14px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.about-footer .about-footer-column a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

/* ===== BOTTOM BAR ===== */

.about-footer .about-footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 26px 24px;
    position: relative;
    z-index: 1;
}

.about-footer .about-footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin: 0;
    text-align: center;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .about-footer {
        padding-top: 70px;
    }

    .about-footer .about-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .about-footer .about-footer-column:first-child {
        grid-column: 1 / -1;
    }

    .about-footer .about-footer-column:first-child p {
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    .about-footer {
        padding-top: 56px;
    }

    .about-footer .about-footer-header {
        margin-bottom: 36px;
    }

    .about-footer .about-footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 40px;
    }

    .about-footer .about-footer-column a {
        margin-bottom: 12px;
    }
}






















/* =========================================================
   GENIE GLOBAL — style.css
   Direction: global trade & logistics, premium goods.
   Ink navy + porcelain paper + warm gold, with a shipping-
   manifest typographic voice (mono port codes, dotted
   route line) as the page's signature device.
   ========================================================= */

:root {
  --ink: #10192e;
  --ink-soft: #1c2942;
  --porcelain: #f5f1e8;
  --paper: #ffffff;
  --gold: #c6963c;
  --gold-soft: #e8d3a0;
  --slate: #5b6472;
  --ink-text: #1a2333;
  --line-light: rgba(16, 25, 46, 0.12);
  --line-dark: rgba(232, 211, 160, 0.25);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  --container: 1180px;
  --radius: 4px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}
p { margin: 0 0 1em; line-height: 1.7; color: var(--slate); }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }

  .home-reveal,
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.small-title {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.small-title.dark { color: var(--gold); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}





.ch-hero {
  position: relative;
  background: linear-gradient(180deg, #060c18 0%, #0a1628 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative background */
.ch-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ch-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 200, 66, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 200, 66, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 90%);
}

.ch-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}

.ch-glow-1 {
  width: 420px;
  height: 420px;
  top: -160px;
  left: 8%;
  background: radial-gradient(circle, #f5c842, transparent 70%);
}

.ch-glow-2 {
  width: 360px;
  height: 360px;
  bottom: -180px;
  right: 6%;
  background: radial-gradient(circle, #f09a28, transparent 70%);
  opacity: 0.18;
}

/* Content */
.ch-container {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(245, 200, 66, 0.35);
  border-radius: 999px;
  background: rgba(245, 200, 66, 0.06);
  color: #f5c842;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ch-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.ch-title span {
  background: linear-gradient(90deg, #f5c842, #f09a28);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ch-subtext {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 0 44px;
}

/* Trust row */
.ch-trustrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.ch-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
}

.ch-trust-item svg {
  color: #f5c842;
  flex-shrink: 0;
}

.ch-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .ch-hero {
    padding: 90px 20px 56px;
  }

  .ch-trustrow {
    flex-direction: column;
    gap: 14px;
  }

  .ch-trust-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .ch-subtext {
    font-size: 15px;
  }

  .ch-eyebrow {
    font-size: 11px;
    padding: 7px 14px;
  }
}





.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: end;
  padding: 130px 24px;
  margin: 0 auto;
  position: relative;
  background: radial-gradient(circle at 15% 20%, rgba(177, 122, 31, 0.06), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(10, 22, 40, 0.04), transparent 40%),
              #f7f9fc;
}

/* ---------- Left column ---------- */
.contact-info .small-title.dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #b17a1f;
  margin-bottom: 22px;
}

.title-line {
  width: 28px;
  height: 1px;
  background: #b17a1f;
  display: inline-block;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.3px;
  color: #0a1628;
  margin: 0 0 26px;
  max-width: 480px;
}

.contact-info h2 em {
  font-style: italic;
  color: #b17a1f;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.8;
  color: #5c6779;
  max-width: 420px;
  margin: 0 0 48px;
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ticket-row {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(10, 22, 40, 0.08);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ticket-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(10, 22, 40, 0.14);
}

.ticket-stub {
  flex-shrink: 0;
  width: 46px;
  background: #0a1628;
  color: #f5c842;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ticket-stub-icon {
  background: #ffffff;
  border-right: 2px dashed rgba(10, 22, 40, 0.14);
  writing-mode: horizontal-tb;
  transform: none;
}

.ticket-stub-icon + .ticket-main {
  border-left: none;
}

.ticket-main {
  flex: 1;
  min-width: 0;
  padding: 18px 20px;
  border-left: 2px dashed rgba(10, 22, 40, 0.14);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ticket-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b17a1f;
}

.ticket-value {
  font-size: 17px;
  font-weight: 600;
  color: #0a1628;
  letter-spacing: 0.01em;
}

.ticket-value-secondary {
  font-size: 14px;
  font-weight: 400;
  color: #5c6779;
}

.ticket-arrow {
  flex-shrink: 0;
  align-self: center;
  margin-right: 18px;
  color: #b17a1f;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ticket-row:hover .ticket-arrow {
  opacity: 1;
  transform: scale(1.08);
}

/* ---------- Form ---------- */
.contact-form {
  background: linear-gradient(160deg, #0a1628 0%, #0d1c33 100%);
  backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 48px 44px;
  box-shadow: 0 40px 80px rgba(10, 22, 40, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f5c842, #b17a1f, transparent);
}

.form-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5c842;
}

.form-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f5c842' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-form select option {
  background: #0a1628;
  color: #ffffff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f5c842;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 16px 28px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #f5c842, #b17a1f);
  color: #0a1628;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 200, 66, 0.3);
}

.contact-form button svg {
  transition: transform 0.2s ease;
}

.contact-form button:hover svg {
  transform: translateX(3px);
}

.form-status {
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Floating WhatsApp icon ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(18, 140, 74, 0.35), 0 0 0 1px rgba(245, 200, 66, 0.15);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float svg {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 20px 44px rgba(18, 140, 74, 0.5), 0 0 0 1px rgba(245, 200, 66, 0.3);
}

.whatsapp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-ring.delay {
  animation-delay: 1.2s;
}

@keyframes whatsapp-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- Scroll reveal (progressive enhancement) ----------
   IMPORTANT: elements are only hidden if JS adds .js-reveal first.
   If script.js fails to load or run, content stays visible normally. */
.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 90px 20px;
  }

  .contact-info > p,
  .contact-info h2 {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .ticket-row {
    flex-direction: row;
  }

  .ticket-stub {
    width: 38px;
    font-size: 10px;
  }

  .ticket-main {
    padding: 14px 14px;
  }

  .ticket-arrow {
    display: none;
  }

  .contact-form {
    padding: 36px 26px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   CTA BAND
   ========================================================= */
.cta {
  background:
    radial-gradient(ellipse 800px 400px at 50% 120%, rgba(198, 150, 60, 0.12), transparent 60%),
    var(--ink);
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 3.5rem);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  position: relative;
}

.cta > * { position: relative; z-index: 1; }

.cta::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.cta p {
  color: #b9c1d1;
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

.gold-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--gold);
  border-radius:40px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, color 0.2s ease, gap 0.2s ease;
}

.gold-btn::after {
  content: "→";
  transition: transform 0.2s ease;
}

.gold-btn:hover {
  background: transparent;
  color: var(--gold);
  gap: 0.9rem;
}

.gold-btn:hover::after { transform: translateX(2px); }










/* ─────────────────────────────
   RESPONSIVE — HERO CONTENT
───────────────────────────── */

@media (max-width: 768px) {

    .hero{
        min-height:560px;
    }

    .hero-badge{
        font-size:9px;
        top:16px;
        padding:5px 12px;
        gap:6px;
    }

    .hero-badge__dot{
        width:5px;
        height:5px;
    }

    .hero-content{
        padding:0 20px;
    }

    .hero-eyebrow{
        font-size:9px;
        gap:8px;
        margin-bottom:16px;
        letter-spacing:0.15em;
    }

    .eyebrow-line{
        width:22px;
    }

 .hero-headline{
        font-size:clamp(26px,10vw,36px);
        margin-bottom:12px;
    }

    .hero-headline .word-1{
        white-space: nowrap;
    }

    .hero-sub{
        font-size:12px;
        line-height:1.6;
        margin-bottom:22px;
    }

    .hero-sub br{
        display:none;
    }

    .hero-buttons{
        gap:8px;
    }

    .btn-primary,
    .btn-secondary{
        font-size:11.5px;
        padding:10px 20px;
    }

    .btn-primary svg{
        width:13px;
        height:13px;
    }

    .scroll-indicator{
        display:none;
    }

    .hero-stats{
        gap:0;
        padding:16px 12px;
    }

    .stat-item{ padding:0 16px; }
    .stat-num{ font-size:20px; }
}

@media (max-width: 480px) {

    .hero{
        min-height:480px;
    }

    .hero-badge{
       margin-top: 82px;
        font-size: 8px;
        padding: 6px 4px;
        white-space: normal;
        text-align: center;
        max-width: 100%;
    }

    .hero-eyebrow{
        font-size:8px;
        gap:6px;
    }

    .eyebrow-line{
        width:16px;
    }

  .hero-headline{
        font-size:clamp(26px,10vw,36px);
        margin-bottom:12px;
    }

    .hero-headline .word-1{
        white-space: nowrap;
    }

    .hero-sub{
        display:none;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        gap:8px;
    }

    .btn-primary,
    .btn-secondary{
        width:57%;
        justify-content:center;
        font-size:11px;
        padding:10px 16px;
    }

    .hero-stats{
        flex-wrap:wrap;
        gap:12px 0;
        padding:16px;
    }

    .stat-divider{ display:none; }
    .stat-item{ width:50%; padding:8px 0; }
}









/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    .brands-section {
        padding: 20px 0 96px;
    }
 
    .brands-head {
        margin-bottom: 56px;
    }
 
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
 
    .brand-card__image {
        height: 210px;
        padding: 24px;
    }
 
    .brand-card__content {
        padding-top: 10px;
        gap: 14px;
    }
 
    .brands-title {
        font-size: clamp(28px, 5vw, 44px);
    }
}
 
/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 640px) {
    .brands-section {
        padding: 20px 0 72px;
        overflow: visible;
    }
 
    .brands-container {
        padding: 0 20px;
    }
 
    .brands-head {
        margin-bottom: 64px;
    }
 

.brands-eyebrow{
    position:static;
    transform:none;
    animation:none;
    display:flex;
    align-items:center;
    justify-content:center;
    width:fit-content;
    margin:0 auto 20px;
}
 
    .brands-title {
        font-size: clamp(26px, 8vw, 34px);
    }
 
    .brands-sub {
        font-size: 14px;
        padding: 0 8px;
    }
 
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
 
    .brand-card {
        border-radius: 20px;
    }
 
    .brand-card__image {
        height: 190px;
        padding: 20px;
    }
 
    .brand-card__content {
        padding: 10px 22px 26px;
        gap: 14px;
    }
 
    .brand-wordmark {
        font-size: 26px;
    }
 
    .brand-desc {
        font-size: 13px;
    }
 
    .brand-card:hover {
        transform: none;
    }
 
    .brand-card:hover .brand-bg {
        transform: scale(1);
    }
}





/* ==========================================
   ABOUT HERO — MOBILE RESPONSIVE
========================================== */

@media (max-width: 768px) {
    .about-hero {
        height: auto;
        min-height: 0;
        padding: 120px 0 60px;
    }

    .about-hero .container {
        max-width: 100%;
        padding: 0 24px;
    }

    .about-hero-label {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .about-hero h1 {
        text-align: center;
        font-size: clamp(1.7rem, 6vw, 2.4rem);
        margin-bottom: 16px;
    }

    .about-hero p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 32px;
    }

    .about-hero-stats {
        gap: 28px;
        padding-top: 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    .about-hero-grid {
        background-size: 32px 32px;
    }
}

@media (max-width: 480px) {
    .about-hero-stats {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        justify-content: space-between;
    }

    .about-hero-stat {
        min-width: 0;
        flex: 1;
    }

    .stat-number {
        font-size: 1.15rem;
    }

    .stat-label {
        font-size: 0.68rem;
        line-height: 1.3;
    }
}





/* ==========================================
   WHO WE ARE / COMPANY OVERVIEW — MOBILE RESPONSIVE
========================================== */

@media (max-width: 768px) {
    .gg-company-overview {
        padding: 70px 0;
    }

    .gg-company-overview .container {
        padding: 0 20px;
    }

    .gg-company-overview .gg-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gg-company-overview .gg-tag {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .gg-company-overview .gg-overview-content h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .gg-company-overview .gg-lead {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .gg-company-overview .gg-overview-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .gg-company-overview .gg-overview-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .gg-company-overview .gg-info-card {
        min-height: 220px;
    }

    .gg-company-overview .gg-card-text {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .gg-company-overview .gg-card-text h3 {
        font-size: 1rem;
    }

    /* Reveal-on-hover text doesn't work on touch — show it by default on mobile */
    .gg-company-overview .gg-card-text p {
        max-height: 60px;
        opacity: 1;
        margin-top: 4px;
    }

    .gg-company-overview .gg-card-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gg-company-overview .gg-overview-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gg-company-overview .gg-info-card {
        min-height: 150px;
    }

    .gg-company-overview .gg-card-text {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .gg-company-overview .gg-card-text h3 {
        font-size: 0.9rem;
    }

    .gg-company-overview .gg-card-text p {
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .gg-company-overview .gg-card-arrow {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
        top: 12px;
        right: 12px;
    }
}




/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .gg-brands-showcase {
        padding: 70px 20px;
    }

    .gg-brands-head {
        margin-bottom: 44px;
    }

    .gg-brands-head .gg-tag {
        font-size: 0.72rem;
        margin-bottom: 14px;
    }

    .gg-brands-head p {
        font-size: 0.92rem;
    }

    .gg-mq-wrap {
        margin-bottom: 44px;
    }

    .gg-mq-names {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .gg-mq-name {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .gg-mq-sep {
        display: none;
    }

    .gg-mq-preview.is-open {
        max-height: 320px;
    }

    .gg-mq-preview-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 28px;
        margin-top: 28px;
    }

    .gg-mq-bar {
        width: 100%;
        height: 3px;
        align-self: auto;
    }

    .gg-mq-content {
        max-width: 100%;
    }

    .gg-mq-desc {
        font-size: 0.88rem;
    }

    .gg-brands-foot {
        flex-wrap: wrap;
        gap: 18px 28px;
    }

    .gg-brands-foot li {
        font-size: 0.68rem;
    }
}

@media (max-width: 480px) {
    .gg-brands-showcase {
        padding: 56px 16px;
    }

    .gg-brands-head h2 {
        font-size: 1.6rem;
    }

    .gg-brands-head p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .gg-mq-name {
        font-size: 1.4rem;
    }

    .gg-mq-eyebrow {
        font-size: 0.68rem;
    }

    .gg-mq-desc {
        font-size: 0.84rem;
    }

    .gg-mq-link {
        font-size: 0.82rem;
    }

    .gg-brands-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}




/* ── RESPONSIVE ── */
@media (max-width: 899px) {
    .wwd-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wwd-section {
        padding: 70px 20px;
    }

    .wwd-head {
        margin-bottom: 40px;
    }

    .wwd-eyebrow {
        font-size: 0.74rem;
        margin-bottom: 16px;
    }

    .wwd-eyebrow__line {
        width: 28px;
    }

    .wwd-steps {
        gap: 16px;
    }

    .wwd-step {
        padding: 1.9rem 1.5rem 1.75rem;
        border-radius: 16px;
    }

    .wwd-step__index {
        top: 1.25rem;
        right: 1.4rem;
        font-size: 0.78rem;
    }

    .wwd-step__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 1.25rem;
    }

    .wwd-step__icon svg {
        width: 21px;
        height: 21px;
    }

    .wwd-step__title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .wwd-step__desc {
        font-size: 0.86rem;
        line-height: 1.6;
    }
}

@media (max-width: 600px) {
    .wwd-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wwd-section {
        padding: 56px 16px;
    }

    .wwd-title {
        text-align: center;
        font-size: 1.6rem;
    }

    .wwd-head {
        margin-bottom: 32px;
    }

    .wwd-step {
        padding: 1.75rem 1.4rem;
    }

    .wwd-step__index {
        top: 1.1rem;
        right: 1.25rem;
        font-size: 0.72rem;
    }

    .wwd-step__icon {
        width: 38px;
        height: 38px;
        margin-bottom: 1.1rem;
    }

    .wwd-step__icon svg {
        width: 19px;
        height: 19px;
    }

    .wwd-step__title {
        font-size: 0.96rem;
    }

    .wwd-step__desc {
        font-size: 0.84rem;
    }
}





/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .gg-cta-section {
        padding: 80px 0;
    }

    .gg-cta-section .container {
        padding: 0 20px;
    }

    .gg-cta-section .gg-cta-box {
        padding: 60px 36px;
        border-radius: 20px;
    }

    .gg-cta-section .gg-tag {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }

    .gg-cta-section .gg-tag::before,
    .gg-cta-section .gg-tag::after {
        width: 22px;
    }

    .gg-cta-section h2 {
        margin-bottom: 18px;
    }

    .gg-cta-section p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .gg-cta-section .gg-cta-buttons {
        gap: 14px;
    }

    .gg-cta-section .gg-btn-primary,
    .gg-cta-section .gg-btn-secondary {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .gg-cta-section {
        padding: 70px 0;
    }

    .gg-cta-section .gg-cta-box {
        padding: 52px 28px;
        border-radius: 18px;
    }

    .gg-cta-section .gg-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .gg-cta-section .gg-btn-primary,
    .gg-cta-section .gg-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gg-cta-section {
        padding: 56px 0;
    }

    .gg-cta-section .container {
        padding: 0 16px;
    }

    .gg-cta-section .gg-cta-box {
        padding: 44px 22px;
        border-radius: 16px;
    }

    .gg-cta-section .gg-tag {
        font-size: 0.68rem;
        gap: 8px;
        margin-bottom: 16px;
    }

    .gg-cta-section .gg-tag::before,
    .gg-cta-section .gg-tag::after {
        width: 18px;
    }

    .gg-cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .gg-cta-section p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .gg-cta-section .gg-btn-primary,
    .gg-cta-section .gg-btn-secondary {
        padding: 13px 24px;
        font-size: 0.88rem;
    }
}



/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .about-footer {
        padding-top: 70px;
    }

    .about-footer .about-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .about-footer .about-footer-column:first-child {
        grid-column: 1 / -1;
    }

    .about-footer .about-footer-column:first-child p {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .about-footer .about-footer-header span {
        font-size: clamp(2.2rem, 9vw, 3.6rem);
    }

    .about-footer .about-footer-column img {
        height: 80px;
        margin-bottom: 16px;
    }

    .about-footer .about-footer-column h4 {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .about-footer .about-footer-column p,
    .about-footer .about-footer-column a {
        font-size: 0.88rem;
    }
}

@media (max-width: 600px) {
    .about-footer {
        padding-top: 56px;
    }

    .about-footer .about-footer-header {
        margin-bottom: 36px;
    }

    /* Keep Quick Links + Contact side by side, brand stacks full-width above */
    .about-footer .about-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
        padding-bottom: 40px;
    }

    .about-footer .about-footer-column:first-child {
        grid-column: 1 / -1;
    }

    .about-footer .about-footer-column a {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .about-footer {
        padding-top: 48px;
    }

    .about-footer .about-footer-header {
        margin-bottom: 28px;
        padding: 0 20px;
    }

    .about-footer .about-footer-header span {
        font-size: clamp(1.8rem, 10vw, 2.4rem);
    }

    .about-footer .about-footer-content {
        padding: 0 20px;
        gap: 28px 16px;
        padding-bottom: 32px;
    }

    .about-footer .about-footer-column img {
        height: 100px;
        margin-bottom: 14px;
    }

    .about-footer .about-footer-column h4 {
        font-size: 0.74rem;
        letter-spacing: 0.08em;
        margin-bottom: 14px;
    }

    .about-footer .about-footer-column p,
    .about-footer .about-footer-column a {
        font-size: 0.82rem;
    }

    .about-footer .about-footer-column:first-child p {
        max-width: 100%;
    }

    .about-footer .about-footer-bottom {
        padding: 20px 20px;
    }

    .about-footer .about-footer-bottom p {
        font-size: 0.78rem;
    }
}








/* ─────────────────────────
   RESPONSIVE
───────────────────────── */

@media (max-width: 860px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 240px 240px;
        gap: 12px;
    }

    .bcard--main       { grid-column: 1 / -1; grid-row: 1; }
    .bcard--top-center { grid-column: 1;       grid-row: 2; }
    .bcard--top-right  { grid-column: 2;       grid-row: 2; }
    .bcard--bot-left   { grid-column: 1;       grid-row: 3; }
    .bcard--bot-center { grid-column: 2;       grid-row: 3; }

    .bcard--bot-left .bcard__desc,
    .bcard--bot-center .bcard__desc { -webkit-line-clamp: 2; }
}

/* Mobile: uniform 2-column grid, equal card sizes, small gap.
   Hover states are unreliable on touch, so content shows flat. */
@media (max-width: 540px) {

    .portfolio-section{ padding:44px 0 50px; }

    .container{ padding:0 16px; }

    /* ── tagline: small, centered, static (not floating/absolute) ── */
    .portfolio-head{
        margin-bottom:32px;
    }

    .portfolio-tagline{
        position:static;
        transform:none;
        display:inline-flex;
        margin:0 auto 16px;
        font-size:9.5px;
        letter-spacing:.16em;
        padding:6px 13px;
    }

    .portfolio-title{
        font-size:clamp(24px, 6.5vw, 30px);
        margin-bottom:0;
    }

    /* ── grid: 2 equal cards per row, small gap ── */
    .bento-grid{
        grid-template-columns:1fr 1fr;
        grid-template-rows:none;
        gap:8px;
    }

    /* reset all explicit placements — every card is the same size,
       auto-flowing 2-per-row */
    .bcard--main,
    .bcard--top-center,
    .bcard--top-right,
    .bcard--bot-left,
    .bcard--bot-center{
        grid-column:auto;
        grid-row:auto;
    }

    .bcard{
        height:190px;
    }

    .bcard:hover,
    .bento-grid:hover .bcard:not(:hover){
        transform:none;
        opacity:1;
        filter:none;
    }

    /* compact card content — same treatment for every card now,
       including the former "main" card */
    .bcard__body,
    .bcard--main .bcard__body{
        padding:14px 14px 16px;
    }

    .bcard__cat{
        font-size:8px;
        padding:2px 8px;
        margin-bottom:6px;
    }

    .bcard__title,
    .bcard--main .bcard__title{
        font-size:13px;
        margin-bottom:5px;
    }

    .bcard__stack{ margin-bottom:10px; }

    .bcard__desc,
    .bcard--main .bcard__desc{
        font-size:10.5px;
        -webkit-line-clamp:2;
    }

    .bcard__reveal{ display:none; }

    .bcard__btn,
    .bcard--main .bcard__btn{
        font-size:9.5px;
        padding:5px 10px;
        gap:6px;
    }

    /* last card: center it instead of leaving it stuck on the left */
    .bento-grid > .bcard:last-child{
        grid-column:1 / -1;
        justify-self:center;
        width:calc(50% - 4px); /* same width as a normal 2-col card, accounting for the 8px gap */
    }
}

@media (max-width: 360px){
    .bento-grid{ gap:6px; }
    .bcard{ height:170px; }
    .bcard__title{ font-size:12px; }

    .bento-grid > .bcard:last-child{
        width:calc(50% - 3px); /* recalculated for the 6px gap at this breakpoint */
    }
}





/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .services-section{ padding:56px 0; }

  .services-container{ padding:0 16px; }

  /* ── eyebrow: small, centered, static, no animation ── */
  .services-head{
    max-width:100%;
    margin:0 auto 40px;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .services-eyebrow{
    position:static;
    transform:none;
    animation:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:fit-content;
    margin:0 auto 16px;
    font-size:9.5px;
    letter-spacing:.14em;
    padding:6px 13px;
  }

  .services-title{
    font-size:clamp(24px, 6.5vw, 30px);
    margin-bottom:10px;
  }

  .services-sub{
    font-size:13.5px;
  }

  /* ── 2 cards per row, compact ── */
  .services-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:36px;
  }

  .service-card{
    padding:18px 14px;
    border-radius:14px;
  }

  .service-card:hover{
    transform:none;
    box-shadow:var(--glass-shadow);
    border-color:var(--glass-border);
  }

  .service-card:hover::before{ opacity:0; }

  .service-card__icon{
    width:42px;
    height:42px;
    border-radius:12px;
    margin-bottom:14px;
  }

  .service-card__icon i{ font-size:16px; }

  .service-card:hover .service-card__icon{
    transform:none;
  }

  .service-card__body{ margin-bottom:14px; }

  .service-card__body h3{
    font-size:14.5px;
    margin-bottom:6px;
  }

  .service-card__body p{
    font-size:11.5px;
    line-height:1.55;
  }

  .service-card__footer{
    gap:6px;
  }

  .service-tag{
    font-size:9.5px;
    padding:4px 9px;
  }

  /* ── trust bar: small, centered, aligned, wraps in a compact row ── */
  .services-trust{
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:10px 16px;
    padding:16px 18px;
    border-radius:18px;
  }

  .trust-item{
    font-size:11px;
    gap:6px;
  }

  .trust-item i{
    font-size:13px;
  }

  .trust-divider{
    display:block;
    height:14px;
  }
}

@media (max-width: 380px) {

  .services-grid{ gap:8px; }

  .service-card{ padding:14px 10px; }

  .service-card__body h3{ font-size:13px; }

  .service-card__body p{ font-size:10.5px; }

  .services-trust{
    gap:8px 12px;
    padding:14px;
  }

  .trust-item{ font-size:10px; }
}