/* Base reset and font setup */
    * {
       
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html {
  scroll-behavior: smooth;
}

body {
  background:  #091f33;
  overflow-x: hidden;
}

/* GLOBAL AIR-STYLE CINEMATIC BACKGROUND */

main {
  position: relative;
  overflow: hidden;
  background:
   
#05101b;

  
   
}

/* grid texture overlay */

main::before {
  content: '';

  position: fixed;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(59,130,246,0.18),
      transparent 40%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(6,182,212,0.15),
      transparent 40%
    ),

    linear-gradient(
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    );

  background-size:
    auto,
    auto,
    72px 72px,
    72px 72px;

  pointer-events: none;

  z-index: 0;
}


/* cinematic blue glow */

main::after {
  content: '';
  position: fixed;

  top: -20%;
  left: 50%;
  transform: translateX(-50%);

  width: 1200px;
  height: 900px;

  background: rgba(59,130,246,0.10);

  filter: blur(140px);

  pointer-events: none;
  z-index: 0;
}

/* every section above background */

main section {
  position: relative;
  z-index: 1;
}
/* ════════════════════════════════════════
   CONTACT HERO
════════════════════════════════════════ */
.ct-hero {
  --ch-bg:      linear-gradient(160deg,#1a2a52 0%,#141e3a 55%,#0f1628 100%);
  --ch-text:    #e8edf8;
  --ch-muted:   #7a8db0;
  --ch-accent:  #5b8ef0;
  --ch-accent2: #f5e642;
  --ch-aqua:    #00c8b4;
  --ch-border:  rgba(255,255,255,0.08);
  --ch-grid:    rgba(255,255,255,0.022);
  --ch-card:    rgba(255,255,255,0.06);

  font-family: 'Sora', sans-serif;
  background: var(--ch-bg);
  padding: 120px 56px 80px;
  position: relative;
  overflow: clip;
  min-height: 52vh;
  display: flex;
  align-items: center;
}

/* grid texture */
.ct-hero::before {
  content: '';
  position: absolute; inset: 0;
 
  pointer-events: none;
}

/* glow blobs */
.ct-hero::after {
  content: '';
  position: absolute;
  left: -100px; bottom: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(91,142,240,0.08);
  filter: blur(90px);
  pointer-events: none;
}

.ct-hero-blob2 {
  position: absolute;
  right: -60px; top: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(0,200,180,0.05);
  filter: blur(80px);
  pointer-events: none;
}

.ct-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT */
.ct-hero-left { }

.ct-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #8ab4f8;
  background: rgba(91,142,240,0.12);
  border-radius: 999px; padding: 5px 16px;
  margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(16px); /* GSAP animates */
}

.ct-hero-label-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #5b8ef0;
  box-shadow: 0 0 8px #5b8ef0;
  animation: ctpulse 2.2s ease-in-out infinite;
}

@keyframes ctpulse {
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:0.3;transform:scale(0.65);}
}

.ct-hero-h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ch-text);
  line-height: 1.04;
  margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(24px);
}

.ct-hero-h1 em { font-style: normal; color: var(--ch-accent2); }

.ct-hero-sub {
  font-size: 0.88rem; font-weight: 300;
  color: var(--ch-muted); line-height: 1.78;
  max-width: 380px;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(18px);
}

/* quick contact chips */
.ct-hero-chips {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  opacity: 0; transform: translateY(16px);
}

.ct-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ch-card);
  border: 1px solid var(--ch-border);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--ch-text);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.ct-chip:hover {
  border-color: rgba(91,142,240,0.45);
  background: rgba(91,142,240,0.1);
  transform: translateY(-2px);
}

.ct-chip svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.ct-chip.wa  { color: #25d366; }
.ct-chip.ph  { color: #5b8ef0; }
.ct-chip.em  { color: #f5e642; }

/* RIGHT — decorative stats card */
.ct-hero-right {
  opacity: 0; transform: translateX(32px);
}

.ct-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ch-border);
  border-radius: 18px;
  padding: 32px;
  backdrop-filter: blur(12px);
}

.ct-stat-card-title {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ch-muted); margin-bottom: 24px;
}

.ct-stat-rows { display: flex; flex-direction: column; gap: 18px; }

.ct-stat-row {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ch-border);
}

.ct-stat-row:last-child { border-bottom: none; padding-bottom: 0; }

.ct-stat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--ch-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ct-stat-icon svg {
  width: 16px; height: 16px;
  stroke: var(--ch-accent); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.ct-stat-val {
  font-size: 0.92rem; font-weight: 700;
  color: var(--ch-text); line-height: 1.2;
}

.ct-stat-lbl {
  font-size: 0.68rem; font-weight: 300;
  color: var(--ch-muted); margin-top: 2px;
}

/* bottom fade from hero into next section */
.ct-hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, #0f1628);
  pointer-events: none; z-index: 1;
}

/* ════════════════════════════════════════
   QUICK CONTACT SECTION (updated with email)
════════════════════════════════════════ */
.qc-section {
  --qc-bg:          linear-gradient(135deg,#1a2a52 0%,#141e3a 60%,#0f1628 100%);
  --qc-card-bg:     rgba(255,255,255,0.04);
  --qc-card-hover:  rgba(255,255,255,0.08);
  --qc-border:      rgba(255,255,255,0.09);
  --qc-border-hover:rgba(91,142,240,0.4);
  --qc-heading:     #e8edf8;
  --qc-text:        #7a8db0;
  --qc-accent:      #5b8ef0;
  --qc-wa:          #25d366;
  --qc-wa-glow:     rgba(37,211,102,0.18);
  --qc-call-glow:   rgba(91,142,240,0.18);
  --qc-mail-glow:   rgba(245,230,66,0.12);
  --qc-divider:     rgba(255,255,255,0.08);
  --qc-badge-bg:    rgba(37,211,102,0.12);
  --qc-tag-bg:      rgba(91,142,240,0.12);
  --qc-tag-color:   #8ab4f8;
  --qc-mail-color:  #f5e642;
  --qc-mail-bg:     rgba(245,230,66,0.1);
  --qc-grid:        rgba(255,255,255,0.02);

  font-family: 'Sora', sans-serif;
  background: transparent;
  padding: 80px 48px;
  position: relative;
  overflow: clip;
}

.qc-section::before {
  content: '';
  position: absolute; inset: 0;
 
  pointer-events: none;
}

.qc-blob-l {
  position: absolute; left:-80px; bottom:-60px;
  width:320px; height:320px; border-radius:50%;
  background:rgba(37,211,102,0.05); filter:blur(72px); pointer-events:none;
}
.qc-blob-r {
  position: absolute; right:-80px; top:-60px;
  width:280px; height:280px; border-radius:50%;
  background:rgba(91,142,240,0.07); filter:blur(64px); pointer-events:none;
}

.qc-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
}

/* header */
.qc-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 44px;
}

.qc-header-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--qc-tag-color);
  background: var(--qc-tag-bg);
  border-radius: 999px; padding: 5px 14px;
  display: inline-block; margin-bottom: 0.8rem;
}

.qc-header h2 {
  font-size: clamp(1.5rem,3vw,2.1rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--qc-heading); line-height: 1.15; margin: 0;
}

.qc-header h2 em { font-style: normal; color: #f5e642; }

.qc-header-right {
  font-size: 0.83rem; font-weight: 300;
  color: var(--qc-text); line-height: 1.65;
  max-width: 300px; text-align: right; flex-shrink: 0;
}

/* THREE CARDS */
.qc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.qc-card {
  background: var(--qc-card-bg);
  border: 1px solid var(--qc-border);
  padding: 32px 30px 28px;
  position: relative; overflow: clip;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer; text-decoration: none;
  display: flex; flex-direction: column; gap: 0;
}

.qc-card:hover {
  background: var(--qc-card-hover);
  border-color: var(--qc-border-hover);
}

/* inner glow per card */
.qc-card::after {
  content: '';
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.3s; pointer-events: none;
}
.qc-card.whatsapp::after { background: radial-gradient(circle at 20% 80%, var(--qc-wa-glow) 0%, transparent 60%); }
.qc-card.call::after     { background: radial-gradient(circle at 80% 20%, var(--qc-call-glow) 0%, transparent 60%); }
.qc-card.email::after    { background: radial-gradient(circle at 50% 80%, var(--qc-mail-glow) 0%, transparent 60%); }
.qc-card:hover::after    { opacity: 1; }

/* icon */
.qc-icon-wrap {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: transform 0.25s;
}
.qc-card:hover .qc-icon-wrap { transform: scale(1.08); }

.qc-card.whatsapp .qc-icon-wrap { background: rgba(37,211,102,0.14); }
.qc-card.call     .qc-icon-wrap { background: rgba(91,142,240,0.14); }
.qc-card.email    .qc-icon-wrap { background: rgba(245,230,66,0.12); }

.qc-icon-wrap svg {
  width: 22px; height: 22px; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.qc-card.whatsapp .qc-icon-wrap svg { stroke: var(--qc-wa); }
.qc-card.call     .qc-icon-wrap svg { stroke: var(--qc-accent); }
.qc-card.email    .qc-icon-wrap svg { stroke: var(--qc-mail-color); }

/* badge */
.qc-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px; padding: 4px 10px;
  width: fit-content; margin-bottom: 10px;
}
.qc-badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.qc-card.whatsapp .qc-badge { background: var(--qc-badge-bg); color: var(--qc-wa); }
.qc-card.whatsapp .qc-badge-dot { background: var(--qc-wa); box-shadow: 0 0 6px var(--qc-wa); }
.qc-card.call .qc-badge { background: var(--qc-tag-bg); color: var(--qc-tag-color); }
.qc-card.call .qc-badge-dot { background: var(--qc-accent); box-shadow: 0 0 6px var(--qc-accent); }
.qc-card.email .qc-badge { background: var(--qc-mail-bg); color: var(--qc-mail-color); }
.qc-card.email .qc-badge-dot { background: var(--qc-mail-color); box-shadow: 0 0 6px rgba(245,230,66,0.8); }

.qc-card-title {
  font-size: 1.1rem; font-weight: 700;
  color: var(--qc-heading); letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.qc-card-desc {
  font-size: 0.8rem; font-weight: 300;
  color: var(--qc-text); line-height: 1.65;
}

/* divider inside card */
.qc-card-div {
  height: 1px; background: var(--qc-divider); margin: 22px 0;
}

/* contact detail row */
.qc-detail {
  display: flex; align-items: center; gap: 0.7rem;
}
.qc-detail svg {
  width: 17px; height: 17px; flex-shrink: 0; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.qc-card.whatsapp .qc-detail svg { stroke: var(--qc-wa); }
.qc-card.call     .qc-detail svg { stroke: var(--qc-accent); }
.qc-card.email    .qc-detail svg { stroke: var(--qc-mail-color); }

.qc-detail-num {
  font-size: 1rem; font-weight: 700;
  color: var(--qc-heading); letter-spacing: 0.01em; line-height: 1.2;
  word-break: break-all;
}
.qc-detail-note {
  font-size: 0.68rem; font-weight: 300;
  color: var(--qc-text); margin-top: 2px;
}

/* hours row */
.qc-hours {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 14px;
}
.qc-hours svg {
  width: 14px; height: 14px; stroke: var(--qc-text); fill: none;
  stroke-width: 1.6; stroke-linecap: round;
}
.qc-hours span {
  font-size: 0.72rem; font-weight: 300; color: var(--qc-text);
}

/* CTA text link */
.qc-cta {
  margin-top: 26px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.45rem;
  transition: gap 0.2s;
}
.qc-card.whatsapp .qc-cta { color: var(--qc-wa); }
.qc-card.call     .qc-cta { color: var(--qc-accent); }
.qc-card.email    .qc-cta { color: var(--qc-mail-color); }
.qc-card:hover .qc-cta { gap: 0.75rem; }

/* FEATURE STRIP */
.qc-features {
  display: flex; gap: 0;
  border: 1px solid var(--qc-border);
  border-top: none;
}

.qc-feature {
  flex: 1; padding: 16px 22px;
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--qc-card-bg);
  border-right: 1px solid var(--qc-border);
  transition: background 0.2s;
}
.qc-feature:last-child { border-right: none; }
.qc-feature:hover { background: var(--qc-card-hover); }

.qc-feature svg {
  width: 16px; height: 16px;
  stroke: var(--qc-accent); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.qc-ft-title { font-size: 0.75rem; font-weight: 600; color: var(--qc-heading); }
.qc-ft-sub   { font-size: 0.67rem; font-weight: 300; color: var(--qc-text); margin-top: 1px; }

/* RESPONSIVE */
@media(max-width:900px) {
  .ct-hero { padding: 100px 28px 64px; }
  .ct-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ct-hero-right { display: none; }
  .qc-section { padding: 64px 28px; }
  .qc-header { flex-direction: column; align-items: flex-start; }
  .qc-header-right { text-align: left; max-width: 100%; }
  .qc-grid { grid-template-columns: 1fr; }
  .qc-features { flex-direction: column; }
  .qc-feature { border-right: none; border-bottom: 1px solid var(--qc-border); }
  .qc-feature:last-child { border-bottom: none; }
}

@media(max-width:480px) {
  .ct-hero { padding: 90px 20px 52px; }
  .qc-section { padding: 52px 20px; }
  .ct-hero-chips { flex-direction: column; }
}
    :root {
      
    --transition: 0.35s cubic-bezier(.4,0,.2,1);
    --git-bg:          #1a2744;
    --git-left-bg:     linear-gradient(135deg, #080f14 0%, #091f33 50%, #0c2031 100%);
    --git-right-bg:    linear-gradient(135deg, #183147 0%, #1c374e 100%);
    --git-heading:     #f2f9ff;
    --git-text:        #c8d4ec;
    --git-label:       #e8edf8;
    --git-input-bg:    rgba(255,255,255,0.07);
    --git-input-border:rgba(255,255,255,0.15);
    --git-input-focus: rgba(124,99,230,0.5);
    --git-btn:         #6381e6;
    --git-btn-hover:   #9278f0;
    --git-icon:        #9aaac8;
    --git-divider:     rgba(255,255,255,0.1);
    --git-transition:  0.25s ease;

    background: var(--git-bg);
    font-family: 'Sora', sans-serif; /* fallback: sans-serif */
  }

  /* Light theme: add class "light" to .git-section */
  /* Light theme: add class "light" to .git-section 
  @media (prefers-color-scheme: light) {
  .git-section {
    --git-bg:          #eef2fb;
    --git-left-bg:     linear-gradient(135deg, #dde6f7 0%, #e4ecf8 100%);
    --git-right-bg:    linear-gradient(135deg, #e8eef8 0%, #dfe8f5 100%);
    --git-heading:     #1a2a6c;
    --git-text:        #4a5e88;
    --git-label:       #1a2744;
    --git-input-bg:    rgba(255,255,255,0.7);
    --git-input-border:rgba(26,39,68,0.2);
    --git-input-focus: rgba(124,99,230,0.4);
    --git-btn:         #7c63e6;
    --git-btn-hover:   #5b44c4;
    --git-icon:        #4a5e88;
    --git-divider:     rgba(26,39,68,0.12);
  }
}
 */

  .git-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }

  /* ── LEFT PANEL ── */
  .git-left {
    background:transparent;
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
  }

  /* subtle grid overlay */
  .git-left::before {
    content: '';
    position: absolute;
    inset: 0;
   
    
    pointer-events: none;
  }

  .git-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
   font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--git-heading);
    line-height: 1.15;
    letter-spacing: -0.01em;
    position: relative;
  }

  .git-left p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--git-text);
    line-height: 1.7;
    max-width: 380px;
    position: relative;
  }

  .git-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 0.5rem;
    position: relative;
  }

  .git-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .git-contact-item svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: var(--git-icon);
    margin-top: 2px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .git-contact-item span {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--git-text);
    line-height: 1.5;
  }

  /* ── RIGHT PANEL ── */
  .git-right {
    background: #ffffff09;
    backdrop-filter: blur(10px);
    padding: 72px 56px;
   
    display: flex;
    align-items: center;
    box-shadow: inset 1px 0 0 0px #f5feff57;
    border: 1px solid var(--git-divider);
   
    border-radius: 50px;
  }

  .git-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .git-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .git-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .git-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--git-label);
    letter-spacing: 0.02em;
  }

  .git-field input,
  .git-field textarea {
    background: var(--git-input-bg);
    border: 1px solid var(--git-input-border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.875rem;
    font-family: inherit;
    font-weight: 300;
    color: var(--git-label);
    outline: none;
    transition: border-color var(--git-transition), background var(--git-transition), box-shadow var(--git-transition);
    width: 100%;
  }

  .git-field input::placeholder,
  .git-field textarea::placeholder {
    color: transparent;
  }

  .git-field input:focus,
  .git-field textarea:focus {
    border-color: rgba(124,99,230,0.6);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px var(--git-input-focus);
  }

  .git-field textarea {
    resize: vertical;
    min-height: 110px;
  }

  .git-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
  }

  .git-btn {
    background: var(--git-btn);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 28px;
    font-size: 0.875rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--git-transition), transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
  }
.git-field input::placeholder,
.git-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.247);
  opacity: 1;
}

.git-field input::-webkit-input-placeholder,
.git-field textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.192);
}

.git-field input::-moz-placeholder,
.git-field textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.281);
}
  .git-btn:hover {
    background: var(--git-btn-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124,99,230,0.4);
  }

  .git-btn:active {
    transform: translateY(0);
  }

   .mapouter{
    position:relative;
    text-align:right;
    max-width: 60vh;
   
  } 
   .gmap_canvas{
    overflow:hidden;
    display: flex;
    border-radius: 20px ;
    max-width: 60vh;
    min-width: 300px;
   
    border: 1px solid var(--git-divider);
    background:none!important;
    
  } 
   .gmap_canvas iframe{
    width:100%;
    
    background-color: rgba(53, 87, 241, 0.1);
  } 
   .mapouter a{
    display:block;
    font-size:0.85em;
    text-align:center;
    padding:5px 0;
    color:#6c757d;
    font-family: 'Sora', sans-serif; /* fallback: sans-serif */
    text-decoration:none;
  } 
   .gme-generated-link{
    display:none!important;
  }
  .offices-section {
    --of-bg:          linear-gradient(135deg, #04335f 0%, #021f3a 50%, #011425 100%);
    --of-heading:     #e7e7e7;
    --of-text:        #c8d4ec;
    --of-city:        #e4e4e4;
    --of-addr:        #c8d4ec;
    --of-border:      rgba(255,255,255,0.25);
    --of-transition:  0.25s ease;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: transparent;
    padding: 72px 56px;
    position: relative;
    overflow: hidden;
    font-family: 'Sora', sans-serif; /* fallback: sans-serif */
  }

  /* subtle grid overlay */
  .offices-section::before {
    content: '';
    position: absolute;
    inset: 0;
  
    pointer-events: none;
  }

  /* Light theme: add class "light" to .offices-section 
  .offices-section.light {
    --of-bg:      linear-gradient(135deg, #dde6f7 0%, #e4ecf8 100%);
    --of-heading: #1a2a6c;
    --of-text:    #4a5e88;
    --of-city:    #1a2a6c;
    --of-addr:    #4a5e88;
    --of-border:  rgba(26,39,68,0.25);
  } */

  .offices-inner {
    position: relative;
    margin-left: 5vw;
    z-index: 1;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    
  }

  .offices-intro {
    margin-bottom: 52px;
  }

  .offices-intro h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--of-heading);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
  }

  .offices-intro p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--of-text);
    line-height: 1.7;
    max-width: 560px;
  }

  .offices-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .office-card {
    padding: 5px 32px 0 24px;
    border-left: 2px solid var(--of-border);
  }

  .office-card:first-child {
    padding: 0 32px 0 24px;
    border-left: 2px solid var(--of-border);
  }

  .office-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--of-city);
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
  }

  .office-card address {
    font-style: normal;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--of-addr);
    line-height: 1.65;
  }
  
  .cta-section {
    --cta-bg-base:    linear-gradient(135deg, #060a11 0%, #0a152c 50%, #0f1a33 100%);
    --cta-bg-glow-l:  rgba(1, 80, 151, 0.35);
    --cta-bg-glow-r:  rgba(20, 30, 80, 0.2);
    --cta-grid:       rgba(255, 255, 255, 0.04);
    --cta-heading:    #ffffff;
    --cta-text:       #9aaac8;
    --cta-btn-bg:     #015097;
    --cta-btn-hover:  #5c95df;
    --cta-link:       #ffffff;
    --cta-link-hover: #a5b4fc;

    position: relative;
    background: var(--cta-bg-base);
    padding: 120px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Sora', sans-serif;
  }

  /* Radial glow blobs */
  .cta-section::before {
    content: '';
    position: absolute;
    bottom: -60px; left: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: var(--cta-bg-glow-l);
    filter: blur(100px);
    pointer-events: none;
  }

  .cta-section::after {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: var(--cta-bg-glow-r);
    filter: blur(80px);
    pointer-events: none;
  }

  /* Vertical grid lines overlay */
  .cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--cta-grid) 1px, transparent 1px),
      linear-gradient(90deg, var(--cta-grid) 1px, transparent 1px);
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
  }

  .cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .cta-inner h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--cta-heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .cta-inner p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--cta-text);
    line-height: 1.7;
    max-width: 520px;
  }

  .cta-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-btn-primary {
    background: var(--cta-btn-bg);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 32px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s ease, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
  }

  .cta-btn-primary:hover {
    background: var(--cta-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
  }

  .cta-btn-secondary {
    color: var(--cta-link);
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s, gap 0.2s;
  }

  .cta-btn-secondary:hover {
    color: var(--cta-link-hover);
    gap: 0.6rem;
  }

  /* Light theme */
  .cta-section.light {
    --cta-bg-base:    #eef2fb;
    --cta-bg-glow-l:  rgba(99, 102, 241, 0.15);
    --cta-bg-glow-r:  rgba(99, 102, 241, 0.08);
    --cta-grid:       rgba(26, 39, 68, 0.05);
    --cta-heading:    #0f1a35;
    --cta-text:       #4a5e88;
    --cta-link:       #1a2744;
    --cta-link-hover: #6366f1;
  }
 

  @media (max-width: 540px) {
    .cta-section { padding: 80px 20px; }
    .cta-buttons { flex-direction: column; gap: 1rem; }
  }

  /* Responsive */
  @media (max-width: 786px) {
    .offices-section { padding: 52px 32px; }
    .offices-section { flex-direction: column; }
    .offices-inner { flex-direction: column;}
    .offices-inner { margin-top: 3vh;
      margin-left: 0;
    }
    .offices-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .office-card { padding: 0 0 0 20px; }
    .warehouse-inner {padding-top: 10px;}
  }

  @media (max-width: 480px) {
    .offices-section { padding: 40px 20px; }
    .offices-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .office-card { padding: 0 0 0 16px; }
  }
  

  /* ── RESPONSIVE ── */
  @media (max-width: 820px) {
    .git-inner { grid-template-columns: 1fr; }
    .git-right { border-left: none; border-top: 1px solid var(--git-divider); }
    .git-left, .git-right { padding: 48px 32px; }
  }

  @media (max-width: 480px) {
    .git-left, .git-right { padding: 36px 20px; }
    .git-row { grid-template-columns: 1fr; }
  }