/* ============================================================
   QAF International SPC + Amirah® — Global Stylesheet
   Theme: Cream/Beige · Navy headings · Crimson red · Gold accents
   Fonts: Cinzel (headings) + Lora (serif body) + Nunito Sans (UI)
   ============================================================ */

/* ── GOOGLE FONTS (add to every <head>):
   <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Lora:ital,wght@0,400;0,600;1,400&family=Nunito+Sans:wght@300;400;600;700;800&display=swap" rel="stylesheet">
   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css">
*/

/* ── CSS VARIABLES ── */
:root {
  --crimson:       #C8102E;
  --crimson-dark:  #9E0B22;
  --crimson-light: #F5E6E9;
  --navy:          #1B2A4A;
  --navy-light:    #2E3E5C;
  --gold:          #C5963A;
  --gold-light:    #E8C97A;
  --cream:         #F5F0E8;
  --cream-dark:    #EDE6D6;
  --cream-mid:     #F9F6F0;
  --white:         #FFFFFF;
  --text-body:     #4A4A4A;
  --text-muted:    #8A8A8A;
  --border-cream:  #DDD5C4;
  --shadow-sm:     0 2px 12px rgba(27,42,74,0.07);
  --shadow-warm:   0 4px 24px rgba(27,42,74,0.08);
  --shadow-card:   0 8px 40px rgba(27,42,74,0.12);
  --shadow-hover:  0 16px 60px rgba(27,42,74,0.18);
  --nav-height:    76px;
  --radius-sm:     2px;
  --transition:    0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul {
  list-style: none;
}
button { font-family: inherit; cursor: pointer; }

/* ── GOLD RULE DIVIDER ── */
.gold-rule {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  margin: 14px 0 0; display: block;
}
.gold-rule-center { margin: 14px auto 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245,240,232,0.97);
  border-bottom: 1px solid var(--border-cream);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.logo-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-badges { display: flex; align-items: center; gap: 8px; }
.logo-qaf {
  background: var(--crimson); color: white;
  font-family: 'Cinzel', serif; font-weight: 900; font-size: 20px;
  padding: 5px 14px; letter-spacing: 2px; border-radius: 4px;
}
.logo-amirah {
  background: linear-gradient(135deg, var(--crimson) 0%, #e84a6f 100%);
  color: white; font-family: 'Cinzel', serif; font-weight: 700; font-size: 13px;
  padding: 5px 12px; letter-spacing: 1px; border-radius: 20px;
}
.logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0;
  line-height: 1.2;
  white-space: nowrap;
}

/* Nav links */
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 13px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; padding-bottom: 3px; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--crimson);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--crimson); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Nav dropdown — Our Brand */
.nav-dropdown { position: relative; }

/* Trigger button (replaces older <details><summary> pattern) */
.nav-dropdown-btn{
  cursor: pointer;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  position: relative;
  padding: 0 0 3px 0;
  transition: color var(--transition);
}

.nav-dropdown-btn .nav-chevron{
  transition: transform var(--transition);
}

.nav-dropdown.open .nav-dropdown-btn{
  color: var(--crimson);
}

.nav-dropdown.open .nav-chevron{
  transform: rotate(180deg);
}

.nav-dropdown-btn::after{
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn{
  color: var(--crimson);
}

.nav-dropdown-btn:hover::after,
.nav-dropdown.open .nav-dropdown-btn::after{
  transform: scaleX(1);
}

.nav-sub-links{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: rgba(245,240,232,0.99);
  border: 1px solid var(--border-cream);
  box-shadow: 0 14px 40px rgba(27,42,74,0.12);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  z-index: 1001;
  display: none;
}
/* Show submenu when the existing blade JS toggles `.is-open` */
.nav-sub-links.is-open{ display: block; }

.nav-sub-links a{
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  color: var(--navy);
  text-decoration: none;
}

/* Remove underline animation inherited from `.nav-links a::after` */
.nav-sub-links a::after{ display: none; }

.nav-sub-links a:hover{
  color: var(--crimson);
  background: rgba(200,16,46,0.08);
}
.nav-sub-links a.active{
  color: var(--crimson);
  background: rgba(200,16,46,0.10);
}

/* Mobile menu dropdown behavior */
.nav-open .nav-sub-links{
  position: static;
  display: none;
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 0 0 6px 0;
  margin: 0;
}
.nav-open .nav-sub-links.is-open{ display: block; }
.nav-open .nav-dropdown-btn{
  padding: 13px 0;
  display: block;
  width: 100%;
  justify-content: space-between;
}
.nav-open .nav-sub-links li{ border-bottom: 1px solid var(--border-cream); }
.nav-open .nav-sub-links li:last-child{ border-bottom: none; }
.nav-open .nav-sub-links a{
  padding: 10px 0 10px 14px;
  font-size: 13px;
}
.nav-open .nav-sub-links a:hover{
  background: rgba(200,16,46,0.08);
}

/* Nav CTA */
.nav-cta {
  background: var(--crimson); color: white;
  padding: 10px 24px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius-sm);
  transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
  display: inline-block; white-space: nowrap;
}
.nav-cta:hover {
  background: var(--crimson-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.3); color: white;
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1.5px solid var(--border-cream);
  padding: 8px 10px; cursor: pointer; width: 42px; height: 42px;
  justify-content: center; align-items: center;
  transition: border-color var(--transition);
}
.ham-bar {
  display: block; width: 18px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s; transform-origin: center;
}
.nav-hamburger.is-open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open .ham-bar:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-hamburger:hover { border-color: var(--crimson); background: var(--crimson-light); }

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.container { max-width: 1320px; margin: 0 auto; padding: 0 60px; }
section { padding: 96px 0; }
.pt-nav { padding-top: calc(var(--nav-height) + 0px); }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 10px;
  margin-top: 20px;
  display: block;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 700; color: var(--navy); line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em { color: var(--crimson); font-style: normal; }

/* Buttons */
.btn-primary {
  background: var(--crimson); color: white; border: none;
  padding: 14px 36px; font-family: 'Nunito Sans', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; display: inline-block;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--crimson-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,0.35); color: white;
}
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
  padding: 13px 32px; font-family: 'Nunito Sans', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; display: inline-block;
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.btn-outline:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5);
  padding: 13px 32px; font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; display: inline-block;
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); color: white; }
.btn-white {
  background: white; color: var(--crimson);
  padding: 14px 32px; font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; border-radius: var(--radius-sm);
  transition: all var(--transition); display: inline-block;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); color: var(--crimson); }

/* Brand badges */
.brand-badge-qaf {
  display: inline-block; background: var(--crimson); color: white;
  font-family: 'Cinzel', serif; font-weight: 900; font-size: 11px;
  padding: 3px 10px; border-radius: 3px; letter-spacing: 2px;
}
.brand-badge-amirah {
  display: inline-block;
  background: linear-gradient(135deg, #C8102E, #e84a6f);
  color: white; font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 10px; padding: 3px 10px; border-radius: 12px; letter-spacing: 1px;
}

/* Pill tags */
.pill-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--crimson); color: white;
  font-size: 13px; font-weight: 700; padding: 10px 18px;
  margin-bottom: 4px; width: 100%;
}
.pill-tag::before { content: '•'; font-size: 18px; flex-shrink: 0; }

/* ============================================================
   ANIMATIONS & INTERSECTION OBSERVER
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

/* ============================================================
   GLOBAL BACKGROUND ANIMATION (lightweight)
   ============================================================ */
.bg-animated{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
          radial-gradient(900px circle at 10% 10%, rgba(197,150,58,0.10), transparent 55%),
          radial-gradient(700px circle at 85% 20%, rgba(200,16,46,0.08), transparent 52%),
          radial-gradient(800px circle at 45% 90%, rgba(27,42,74,0.06), transparent 60%);
}
.bg-animated::before,
.bg-animated::after{
  content:'';
  position:absolute;
  inset:-25%;
  pointer-events:none;
  filter: blur(60px);
  opacity: 0.35;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.bg-animated::before{
  background: radial-gradient(circle at 25% 30%, rgba(200,16,46,0.16), transparent 55%);
  animation: bg-float-1 16s ease-in-out infinite;
}
.bg-animated::after{
  background: radial-gradient(circle at 70% 60%, rgba(197,150,58,0.14), transparent 55%);
  animation: bg-float-2 20s ease-in-out infinite;
}

@keyframes bg-float-1{
  0%{ transform: translate3d(-3%, -2%, 0) scale(1); }
  50%{ transform: translate3d(4%, 3%, 0) scale(1.05); }
  100%{ transform: translate3d(-3%, -2%, 0) scale(1); }
}
@keyframes bg-float-2{
  0%{ transform: translate3d(3%, -2%, 0) scale(1); }
  50%{ transform: translate3d(-4%, 3%, 0) scale(1.04); }
  100%{ transform: translate3d(3%, -2%, 0) scale(1); }
}

.site-content{
  position: relative;
  z-index: 1;
}
footer{
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce){
  .bg-animated::before,
  .bg-animated::after{
    animation: none !important;
  }
}

/* Staggered hero animations */
.anim-1 { animation: fadeUp 0.55s 0.05s ease both; }
.anim-2 { animation: fadeUp 0.55s 0.12s ease both; }
.anim-3 { animation: fadeUp 0.55s 0.19s ease both; }
.anim-4 { animation: fadeUp 0.55s 0.26s ease both; }
.anim-5 { animation: fadeUp 0.55s 0.33s ease both; }
.anim-6 { animation: fadeUp 0.55s 0.40s ease both; }

/* Scroll fade-in */
.fade-card {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-card.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION MOBILE MENU
   ============================================================ */
.nav-open {
  display: flex !important;
  flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(245,240,232,0.99);
  border-bottom: 2px solid var(--crimson);
  padding: 20px 48px 28px;
  gap: 0; box-shadow: 0 12px 40px rgba(27,42,74,0.12);
}
.nav-open li { border-bottom: 1px solid var(--border-cream); }
.nav-open li:last-child { border-bottom: none; }
.nav-open a { padding: 13px 0; display: block; font-size: 14px; }

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height));
  background: var(--cream);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
          radial-gradient(ellipse 60% 50% at 70% 50%, rgba(197,150,58,0.07) 0%, transparent 70%),
          radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,16,46,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--crimson-light); color: var(--crimson);
  font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 7px 16px; margin-bottom: 28px;
}
.hero-eyebrow span { width: 5px; height: 5px; background: var(--crimson); border-radius: 50%; animation: pulse-dot 2s infinite; }
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900; line-height: 1.08;
  color: var(--navy); letter-spacing: -0.01em; margin-bottom: 8px;
}
.hero h1 em { color: var(--crimson); font-style: normal; }
.hero-tagline {
  font-family: 'Lora', serif; font-size: 15px; font-style: italic;
  color: var(--text-muted); margin-bottom: 24px; letter-spacing: 0.02em;
}
.hero-sub {
  font-size: 16px; color: var(--text-body); line-height: 1.75;
  max-width: 480px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; align-items: center; margin-bottom: 52px; flex-wrap: wrap; }

/* Hero stats */
.hero-stats { display: flex; gap: 0; border-top: 1px solid var(--border-cream); padding-top: 32px; flex-wrap: wrap; }
.hero-stat { padding: 0 28px 0 0; margin-right: 28px; border-right: 1px solid var(--border-cream); }
.hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-stat-num {
  font-family: 'Cinzel', serif; font-size: 32px; font-weight: 900;
  color: var(--navy); line-height: 1;
}
.hero-stat-num sup { color: var(--crimson); font-size: 18px; }
.hero-stat-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* Hero product showcase */
.hero-right { position: relative; }
.hero-product-showcase {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3px;
}
.hero-prod-cell {
  background: var(--cream-dark); border: 1px solid var(--border-cream);
  padding: 28px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.hero-prod-cell:hover { background: white; border-color: var(--crimson); transform: scale(1.03); z-index: 1; }
.hero-prod-cell.highlight { background: var(--crimson); border-color: var(--crimson); }
.hero-prod-cell.highlight:hover { background: var(--crimson-dark); }
.hero-prod-icon { font-size: 30px; }
.hero-prod-label { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
.hero-prod-cell.highlight .hero-prod-label { color: rgba(255,255,255,0.85); }

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker-strip {
  background: var(--crimson); padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: white; padding: 0 40px;
}
.ticker-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   HOME — COMPANY OVERVIEW
   ============================================================ */
.overview { background: var(--cream-mid); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.overview-content p { font-size: 15.5px; color: var(--text-body); line-height: 1.8; margin-top: 22px; }
.overview-pull {
  margin-top: 28px; padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: var(--cream); font-family: 'Lora', serif;
  font-size: 15px; font-style: italic; color: var(--navy); line-height: 1.7;
}
.comp-pills { margin-top: 32px; display: flex; flex-direction: column; gap: 6px; }

/* Warehouse visual card */
.warehouse-card {
  background: var(--navy); height: 340px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.warehouse-card::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
          45deg, transparent, transparent 20px,
          rgba(255,255,255,0.01) 20px, rgba(255,255,255,0.01) 21px
  );
}
.warehouse-inner { text-align: center; z-index: 2; position: relative; padding: 40px; }
.warehouse-icon { font-size: 64px; margin-bottom: 16px; }
.warehouse-label { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; text-transform: uppercase; }

.brands-floating {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--crimson); padding: 20px 28px; z-index: 3;
  display: flex; flex-direction: column; gap: 8px;
}
.brands-floating-title { font-size: 9px; color: rgba(255,255,255,0.6); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px; }

/* ============================================================
   HOME — CORE BUSINESS
   ============================================================ */
.core-business { background: var(--cream); }
.core-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.core-card {
  background: var(--cream-mid); border: 1px solid var(--border-cream);
  padding: 40px 32px; transition: border-color 0.3s, background 0.3s, transform 0.25s;
  position: relative; overflow: hidden;
}
.core-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.core-card:hover { background: white; border-color: var(--crimson); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.core-card:hover::after { transform: scaleX(1); }
.core-card-num {
  font-family: 'Cinzel', serif; font-size: 52px; font-weight: 900;
  color: var(--border-cream); line-height: 1; margin-bottom: 12px; transition: color 0.3s;
}
.core-card:hover .core-card-num { color: rgba(200,16,46,0.1); }
.core-icon { font-size: 36px; margin-bottom: 16px; }
.core-title { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.core-desc { font-size: 13.5px; color: var(--text-body); line-height: 1.7; }
.core-badge {
  display: inline-block; margin-top: 16px;
  background: var(--crimson); color: white;
  font-size: 9px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 12px;
}

/* ============================================================
   HOME — BRANDS SECTION
   ============================================================ */
.brands-section { background: var(--cream-dark); }
.brands-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 52px; }
.brand-card {
  background: var(--cream-mid); border: 1px solid var(--border-cream);
  overflow: hidden; transition: box-shadow 0.3s, transform 0.3s;
}
.brand-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.brand-card-header {
  padding: 32px 36px 24px; border-bottom: 1px solid var(--border-cream);
  display: flex; align-items: center; gap: 16px;
}
.brand-card-logo {
  font-family: 'Cinzel', serif; font-weight: 900; font-size: 20px;
  padding: 8px 18px; color: white; border-radius: 4px;
}
.brand-card-logo.qaf { background: var(--crimson); letter-spacing: 3px; }
.brand-card-logo.amirah { background: linear-gradient(135deg, #C8102E, #e84a6f); border-radius: 20px; letter-spacing: 1px; font-size: 14px; }
.brand-card-tagline { font-size: 11px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.brand-card-banner {
  background: var(--crimson); color: white;
  font-size: 10px; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 8px 20px; text-align: center;
}
.brand-card-banner.gold { background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); color: var(--navy); }
.brand-visual { height: 180px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 64px; }
.brand-card-body { padding: 24px 36px 32px; }
.brand-card-body p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 14px; }
.brand-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.brand-feature::before { content: ''; width: 20px; height: 2px; background: var(--crimson); flex-shrink: 0; }

/* ============================================================
   HOME — DISTRIBUTION
   ============================================================ */
.distribution { background: var(--navy); }
.distribution .section-tag { color: var(--gold-light); }
.distribution .section-title { color: white; }
.distribution .gold-rule { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.dist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 52px; align-items: start; }
.dist-channels p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 24px; }
.channel-list { display: flex; flex-direction: column; gap: 6px; margin-top: 24px; }
.channel-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  padding: 13px 18px; transition: background 0.2s, border-color 0.2s;
}
.channel-item:hover { background: rgba(200,16,46,0.15); border-color: rgba(200,16,46,0.3); }
.channel-item-icon { font-size: 18px; flex-shrink: 0; }
.channel-item-text { font-size: 13.5px; font-weight: 700; color: white; letter-spacing: 0.04em; }
.coverage-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.coverage-city {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  padding: 20px; transition: background 0.2s;
  display: flex; align-items: center; gap: 12px;
}
.coverage-city:hover { background: rgba(200,16,46,0.15); }
.coverage-dot { width: 8px; height: 8px; background: var(--crimson); border-radius: 50%; flex-shrink: 0; }
.coverage-name { font-size: 14px; font-weight: 700; color: white; }

/* ============================================================
   PRODUCT CARDS (shared across pages)
   ============================================================ */
.products-section { background: var(--cream-mid); }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 24px; }
.filter-tabs { display: flex; gap: 3px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--border-cream);
  color: var(--text-muted); cursor: pointer; transition: all 0.2s;
  font-family: 'Nunito Sans', sans-serif;
}
.filter-tab:hover, .filter-tab.active { background: var(--crimson); border-color: var(--crimson); color: white; }

.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.products-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ── PRODUCT CARD — Redesigned (large image + minimal strip) ── */
.product-card {
  background: var(--cream-mid);
  overflow: hidden;
  border: 1px solid var(--border-cream);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--crimson);
  box-shadow: var(--shadow-hover);
}

/* Large image area */
.product-img-wrap {
  position: relative;
  height: 280px;
  background: var(--cream-dark);
  overflow: hidden;
  flex-shrink: 0;
}
.product-img-wrap:hover .product-img-placeholder { transform: scale(1.08); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; opacity: 0.35;
  transition: transform 0.4s ease;
}
/* When a real bg-image is set, show it */
.product-img-wrap[style*="background-image"] {
  background-size: cover;
  background-position: center;
}

/* Brand tag — top left */
.product-brand-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Cinzel', serif; font-weight: 900; font-size: 9px;
  padding: 4px 11px; color: white; letter-spacing: 1px;
  z-index: 2;
}
.product-brand-tag.qaf { background: var(--crimson); }
.product-brand-tag.amirah {
  background: linear-gradient(135deg, #C8102E, #e84a6f);
  border-radius: 20px;
}

/* Halal dot — top right */
.product-halal-dot {
  position: absolute; top: 12px; right: 12px;
  background: rgba(27,42,74,0.85);
  color: #fff;
  font-size: 9px; font-weight: 700;
  padding: 3px 9px;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Minimal info strip — bottom */
.product-info-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--border-cream);
  background: var(--cream-mid);
}
.product-info-strip .product-name {
  font-size: 13px; font-weight: 700;
  color: var(--navy); line-height: 1.35;
  flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-inquire-btn {
  flex-shrink: 0;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--crimson);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
  transition: gap 0.2s, color 0.2s;
}
.product-inquire-btn:hover { gap: 9px; color: var(--crimson-dark); }

/* Legacy compatibility aliases */
.product-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; line-height: 1.3; }
.halal-badge { font-size: 10px; color: var(--text-muted); }

/* Product card bg gradients */
.pb1 { background: linear-gradient(135deg, #fef9e7, #fde68a55); }
.pb2 { background: linear-gradient(135deg, #fff0f0, #fca5a530); }
.pb3 { background: linear-gradient(135deg, #f0fff4, #a7f3d040); }
.pb4 { background: linear-gradient(135deg, #fff7ed, #fed7aa40); }
.pb5 { background: linear-gradient(135deg, #fdf4ff, #e9d5ff40); }
.pb6 { background: linear-gradient(135deg, #f0fdf4, #bbf7d040); }
.pb7 { background: linear-gradient(135deg, #fef2f2, #fecaca40); }
.pb8 { background: linear-gradient(135deg, #fffbeb, #fde68a40); }

/* ============================================================
   HOME — WHY QAF
   ============================================================ */
.why-us { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.why-card {
  padding: 44px 32px; border: 1px solid var(--border-cream);
  background: var(--cream-mid); transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.why-card:hover { border-color: var(--gold); background: white; box-shadow: var(--shadow-card); }
.why-icon {
  width: 56px; height: 56px; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; transition: background 0.3s;
}
.why-card:hover .why-icon { background: var(--crimson-light); }
.why-title { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-desc { font-size: 13.5px; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   HOME — LEADERSHIP
   ============================================================ */
/* ── LEADERSHIP — Redesigned ── */
.leadership { background: var(--navy); padding-bottom: 80px; }
.leadership .section-tag { color: var(--gold-light); }
.leadership .section-title { color: white; }
.leadership .gold-rule { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.leadership-header { margin-bottom: 52px; }

/* Managing Director — large hero card */
.md-card-v2 {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  margin-bottom: 48px;
}

.md-img-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.md-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.md-card-v2:hover .md-photo { transform: scale(1.04); }
.md-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; opacity: 0.25;
}
.md-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy) 100%);
  pointer-events: none;
}

.md-info {
  padding: 48px 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.md-badge {
  display: inline-block;
  font-size: 9px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  margin-bottom: 18px;
  width: fit-content;
}
.md-name-v2 {
  font-family: 'Cinzel', serif;
  font-size: 28px; font-weight: 700;
  color: white; line-height: 1.2;
  margin-bottom: 6px;
}
.md-designation-v2 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.md-bio {
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin-bottom: 28px;
}
.md-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.md-stat-row {
  display: flex; gap: 32px;
}
.md-stat {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.md-stat span {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 22px; font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
}

/* Team Members Grid — photo cards */
.team-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.team-card-v2 {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.team-card-v2:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(197,150,58,0.35);
}
.team-img-wrap {
  height: 220px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  position: relative;
}
.team-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.team-card-v2:hover .team-photo { transform: scale(1.05); }
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; opacity: 0.2;
}
.team-info-v2 {
  padding: 18px 20px 20px;
}
.team-name-v2 {
  font-family: 'Cinzel', serif;
  font-size: 13px; font-weight: 700;
  color: white; margin-bottom: 5px; line-height: 1.3;
}
.team-role-v2 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── Keep old selectors as aliases so nothing breaks ── */
.md-card {
  background: var(--crimson); padding: 36px 40px;
  display: flex; align-items: center; gap: 28px;
  margin-top: 48px; margin-bottom: 28px;
}
.md-avatar {
  width: 72px; height: 72px; background: rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.md-name { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; color: white; }
.md-role { font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.team-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  padding: 24px 28px; transition: background 0.2s;
}
.team-card:hover { background: rgba(255,255,255,0.08); }
.team-name { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700; color: white; margin-bottom: 4px; }
.team-role { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  margin-top: var(--nav-height); background: var(--navy); padding: 96px 0;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(197,150,58,0.08) 0%, transparent 60%);
}
.about-hero .section-tag { color: var(--gold-light); }
.about-hero h1 {
  font-family: 'Cinzel', serif; font-size: clamp(34px,4vw,56px);
  font-weight: 900; color: white; line-height: 1.08; margin-top: 16px; max-width: 640px;
}
.about-hero h1 em { color: var(--gold-light); font-style: normal; }
.about-hero p { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 520px; margin-top: 20px; }

/* Vision / Mission */
.vision-mission { background: var(--cream-mid); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
.vm-card { padding: 40px 36px; background: var(--crimson); }
.vm-card-label { font-family: 'Cinzel', serif; font-size: 24px; font-weight: 900; color: white; margin-bottom: 16px; }
.vm-card-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.8; font-family: 'Lora', serif; }

/* Story section */
.about-story { background: var(--cream); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-story-text h2 { font-family: 'Cinzel', serif; font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.about-story-text p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 18px; }
.timeline-item { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border-cream); }
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: 'Cinzel', serif; font-size: 24px; font-weight: 900; color: var(--crimson); min-width: 72px; line-height: 1.2; flex-shrink: 0; }
.timeline-content h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.timeline-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Strategy */
.strategy { background: var(--cream-dark); }
.strategy-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 52px; }
.strategy-card {
  background: var(--cream-mid); border: 1px solid var(--border-cream);
  padding: 28px 20px; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.strategy-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-card); }
.strategy-icon { font-size: 40px; }
.strategy-title { font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700; color: var(--navy); text-align: center; line-height: 1.3; }
.strategy-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; text-align: center; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-hero {
  margin-top: var(--nav-height); background: var(--cream-dark);
  padding: 30px 0; border-bottom: 1px solid var(--border-cream);
}
.products-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.products-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(30px,4vw,52px); font-weight: 900; color: var(--navy); margin-top: 16px; line-height: 1.08; }
.products-hero p { font-size: 16px; color: var(--text-muted); margin-top: 14px; max-width: 480px; line-height: 1.7; }
.products-hero-stats { display: flex; gap: 2px; margin-top: 36px; }
.phs-box { background: white; border: 1px solid var(--border-cream); padding: 18px 22px; flex: 1; }
.phs-num { font-family: 'Cinzel', serif; font-size: 28px; font-weight: 900; color: var(--crimson); line-height: 1; }
.phs-label { font-size: 9px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 5px; }
.products-hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.cert-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--cream); border: 1px solid var(--border-cream); padding: 7px 14px; font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 0.06em; }
.cert-badge span { font-size: 16px; }
.hero-product-visual { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }

/* Filter bar */
.products-filter-bar {
  background: var(--cream);  border-bottom: 1px solid var(--border-cream);
  position: sticky; top: var(--nav-height); z-index: 99;
  padding: 16px 0;
}
.filter-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.filter-label { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

/* Category header */
.cat-header { padding: 60px 0 40px; border-top: 3px solid var(--crimson); margin-top: 60px; }
.cat-header:first-of-type { margin-top: 0; border-top: none; padding-top: 20px; }
.cat-header-inner { display: flex; align-items: center; gap: 24px; }
.cat-header-icon { font-size: 48px; }
.cat-header-brand { display: inline-block; margin-bottom: 8px; }
.cat-header-title { font-family: 'Cinzel', serif; font-size: 24px; font-weight: 700; color: var(--navy); }
.cat-header-desc { font-size: 14px; color: var(--text-muted); margin-top: 6px; max-width: 480px; line-height: 1.6; }

.products-full { background: var(--cream-mid); padding: 80px 0; }
.products-cta {
  margin-top: 60px; background: var(--navy); padding: 48px 52px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.products-cta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; }
.products-cta-title { font-family: 'Cinzel', serif; font-size: 26px; font-weight: 700; color: white; line-height: 1.2; }

/* ============================================================
   PRODUCT DETAILS PAGE
   ============================================================ */
.product-details-hero {
  margin-top: var(--nav-height); background: var(--cream-dark);
  padding: 80px 0; border-bottom: 1px solid var(--border-cream);
}
.product-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.product-details-image {
  background: var(--cream); border: 1px solid var(--border-cream);
  height: 420px; display: flex; align-items: center; justify-content: center;
  font-size: 120px; position: relative;
}
.product-details-badges { position: absolute; top: 20px; left: 20px; display: flex; flex-direction: column; gap: 6px; }
.product-details-info {}
.product-details-title { font-family: 'Cinzel', serif; font-size: clamp(24px, 2.8vw, 38px); font-weight: 900; color: var(--navy); line-height: 1.1; margin: 16px 0 8px; }
.product-details-subtitle { font-size: 15px; color: var(--text-muted); font-family: 'Lora', serif; font-style: italic; margin-bottom: 20px; }
.product-details-desc { font-size: 15.5px; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.size-option {
  padding: 8px 18px; border: 1.5px solid var(--border-cream);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--cream); color: var(--navy); cursor: pointer; transition: all 0.2s;
}
.size-option:hover, .size-option.active { border-color: var(--crimson); background: var(--crimson-light); color: var(--crimson); }
.product-certs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.product-cert { display: flex; align-items: center; gap: 6px; background: var(--cream); border: 1px solid var(--border-cream); padding: 6px 12px; font-size: 11px; font-weight: 700; color: var(--navy); }

/* Tab system */
.product-tabs-section { background: var(--cream-mid); padding: 80px 0; }
.tab-nav { display: flex; border-bottom: 2px solid var(--border-cream); margin-bottom: 48px; }
.tab-btn {
  padding: 14px 28px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; background: none; border: none; color: var(--text-muted);
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s; font-family: 'Nunito Sans', sans-serif;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--crimson); border-bottom-color: var(--crimson); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane h3 { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.tab-pane p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) { background: var(--cream); }
.specs-table td { padding: 13px 18px; font-size: 14px; border: 1px solid var(--border-cream); }
.specs-table td:first-child { font-weight: 700; color: var(--navy); width: 35%; background: var(--cream-dark); }
.review-item { background: var(--cream); border: 1px solid var(--border-cream); padding: 24px 28px; margin-bottom: 16px; }
.review-author { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 8px; }
.review-text { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { margin-top: var(--nav-height); background: var(--crimson); padding: 80px 0; }
.contact-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(30px,4vw,52px); font-weight: 900; color: white; margin-top: 14px; line-height: 1.08; }
.contact-hero h1 em { color: var(--gold-light); font-style: normal; }
.contact-hero p { font-size: 17px; color: rgba(255,255,255,0.75); margin-top: 14px; }
.contact-hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 36px; }
.chs-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12); padding: 20px; }
.chs-icon { font-size: 20px; margin-bottom: 8px; }
.chs-label { font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.chs-val { font-size: 13px; font-weight: 700; color: white; margin-top: 4px; }
.contact-quick-links { display: flex; flex-direction: column; gap: 3px; }
.cql-item {
  display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1); padding: 18px 20px;
  text-decoration: none; transition: background 0.2s, border-color 0.2s;
}
.cql-item:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.2); }
.cql-icon { font-size: 22px; flex-shrink: 0; }
.cql-text { flex: 1; }
.cql-label { font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.cql-val { font-size: 14px; font-weight: 700; color: white; margin-top: 3px; }
.cql-arrow { font-size: 16px; color: rgba(255,255,255,0.3); }

.contact-body { background: var(--cream-mid); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px 0; }
.contact-form-title { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.6; }
.contact-info-title { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-info-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.6; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border-cream); background: var(--cream);
  font-family: 'Nunito Sans', sans-serif; font-size: 14px; color: var(--navy);
  outline: none; transition: border-color 0.2s, background 0.2s;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--crimson); background: white; }
.form-textarea { height: 150px; resize: vertical; }
.form-select { cursor: pointer; }
.form-submit {
  width: 100%; background: var(--crimson); color: white; padding: 15px;
  font-family: 'Nunito Sans', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; border-radius: 0;
}
.form-submit:hover { background: var(--crimson-dark); transform: translateY(-2px); }
.form-success {
  display: none; background: #f0fff4; border: 1.5px solid #22c55e;
  padding: 16px 20px; margin-bottom: 20px; font-size: 14px; font-weight: 700;
  color: #15803d; align-items: center; gap: 10px;
}
.form-success.show { display: flex; }

/* Contact info */
.contact-info-item { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--border-cream); }
.contact-info-item:last-of-type { border-bottom: none; }
.info-icon { width: 46px; height: 46px; background: var(--crimson-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.info-content h4 { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.info-content p { font-size: 14px; color: var(--navy); line-height: 1.6; }
.branch-list { display: flex; flex-direction: column; gap: 3px; margin-top: 28px; }
.branch-item { display: flex; align-items: center; gap: 12px; background: var(--cream); border: 1px solid var(--border-cream); padding: 14px 18px; }
.branch-dot { width: 8px; height: 8px; background: var(--crimson); border-radius: 50%; flex-shrink: 0; }
.branch-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.branch-type { font-size: 10px; color: var(--text-muted); margin-left: auto; letter-spacing: 0.08em; text-transform: uppercase; }
.map-embed-wrap {
  margin-top: 28px; border: 1px solid var(--border-cream); overflow: hidden;
  background: var(--cream-dark); height: 220px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
}
.map-embed-icon { font-size: 36px; }
.map-embed-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.map-embed-sub { font-size: 11px; color: var(--text-muted); }
.social-row { display: flex; gap: 8px; margin-top: 28px; }
.social-btn {
  width: 42px; height: 42px; border: 1.5px solid var(--border-cream);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.social-btn:hover { border-color: var(--crimson); background: var(--crimson-light); }

/* FAQ */
.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 52px; }
.faq-section .faq-item { background: var(--cream-mid); border: 1px solid var(--border-cream); padding: 28px 32px; cursor: pointer; transition: border-color 0.2s; }
.faq-section .faq-item:hover { border-color: var(--crimson); }
.faq-section .faq-q { font-size: 14px; font-weight: 700; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-section .faq-icon { font-size: 18px; color: var(--crimson); flex-shrink: 0; transition: transform 0.25s; }
.faq-section .faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-section .faq-a { font-size: 13.5px; color: var(--text-body); line-height: 1.7; margin-top: 14px; display: none; }
.faq-section .faq-item.open .faq-a { display: block; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-hero {
  margin-top: var(--nav-height); background: var(--navy); padding: 80px 0;
  position: relative; overflow: hidden;
}
.blog-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(197,150,58,0.1) 0%, transparent 60%);
}
.blog-hero .section-tag { color: var(--gold-light); }
.blog-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(30px,4vw,52px); font-weight: 900; color: white; margin-top: 16px; line-height: 1.08; max-width: 640px; }
.blog-hero h1 em { color: var(--gold-light); font-style: normal; }
.blog-hero p { font-size: 17px; color: rgba(255,255,255,0.55); margin-top: 16px; max-width: 500px; line-height: 1.8; }

.blog-main { background: var(--cream-mid); padding: 80px 0; }
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; }
.blog-grid { display: flex; flex-direction: column; gap: 32px; }
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--cream); border: 1px solid var(--border-cream); overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.blog-featured:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.blog-featured-img { background: var(--navy); min-height: 280px; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.blog-featured-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-cat { display: inline-block; background: var(--crimson); color: white; font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 12px; margin-bottom: 14px; }
.blog-cat.gold { background: var(--gold); color: var(--navy); }
.blog-title { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; text-decoration: none; display: block; }
.blog-title:hover { color: var(--crimson); }
.blog-excerpt { font-size: 14px; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 11px; color: var(--text-muted); }
.blog-author-dot { width: 28px; height: 28px; background: var(--crimson-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.blog-card { display: grid; grid-template-columns: 180px 1fr; gap: 0; background: var(--cream); border: 1px solid var(--border-cream); overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
.blog-card:hover { box-shadow: var(--shadow-card); border-color: var(--crimson); }
.blog-card-img { background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card-body { padding: 24px 28px; }
.blog-card-title { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; text-decoration: none; display: block; line-height: 1.3; }
.blog-card-title:hover { color: var(--crimson); }
.blog-card-excerpt { font-size: 13.5px; color: var(--text-body); line-height: 1.7; margin-bottom: 14px; }

/* Blog sidebar */
.blog-sidebar {}
.sidebar-widget { background: var(--cream); border: 1px solid var(--border-cream); padding: 28px; margin-bottom: 24px; }
.sidebar-widget-title { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--crimson); }
.sidebar-cats { display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px; background: var(--cream-mid); border: 1px solid var(--border-cream); font-size: 13px; color: var(--navy); font-weight: 600; text-decoration: none; transition: background 0.2s, color 0.2s; }
.sidebar-cat:hover { background: var(--crimson); color: white; }
.sidebar-cat span { font-size: 11px; background: var(--cream-dark); padding: 2px 8px; font-weight: 800; }
.sidebar-cat:hover span { background: rgba(255,255,255,0.2); }
.recent-post { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-cream); }
.recent-post:last-child { border-bottom: none; }
.recent-post-img { width: 60px; height: 60px; background: var(--cream-dark); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.recent-post-title { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.35; text-decoration: none; display: block; }
.recent-post-title:hover { color: var(--crimson); }
.recent-post-date { font-size: 10px; color: var(--text-muted); margin-top: 5px; }

/* ============================================================
   BLOG DETAILS PAGE
   ============================================================ */
.blog-details-hero {
  margin-top: var(--nav-height); background: var(--navy);
  padding: 80px 0; position: relative; overflow: hidden;
}
.blog-details-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(197,150,58,0.1) 0%, transparent 60%);
}
.blog-details-hero .blog-cat { margin-bottom: 18px; }
.blog-details-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(26px,3.5vw,48px); font-weight: 900; color: white; line-height: 1.12; max-width: 720px; margin-bottom: 20px; }
.blog-details-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.blog-author-card { display: flex; align-items: center; gap: 12px; }
.blog-author-avatar { width: 42px; height: 42px; background: var(--crimson); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.blog-author-name { font-size: 14px; font-weight: 700; color: white; }
.blog-author-role { font-size: 11px; color: rgba(255,255,255,0.45); }
.blog-meta-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }
.blog-meta-item { font-size: 12px; color: rgba(255,255,255,0.45); }

.blog-details-body { background: var(--cream-mid); padding: 80px 0; }
.blog-details-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; }
.blog-content-area {}
.blog-cover-img { width: 100%; height: 380px; background: var(--cream-dark); border: 1px solid var(--border-cream); display: flex; align-items: center; justify-content: center; font-size: 100px; margin-bottom: 48px; }
.blog-content { font-size: 16px; color: var(--text-body); line-height: 1.9; }
.blog-content h2 { font-family: 'Cinzel', serif; font-size: 24px; font-weight: 700; color: var(--navy); margin: 36px 0 16px; }
.blog-content h3 { font-family: 'Cinzel', serif; font-size: 19px; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.blog-content p { margin-bottom: 20px; }
.blog-content blockquote {
  border-left: 4px solid var(--gold); background: var(--cream); padding: 20px 28px; margin: 28px 0;
  font-family: 'Lora', serif; font-style: italic; font-size: 17px; color: var(--navy); line-height: 1.7;
}
.blog-content ul { margin: 0 0 20px 24px; }
.blog-content ul li { margin-bottom: 8px; line-height: 1.7; }
.blog-content strong { color: var(--navy); font-weight: 700; }
.blog-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border-cream); }
.blog-tag { padding: 6px 14px; background: var(--cream); border: 1px solid var(--border-cream); font-size: 11px; font-weight: 700; color: var(--text-muted); text-decoration: none; transition: all 0.2s; }
.blog-tag:hover { border-color: var(--crimson); color: var(--crimson); background: var(--crimson-light); }
.blog-author-bio { background: var(--cream); border: 1px solid var(--border-cream); padding: 32px; margin-top: 40px; display: flex; gap: 20px; }
.blog-author-bio-avatar { width: 70px; height: 70px; background: var(--crimson); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.blog-author-bio h4 { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.blog-author-bio .role { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.blog-author-bio p { font-size: 13.5px; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   CTA BANNER (shared)
   ============================================================ */
.cta-banner { background: var(--crimson); padding: 80px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.cta-banner-text { flex: 1; min-width: 280px; }
.cta-banner-eyebrow { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.cta-banner-title { font-family: 'Cinzel', serif; font-size: clamp(20px, 2.8vw, 34px); font-weight: 900; color: white; line-height: 1.15; margin-bottom: 14px; }
.cta-banner-sub { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy); padding: 80px 0 40px;
  border-top: 4px solid var(--crimson);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-logos { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.75; }
.footer-tagline { margin-top: 16px; font-size: 11px; color: var(--gold-light); letter-spacing: 0.1em; font-style: italic; font-family: 'Lora', serif; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.fsoc { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 15px; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.fsoc:hover { border-color: var(--gold); background: rgba(197,150,58,0.1); }
.footer-col h5 { font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { text-decoration: none; font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-hours { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-hours-label { font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 6px; }
.footer-hours-text { font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-center-text { font-size: 11px; color: rgba(255,255,255,0.2); text-align: center; }
.footer-reg  { font-size: 12px; color: rgba(255,255,255,0.15); }

/*IT SERVICES CSS*/
/* ── HERO ── */
.its-hero {
  margin-top: var(--nav-height);
  background: var(--navy);
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.its-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.its-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.its-hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,0.4), transparent 70%);
  top: -150px; right: -100px;
  animation: bg-float-1 14s ease-in-out infinite;
}
.its-hero-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,150,58,0.3), transparent 70%);
  bottom: -100px; left: -80px;
  animation: bg-float-2 18s ease-in-out infinite;
}
.its-hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
          linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.its-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.its-hero .section-tag { color: var(--gold-light); }
.its-hero-copy h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  margin: 16px 0 22px;
}
.its-hero-copy h1 em { color: var(--gold-light); font-style: normal; }
.its-hero-copy > p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 480px;
}
.its-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.its-hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.its-trust-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

/* Stat cards */
.its-hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.its-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.25s, border-color 0.25s;
}
.its-stat-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); }
.its-stat-card--accent { background: var(--crimson); border-color: transparent; }
.its-stat-card--dark { background: rgba(197,150,58,0.12); border-color: rgba(197,150,58,0.2); }
.its-stat-icon { font-size: 28px; margin-bottom: 10px; }
.its-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.its-stat-num span { font-size: 16px; font-weight: 600; opacity: 0.7; }
.its-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-weight: 700;
}
.its-stat-card--accent .its-stat-label { color: rgba(255,255,255,0.7); }

/* ── TICKER ── */
.its-ticker {
  background: var(--crimson);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.its-ticker-track {
  display: inline-flex;
  animation: ticker 32s linear infinite;
  gap: 0;
}
.its-ticker-item {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 20px;
}
.its-ticker-sep {
  color: rgba(255,255,255,0.3);
  font-size: 8px;
  align-self: center;
}

/* ── SECTION HEADER ── */
.its-section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.its-section-sub {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 16px;
}

/* ── it SERVICES ── */
.its-services { background: var(--cream-mid); }
.its-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.its-service-card {
  background: var(--cream);
  border: 1px solid var(--border-cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.its-service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--crimson);
}
.its-sc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.its-sc-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: var(--cream-dark);
  color: var(--navy);
}
.its-sc-icon--crimson { background: rgba(200,16,46,0.08); color: var(--crimson); }
.its-sc-icon--gold { background: rgba(197,150,58,0.10); color: var(--gold); }
.its-sc-icon--navy { background: rgba(27,42,74,0.08); color: var(--navy); }
.its-sc-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream-dark);
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.its-service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.its-service-card > p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.its-sc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.its-sc-list li {
  font-size: 12.5px;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
}
.its-sc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--crimson);
  font-size: 11px;
}
.its-sc-cta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson);
  text-decoration: none;
  transition: letter-spacing 0.2s;
  margin-top: auto;
}
.its-sc-cta:hover { letter-spacing: 0.14em; }

/* ── PROCESS ── */
.its-process { background: var(--cream); }
.its-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.its-step {
  padding: 0 32px 0 0;
  position: relative;
}
.its-step:last-child { padding-right: 0; }
.its-step-num {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--crimson);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}
.its-step-connector {
  position: absolute;
  top: 24px;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border-cream), transparent);
  pointer-events: none;
}
.its-step:last-child .its-step-connector { display: none; }
.its-step-body h4 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.its-step-body p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.75;
}

/* ── WHY ── */
.its-why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.its-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(197,150,58,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.its-why-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.its-why-copy { position: sticky; top: calc(var(--nav-height) + 40px); }
.its-why-copy .section-tag { color: var(--gold-light); }
.its-why-copy .section-title { color: white; }
.its-why-copy .section-title em { color: var(--gold-light); font-style: normal; }
.its-why-copy > p {
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  line-height: 1.8;
  font-size: 15px;
}
.its-why-copy .btn-white { margin-top: 36px; display: inline-block; }
.its-why-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.its-feat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.25s, background 0.25s;
}
.its-feat:hover {
  border-color: rgba(197,150,58,0.3);
  background: rgba(255,255,255,0.07);
}
.its-feat-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.its-feat h4 {
  font-size: 13px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.its-feat p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── PLANS ── */
.its-plans { background: var(--cream-mid); }
.its-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.its-plan .btn-outline,
.its-plan .btn-primary {
  width: 100%;
  text-align: center;
  display: block;
}
.its-plan {
  background: var(--cream);
  border: 1px solid var(--border-cream);
  padding: 40px 32px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.its-plan:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.its-plan--featured {
  background: var(--navy);
  border-color: transparent;
  transform: scale(1.04);
}
.its-plan--featured:hover { transform: scale(1.04) translateY(-4px); }
.its-plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--crimson);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}
.its-plan-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.its-plan--featured .its-plan-label { color: rgba(255,255,255,0.4); }
.its-plan-price {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
}
.its-plan--featured .its-plan-price { color: white; }
.its-plan-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'Nunito Sans', sans-serif;
}
.its-plan--featured .its-plan-price span { color: rgba(255,255,255,0.4); }
.its-plan-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-cream);
}
.its-plan--featured .its-plan-desc {
  color: rgba(255,255,255,0.55);
  border-bottom-color: rgba(255,255,255,0.08);
}
.its-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.its-plan-list li {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 600;
}
.its-plan--featured .its-plan-list li { color: rgba(255,255,255,0.7); }
.its-plan-list li.muted { color: var(--text-muted); font-weight: 400; }
.its-plan--featured .its-plan-list li.muted { color: rgba(255,255,255,0.2); }

/* ── FAQ ── */
.its-faq { background: var(--cream); }
.its-faq-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.its-faq-copy { position: sticky; top: calc(var(--nav-height) + 40px); }
.its-faq-copy > p { margin-top: 16px; line-height: 1.8; color: var(--text-body); }
.its-faq-copy p a { color: var(--crimson); font-weight: 700; }
.its-faq-list { display: flex; flex-direction: column; gap: 1px; }
.its-faq .faq-item {
  background: var(--cream-mid);
  border: 1px solid var(--border-cream);
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
}
.its-faq .faq-item.open { border-color: var(--crimson); }
.its-faq .faq-q {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.its-faq .faq-chevron {
  font-size: 20px;
  color: var(--crimson);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 300;
}
.its-faq .faq-item.open .faq-chevron { transform: rotate(45deg); }
.its-faq .faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.75;
  padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.its-faq .faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.partners-section {
  background: var(--cream-mid);
}
.partners-intro {
  max-width: 520px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.partner-card {
  background: var(--cream);
  border: 1px solid var(--border-cream);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--crimson);
  box-shadow: var(--shadow-hover);
}
.partner-logo-wrap {
  height: 90px;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.partner-logo-wrap img {
  max-height: 60px;
  object-fit: contain;
}
.partner-body {
  padding: 16px 16px 18px;
}
.partner-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.partner-text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
}
.partners-cta-bar {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.partners-cta-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.partners-cta-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

@media (max-width: 1100px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .partners-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .its-services-grid { grid-template-columns: repeat(2, 1fr); }
  .its-why-feats { grid-template-columns: 1fr; }
  .its-process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 900px) {
  .its-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .its-hero-cards { grid-template-columns: repeat(4, 1fr); }
  .its-why-inner { grid-template-columns: 1fr; }
  .its-why-copy { position: static; }
  .its-plans-grid { grid-template-columns: 1fr; }
  .its-plan--featured { transform: none; }
  .its-plan--featured:hover { transform: translateY(-4px); }
  .its-faq-inner { grid-template-columns: 1fr; }
  .its-faq-copy { position: static; }
}
@media (max-width: 640px) {
  .its-services-grid { grid-template-columns: 1fr; }
  .its-hero-cards { grid-template-columns: repeat(2, 1fr); }
  .its-process-steps { grid-template-columns: 1fr; }
  .its-why-feats { grid-template-columns: 1fr; }
}

/* ============================================================
   IT SERVICES PAGE  (it-services/index.blade.php)
   All variables inherit from :root above — no duplicates.
   ============================================================ */

/* ── HERO ── */
.its-hero {
  background: var(--navy);
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.its-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.its-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.its-hero-orb--1 {
  width: 520px; height: 520px;
  background: var(--crimson);
  top: -120px; left: -100px;
}
.its-hero-orb--2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -80px; right: -60px;
}
.its-hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
          linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.its-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.its-hero-copy h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin: 12px 0 20px;
  letter-spacing: -0.01em;
}
.its-hero-copy h1 em { color: var(--gold-light); font-style: normal; }
.its-hero-copy > p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}
.its-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.its-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.its-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 2px;
}

/* Hero stat cards */
.its-hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.its-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 24px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.its-stat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(197,150,58,0.4);
  transform: translateY(-3px);
}
.its-stat-card--accent { background: rgba(200,16,46,0.18); border-color: rgba(200,16,46,0.3); }
.its-stat-card--dark   { background: rgba(0,0,0,0.25); border-color: rgba(255,255,255,0.06); }
.its-stat-icon  { font-size: 28px; margin-bottom: 10px; }
.its-stat-num   { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 900; color: white; line-height: 1; }
.its-stat-num span { color: var(--gold-light); }
.its-stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 6px; }

/* ── TICKER ── */
.its-ticker {
  background: var(--crimson);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.its-ticker-track {
  display: inline-flex;
  animation: ticker 32s linear infinite;
}
.its-ticker-item {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  padding: 0 28px;
  display: inline-block;
}
.its-ticker-sep {
  color: rgba(255,255,255,0.4);
  font-size: 10px;
}

/* ── SECTION HEADERS ── */
.its-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.its-section-sub {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
}

/* ── SERVICES GRID ── */
.its-services { background: var(--cream-mid); }
.its-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.its-service-card {
  background: var(--cream);
  border: 1px solid var(--border-cream);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.its-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.its-service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: var(--crimson);
}
.its-service-card:hover::after { transform: scaleX(1); }
.its-sc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.its-sc-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  border-radius: 3px;
}
.its-sc-icon--crimson { background: var(--crimson-light); }
.its-sc-icon--gold    { background: rgba(197,150,58,0.12); }
.its-sc-icon--navy    { background: rgba(27,42,74,0.08); }
.its-sc-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream-dark);
  border: 1px solid var(--border-cream);
  padding: 4px 10px;
}
.its-service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.its-service-card > p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
}
.its-sc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.its-sc-list li {
  font-size: 12.5px;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}
.its-sc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--crimson);
  font-size: 10px;
  top: 2px;
}
.its-sc-cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
  text-decoration: none;
  transition: letter-spacing 0.2s;
}
.its-sc-cta:hover { letter-spacing: 0.18em; color: var(--crimson-dark); }

/* ── PROCESS ── */
.its-process { background: var(--cream); }
.its-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 0;
}
.its-process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border-cream);
  z-index: 0;
}
.its-step {
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.its-step-num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 900;
  color: white;
  background: var(--crimson);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.its-step-body h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.its-step-body p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── WHY QAF ── */
.its-why { background: var(--navy); }
.its-why-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.its-why-copy {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}
.its-why-copy .section-tag { color: var(--gold-light); }
.its-why-copy .section-title { color: white; }
.its-why-copy p {
  margin-top: 18px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 32px;
}
.its-why-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.its-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 24px 20px;
  transition: border-color 0.25s, background 0.25s;
}
.its-feat:hover {
  border-color: rgba(197,150,58,0.3);
  background: rgba(255,255,255,0.07);
}
.its-feat-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.its-feat h4 {
  font-size: 13px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.its-feat p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── PLANS ── */
.its-plans { background: var(--cream-mid); }
.its-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.its-plan {
  background: var(--cream);
  border: 1px solid var(--border-cream);
  padding: 40px 32px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.its-plan:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.its-plan--featured {
  background: var(--navy);
  border-color: transparent;
  transform: scale(1.04);
}
.its-plan--featured:hover { transform: scale(1.04) translateY(-4px); }
.its-plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--crimson);
  color: white;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}
.its-plan-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.its-plan--featured .its-plan-label { color: rgba(255,255,255,0.4); }
.its-plan-price {
  font-family: 'Cinzel', serif;
  font-size: 30px; font-weight: 900;
  color: var(--navy); margin-bottom: 14px;
}
.its-plan--featured .its-plan-price { color: white; }
.its-plan-price span {
  font-size: 14px; font-weight: 400;
  color: var(--text-muted);
  font-family: 'Nunito Sans', sans-serif;
}
.its-plan--featured .its-plan-price span { color: rgba(255,255,255,0.4); }
.its-plan-desc {
  font-size: 13.5px; color: var(--text-body);
  line-height: 1.7; margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-cream);
}
.its-plan--featured .its-plan-desc {
  color: rgba(255,255,255,0.55);
  border-bottom-color: rgba(255,255,255,0.08);
}
.its-plan-list {
  list-style: none; padding: 0;
  margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.its-plan-list li { font-size: 13px; color: var(--text-body); font-weight: 600; }
.its-plan--featured .its-plan-list li { color: rgba(255,255,255,0.7); }
.its-plan-list li.muted { color: var(--text-muted); font-weight: 400; }
.its-plan--featured .its-plan-list li.muted { color: rgba(255,255,255,0.2); }
.its-plan .btn-outline,
.its-plan .btn-primary { width: 100%; text-align: center; display: block; }

/* ── FAQ ── */
.its-faq { background: var(--cream); }
.its-faq-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.its-faq-copy { position: sticky; top: calc(var(--nav-height) + 40px); }
.its-faq-copy > p { margin-top: 16px; line-height: 1.8; color: var(--text-body); }
.its-faq-copy p a { color: var(--crimson); font-weight: 700; text-decoration: none; }
.its-faq-list { display: flex; flex-direction: column; gap: 2px; }
/* FAQ item — uses max-height transition for smooth open/close */
.its-faq .faq-item {
  background: var(--cream-mid);
  border: 1px solid var(--border-cream);
  overflow: hidden;
  transition: border-color 0.2s;
  cursor: pointer;
}
.its-faq .faq-item:hover { border-color: rgba(200,16,46,0.3); }
.its-faq .faq-item.open  { border-color: var(--crimson); }
.its-faq .faq-q {
  padding: 20px 24px;
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  user-select: none;
}
.its-faq .faq-chevron {
  font-size: 22px;
  color: var(--crimson);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 300;
  line-height: 1;
}
.its-faq .faq-item.open .faq-chevron { transform: rotate(45deg); }
/* Answer: hidden by max-height (no display:none — preserves transition) */
.its-faq .faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.75;
  padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.its-faq .faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ── CTA BANNER ── */
.its-cta-banner {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.its-cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
          radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,16,46,0.14) 0%, transparent 70%),
          radial-gradient(ellipse 40% 60% at 10% 50%, rgba(197,150,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.its-cta-banner .cta-banner-inner {
  position: relative; z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.its-cta-banner .cta-banner-eyebrow {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 12px;
}
.its-cta-banner .cta-banner-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 700; color: white; margin-bottom: 14px;
}
.its-cta-banner .cta-banner-sub {
  color: rgba(255,255,255,0.55);
  font-size: 15px; line-height: 1.75;
  max-width: 500px;
}
.its-cta-banner .cta-banner-actions {
  display: flex; gap: 14px;
  flex-wrap: wrap; flex-shrink: 0;
}
/* Scoped button overrides inside dark CTA */
.its-cta-banner .btn-white {
  background: var(--crimson); color: white;
  border: 2px solid var(--crimson);
  padding: 14px 32px;
}
.its-cta-banner .btn-white:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,16,46,0.35);
  color: white;
}
.its-cta-banner .btn-outline-white {
  border-color: rgba(197,150,58,0.5);
  padding: 14px 32px;
}
.its-cta-banner .btn-outline-white:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ── RESPONSIVE — IT SERVICES ── */
@media (max-width: 1100px) {
  .its-hero-inner        { grid-template-columns: 1fr; gap: 48px; }
  .its-hero-cards        { grid-template-columns: repeat(4, 1fr); }
  .its-services-grid     { grid-template-columns: repeat(2, 1fr); }
  .its-plans-grid        { grid-template-columns: repeat(2, 1fr); }
  .its-plan--featured    { transform: none; }
  .its-plan--featured:hover { transform: translateY(-4px); }
  .its-why-inner         { grid-template-columns: 1fr; }
  .its-why-copy          { position: static; }
  .its-process-steps     { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .its-process-steps::before { display: none; }
  .its-faq-inner         { grid-template-columns: 1fr; }
  .its-faq-copy          { position: static; }
}
@media (max-width: 768px) {
  .its-cta-banner .cta-banner-inner { flex-direction: column; text-align: center; align-items: center; }
  .its-cta-banner .cta-banner-actions { justify-content: center; }
}
@media (max-width: 640px) {
  .its-services-grid  { grid-template-columns: 1fr; }
  .its-plans-grid     { grid-template-columns: 1fr; }
  .its-why-feats      { grid-template-columns: 1fr; }
  .its-hero-cards     { grid-template-columns: repeat(2, 1fr); }
  .its-process-steps  { grid-template-columns: 1fr; }
  .its-hero-btns      { flex-direction: column; }
  .its-cta-banner .cta-banner-actions { flex-direction: column; width: 100%; }
  .its-cta-banner .btn-white,
  .its-cta-banner .btn-outline-white  { text-align: center; }
}