/* ============================================================
   NYC Translation Services — Main Stylesheet
   Colors: #FE000E (red) · #244F5C (teal) · #14191E (dark)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #FE000E;
  --red-hover:  #D4000C;
  --teal:       #244F5C;
  --teal-light: #2E6377;
  --dark:       #14191E;
  --dark-card:  #1C2329;
  --dark-border:#242C34;
  --white:      #FFFFFF;
  --off-white:  #F4F6F7;
  --gray:       #7A8A94;
  --light-gray: #EEF1F3;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }

/* ===== FLASH MESSAGES ===== */
.flash-msg {
  position: fixed; top: 82px; right: 20px; z-index: 9999;
  padding: 14px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15); max-width: 380px;
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
.flash-success { background:#ECFDF5; border:1px solid #6EE7B7; color:#065F46; }
.flash-error   { background:#FEF2F2; border:1px solid #FCA5A5; color:#991B1B; }
.flash-info    { background:#EFF6FF; border:1px solid #93C5FD; color:#1E40AF; }
.flash-msg button { background:none; border:none; cursor:pointer; font-size:16px; color:inherit; margin-left:auto; opacity:0.6; }
.flash-msg button:hover { opacity:1; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid #E8EBED;
  box-shadow: 0 2px 20px rgba(20,25,30,0.08);
  overflow: visible;
}
header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; }
.logo-sub { font-size: 10px; font-weight: 700; color: var(--red); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 1px; }
#main-nav { display: flex; gap: 22px; align-items: center; }
nav a { color: var(--dark); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s; opacity: 0.75; }
nav a:hover, nav a.active { color: var(--red); opacity: 1; }
.cta-btn {
  background: var(--red); color: var(--white); border: none; padding: 10px 22px;
  font-size: 14px; font-weight: 700; border-radius: 6px; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s; display: inline-block;
}
.cta-btn:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(254,0,14,0.3); }
.cta-btn.outline { background: transparent; border: 2px solid var(--red); color: var(--red); }
.cta-btn.outline:hover { background: var(--red); color: var(--white); }
.phone-link { color: var(--teal); font-weight: 700; font-size: 15px; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.phone-link:hover { color: var(--red); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; background: var(--white);
  display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(254,0,14,0.06) 0%, transparent 65%);
  top: -200px; right: -200px; border-radius: 50%;
}
.hero-bg::after {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(36,79,92,0.07) 0%, transparent 70%);
  bottom: -150px; left: -150px; border-radius: 50%;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 1;
  background-image: radial-gradient(circle, #D8E0E4 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(254,0,14,0.07); border: 1px solid rgba(254,0,14,0.2);
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero-badge span { font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: 1px; text-transform: uppercase; }
.badge-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 900; color: var(--dark); line-height: 1.1; margin-bottom: 20px;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-desc { font-size: 17px; color: #4A5568; line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .cta-btn { padding: 14px 28px; font-size: 15px; border-radius: 8px; }
.hero-actions .cta-btn.outline { border-color: var(--teal); color: var(--teal); }
.hero-actions .cta-btn.outline:hover { background: var(--teal); color: var(--white); box-shadow: none; }
.hero-stats { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid #E5EBF0; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: var(--dark); }
.stat-line { width: 28px; height: 3px; background: var(--red); border-radius: 2px; margin: 6px 0 4px; }
.stat-label { font-size: 12px; color: var(--gray); font-weight: 500; }

/* ===== HERO COLLAGE ===== */
.hero-collage {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; gap: 14px;
  height: 520px; animation: slideUp 0.9s ease 0.2s both;
}
@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.collage-img { position: relative; overflow: hidden; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.collage-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.collage-img:hover img { transform: scale(1.04); }
.collage-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,25,30,0.08) 0%, rgba(20,25,30,0.35) 100%);
  pointer-events: none;
}
.collage-left { grid-row: 1; border-radius: 24px 20px 20px 24px; border: 2px solid rgba(254,0,14,0.3); }
.collage-right { display: flex; flex-direction: column; gap: 14px; }
.collage-top-right { flex: 1; border-radius: 20px 24px 20px 20px; }
.collage-bottom-right { flex: 1; border-radius: 20px 20px 24px 20px; border: 2px solid rgba(36,79,92,0.4); }
.collage-badge {
  position: absolute; z-index: 10; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  padding: 10px 14px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: badgePop 0.5s ease 0.8s both;
}
@keyframes badgePop { from{opacity:0;transform:scale(0.8)} to{opacity:1;transform:scale(1)} }
.collage-badge-tl { bottom: 16px; left: 16px; }
.collage-badge-br { bottom: 16px; right: 16px; }
.collage-badge-icon { font-size: 22px; }
.collage-badge-num { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 900; color: var(--dark); line-height: 1; }
.collage-badge-label { font-size: 10px; color: var(--gray); font-weight: 600; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.collage-pill {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  padding: 8px 18px; border-radius: 30px; font-size: 12px; font-weight: 700;
  white-space: nowrap; box-shadow: 0 6px 20px rgba(254,0,14,0.4);
  display: flex; align-items: center; gap: 8px;
  animation: badgePop 0.5s ease 1s both; z-index: 20;
}
.collage-pill-dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: pulse 1.5s infinite; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--teal); padding: 16px 0; }
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-icon { font-size: 17px; }
.trust-text { font-size: 13px; font-weight: 600; color: var(--white); }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.2); }

/* ===== GENERAL SECTIONS ===== */
section { padding: 90px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red); background: rgba(254,0,14,0.08);
  padding: 5px 12px; border-radius: 4px; margin-bottom: 14px; border-left: 3px solid var(--red);
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.8vw, 42px); font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 16px; color: var(--gray); line-height: 1.75; max-width: 580px; }
.on-dark { color: var(--white); }
.on-dark-sub { color: rgba(255,255,255,0.6); }
.strip { height: 4px; background: linear-gradient(90deg, var(--red) 0%, var(--teal) 50%, var(--dark) 100%); }

/* ===== QUOTE SECTION ===== */
.quote-section { background: var(--dark); position: relative; overflow: hidden; }
.quote-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%); }
.quote-section::after { content: ''; position: absolute; bottom: -200px; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(36,79,92,0.25) 0%, transparent 70%); border-radius: 50%; pointer-events:none; }
.quote-bg-orb { position: absolute; top: -150px; right: -150px; width: 450px; height: 450px; background: radial-gradient(circle, rgba(254,0,14,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events:none; }
.quote-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; z-index: 1; }
.quote-pitch { padding-top: 8px; }
.quote-pitch .section-title { color: var(--white); margin-bottom: 14px; }
.quote-pitch > p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 32px; }
.quote-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.qf-item { display: flex; align-items: center; gap: 14px; }
.qf-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: rgba(254,0,14,0.12); border: 1px solid rgba(254,0,14,0.25); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.qf-text h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.qf-text p { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; }
.quote-trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.qtrust-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,0.55); font-weight: 600; }
.qtrust-check { color: #22C55E; font-size: 14px; }
.quote-form-card { background: var(--white); border-radius: 20px; padding: 36px; box-shadow: 0 32px 64px rgba(0,0,0,0.5); }

/* ===== FORM STYLES ===== */
.form-header { border-left: 4px solid var(--red); padding-left: 14px; margin-bottom: 24px; }
.form-title { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--dark); }
.form-subtitle { font-size: 13px; color: var(--gray); margin-top: 4px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--teal); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.8px; }
.form-group select, .form-group input, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #D8DFE3; border-radius: 7px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s; background: var(--white);
}
.form-group select:focus, .form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(36,79,92,0.12);
}
.form-group.has-error select, .form-group.has-error input, .form-group.has-error textarea {
  border-color: var(--red);
}
.form-error { font-size: 11px; color: var(--red); margin-top: 4px; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group textarea { resize: vertical; min-height: 68px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--red); color: var(--white); border: none;
  border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.15s; font-family: 'DM Sans', sans-serif;
}
.form-submit:hover { background: var(--red-hover); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { text-align: center; font-size: 11px; color: var(--gray); margin-top: 10px; }

/* Step tabs */
.quote-steps { display: flex; align-items: center; margin-bottom: 24px; }
.qstep { display: flex; align-items: center; gap: 7px; cursor: default; flex: none; }
.qstep-num { width: 28px; height: 28px; border-radius: 50%; background: #DDE3E6; color: var(--gray); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.qstep-label { font-size: 12px; font-weight: 600; color: var(--gray); transition: color 0.3s; }
.qstep.active .qstep-num { background: var(--red); color: var(--white); box-shadow: 0 0 0 4px rgba(254,0,14,0.15); }
.qstep.active .qstep-label { color: var(--dark); }
.qstep.done .qstep-num { background: var(--teal); color: var(--white); }
.qstep.done .qstep-label { color: var(--teal); }
.qstep-line { flex: 1; height: 2px; background: #DDE3E6; margin: 0 8px; transition: background 0.3s; }
.qstep-line.done { background: var(--teal); }

/* Upload zone */
.upload-zone { border: 2px dashed #C5D0D5; border-radius: 12px; padding: 28px 20px; text-align: center; background: #F8FAFB; transition: border-color 0.2s, background 0.2s; cursor: pointer; }
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--red); background: rgba(254,0,14,0.03); }
.upload-icon { font-size: 36px; margin-bottom: 10px; }
.upload-title { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 5px; }
.upload-sub { font-size: 12px; color: var(--gray); margin-bottom: 14px; }
.upload-btn { display: inline-block; background: var(--red); color: var(--white); padding: 9px 20px; border-radius: 7px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.upload-btn:hover { background: var(--red-hover); }
.upload-or { font-size: 12px; color: #B0BAC0; margin: 12px 0 10px; }
.alt-btn { background: transparent; border: 1.5px solid var(--teal); color: var(--teal); padding: 7px 16px; border-radius: 7px; font-size: 12.5px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.alt-btn:hover { background: var(--teal); color: var(--white); }
.file-preview { display: flex; align-items: center; gap: 10px; background: rgba(36,79,92,0.06); border: 1.5px solid rgba(36,79,92,0.2); border-radius: 8px; padding: 10px 14px; margin-top: 10px; }
.file-icon { font-size: 20px; }
.file-name { flex: 1; font-size: 13px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-remove { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 14px; font-weight: 700; }

/* ===== SERVICES ===== */
.services-section { background: var(--off-white); }
.services-header { text-align: center; margin-bottom: 52px; }
.services-header .section-tag { border-left: none; }
.services-header .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border: 1.5px solid #DDE3E6; border-radius: 14px; padding: 30px 26px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none; display: block; color: inherit; position: relative; overflow: hidden;
}
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform 0.25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,25,30,0.1); border-color: #C5CDD1; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 34px; margin-bottom: 16px; display: block; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p { font-size: 13.5px; color: var(--gray); line-height: 1.65; margin-bottom: 18px; }
.service-link { font-size: 13px; font-weight: 700; color: var(--red); display: flex; align-items: center; gap: 5px; }
.service-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(254,0,14,0.08); color: var(--red); padding: 3px 8px; border-radius: 4px; margin-bottom: 10px; }

/* ===== LANGUAGES ===== */
.languages-section { background: var(--dark); position: relative; overflow: hidden; }
.languages-section::before { content: ''; position: absolute; top: -200px; right: -150px; width: 550px; height: 550px; background: radial-gradient(circle, rgba(36,79,92,0.35) 0%, transparent 70%); border-radius: 50%; }
.languages-section::after { content: ''; position: absolute; bottom: -150px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(254,0,14,0.07) 0%, transparent 70%); border-radius: 50%; }
.lang-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 52px; position: relative; z-index: 1; }
.languages-grid { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.lang-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); padding: 8px 18px; border-radius: 30px; font-size: 13.5px; font-weight: 500; transition: all 0.2s; cursor: pointer; text-decoration: none; display: inline-block; }
.lang-pill:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.lang-pill.featured { background: rgba(36,79,92,0.45); border-color: rgba(36,79,92,0.8); color: rgba(255,255,255,0.9); }
.lang-more { background: transparent; border: 2px dashed rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); padding: 8px 18px; border-radius: 30px; font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; }

/* ===== WHY US ===== */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-visual { background: var(--dark); border-radius: 20px; padding: 44px 36px; position: relative; overflow: hidden; border: 1px solid var(--dark-border); }
.why-visual::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%); }
.why-visual::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(254,0,14,0.1) 0%, transparent 70%); border-radius: 50%; }
.why-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat-box { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 10px; padding: 20px; transition: border-color 0.2s; }
.why-stat-box:hover { border-color: var(--red); }
.why-stat-num { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 900; color: var(--white); }
.why-stat-line { width: 24px; height: 3px; background: var(--red); border-radius: 2px; margin: 6px 0; }
.why-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); }
.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-check { width: 26px; height: 26px; min-width: 26px; background: rgba(254,0,14,0.1); border: 1.5px solid var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--red); font-weight: 800; }
.why-item-text h4 { font-weight: 700; font-size: 15px; margin-bottom: 4px; color: var(--dark); }
.why-item-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== INDUSTRIES ===== */
.industries-section { background: var(--off-white); }
.industries-header { text-align: center; margin-bottom: 52px; }
.industries-header .section-tag { border-left: none; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card { background: var(--white); border-radius: 12px; padding: 26px 20px; text-align: center; border: 1.5px solid #DDE3E6; transition: all 0.22s; position: relative; overflow: hidden; }
.industry-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transition: transform 0.22s; }
.industry-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(36,79,92,0.1); }
.industry-card:hover::after { transform: scaleX(1); }
.industry-icon { font-size: 30px; margin-bottom: 12px; display: block; }
.industry-card h4 { font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--dark); }
.industry-card p { font-size: 12px; color: var(--gray); line-height: 1.55; }

/* ===== PROCESS ===== */
.process-section { background: var(--teal); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header .section-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border-left: 3px solid rgba(255,255,255,0.5); }
.process-header .section-desc { margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 2px; background: rgba(255,255,255,0.2); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num { width: 70px; height: 70px; border-radius: 50%; background: var(--red); color: var(--white); font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 0 0 8px rgba(254,0,14,0.15), 0 8px 24px rgba(254,0,14,0.3); }
.process-step h4 { font-weight: 700; font-size: 16px; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .section-tag { border-left: none; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { background: var(--off-white); border: 1.5px solid #DDE3E6; border-radius: 14px; padding: 28px; position: relative; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.testimonial:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(36,79,92,0.1); }
.testimonial::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 80px; color: var(--red); line-height: 1; position: absolute; top: 10px; right: 20px; opacity: 0.12; font-weight: 900; }
.stars { color: var(--red); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { font-size: 14px; color: #4A5568; line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.author-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.author-role { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-map-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 36px rgba(20,25,30,0.12); border: 3px solid var(--white); height: 380px; }
.contact-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-info { padding: 8px 0; }
.contact-block { margin-bottom: 32px; }
.contact-block-title { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.contact-block-title::after { content: ''; flex: 1; height: 1.5px; background: rgba(254,0,14,0.15); }
.contact-block h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.contact-block p { font-size: 15px; color: #4A5568; line-height: 1.7; }
.contact-block a { color: var(--red); text-decoration: none; font-weight: 700; }
.contact-hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }
.hours-box { background: var(--white); border: 1.5px solid #DDE3E6; border-radius: 10px; padding: 14px 16px; transition: border-color 0.2s; }
.hours-box:hover { border-color: var(--teal); }
.hours-day { font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.hours-time { font-size: 14px; font-weight: 700; color: var(--dark); }
.hours-note { font-size: 11px; color: var(--gray); margin-top: 3px; }
.contact-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.contact-cta-row .cta-btn { padding: 13px 24px; font-size: 14px; border-radius: 8px; flex: 1; text-align: center; }
.online-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(36,79,92,0.08); border: 1px solid rgba(36,79,92,0.2); border-radius: 20px; padding: 7px 14px; font-size: 13px; font-weight: 600; color: var(--teal); margin-top: 16px; }
.online-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; }

/* ===== CTA BANNER ===== */
.cta-section { background: var(--dark); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%); }
.cta-section::after { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(36,79,92,0.3) 0%, transparent 70%); border-radius: 50%; }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-inner > p { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .cta-btn { padding: 15px 32px; font-size: 15px; border-radius: 8px; }

/* ===== FOOTER ===== */
footer { background: #0D1115; color: rgba(255,255,255,0.5); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo-main { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--white); display: block; }
.footer-logo-sub { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 16px; margin-top: 3px; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-contact a { color: var(--red); text-decoration: none; font-weight: 700; font-size: 15px; display: block; margin-bottom: 6px; transition: color 0.2s; }
.footer-contact a:hover { color: #ff3344; }
.footer-col h5 { color: var(--white); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13.5px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-badge { display: flex; gap: 8px; }
.fbadge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 4px 12px; border-radius: 20px; font-size: 11px; color: rgba(255,255,255,0.35); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: var(--dark); padding: 100px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--teal)); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,4vw,52px); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
}
@media(max-width:900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .hero-collage { height: 360px; }
  .why-grid { grid-template-columns: 1fr; }
  .lang-header { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== DROPDOWN NAVIGATION ===== */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.75;
  transition: color 0.2s, opacity 0.2s;
}
.nav-item.is-open .nav-link {
  color: var(--red);
  opacity: 1;
}
.nav-arrow {
  font-size: 9px;
  transition: transform 0.25s ease;
  display: inline-block;
  margin-top: 1px;
  opacity: 0.5;
}
.nav-item.is-open .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown panel — shown only via .is-open (JS controlled) */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(20,25,30,0.15), 0 0 0 1px rgba(20,25,30,0.07);
  z-index: 9999;
  border-top: 3px solid var(--red);
  animation: dropFadeIn 0.15s ease;
}
@keyframes dropFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-item.is-open .nav-dropdown {
  display: block;
}

/* Prevent right overflow for last dropdowns */
.has-dropdown:nth-last-child(-n+3) .nav-dropdown {
  left: auto;
  right: 0;
  transform: none;
  animation: dropFadeInRight 0.15s ease;
}
@keyframes dropFadeInRight {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-inner { padding: 12px; }
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 360px;
}
.dropdown-inner:not(.dropdown-grid) { width: 290px; }

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark);
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown-item:hover {
  background: rgba(254,0,14,0.06);
  color: var(--red);
}
.di-icon { font-size: 18px; min-width: 26px; text-align: center; line-height: 1; }
.di-text { display: flex; flex-direction: column; gap: 1px; }
.di-text strong { font-size: 13px; font-weight: 700; color: var(--dark); transition: color 0.15s; line-height: 1.2; }
.dropdown-item:hover .di-text strong { color: var(--red); }
.di-text small { font-size: 11px; color: var(--gray); font-weight: 400; line-height: 1.2; }

.dropdown-grid .dropdown-item { font-size: 13px; font-weight: 600; gap: 7px; padding: 8px 10px; }

.dropdown-footer {
  background: var(--off-white);
  border-top: 1px solid #E8ECEE;
  padding: 10px 14px;
  border-radius: 0 0 12px 12px;
}
.dropdown-footer a { font-size: 12.5px; font-weight: 700; color: var(--teal); text-decoration: none; transition: color 0.15s; }
.dropdown-footer a:hover { color: var(--red); }

/* ===== MOBILE DROPDOWN (accordion) ===== */
@media (max-width: 768px) {
  .nav-item {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .nav-item .nav-link {
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    opacity: 1;
    border-bottom: 1px solid #F0F2F3;
  }
  /* Override all desktop dropdown styles */
  .nav-item .nav-dropdown {
    display: none !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border-top: 2px solid #F0F2F3 !important;
    animation: none !important;
    width: 100% !important;
  }
  .nav-item.is-open .nav-dropdown {
    display: block !important;
  }
  .dropdown-inner,
  .dropdown-grid {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    padding: 6px 0 10px 8px;
  }
  .dropdown-item {
    padding: 8px 6px;
    font-size: 13.5px;
    white-space: normal;
  }
  .dropdown-footer {
    background: none;
    border: none;
    padding: 4px 6px 10px;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media(max-width:768px) {
  #main-nav {
    display: none !important;         /* hidden by default on mobile */
  }
  #main-nav.nav-open {
    display: flex !important;         /* JS adds .nav-open to show */
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.99);
    padding: 20px 24px;
    gap: 14px;
    border-top: 2px solid var(--red);
    box-shadow: 0 12px 32px rgba(20,25,30,0.12);
    z-index: 999;
    animation: slideDown 0.2s ease;
  }
  #main-nav.nav-open a {
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #F0F2F3;
    opacity: 1;
  }
  #main-nav.nav-open a:last-child { border-bottom: none; }
  .menu-toggle { display: block; }
  .menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-stats { gap: 24px; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-map-wrap { height: 280px; }
  .contact-hours-grid { grid-template-columns: 1fr; }
}
@media(max-width:560px) {
  .hero-collage { grid-template-columns: 1fr; height: auto; }
  .collage-right { flex-direction: row; }
  .trust-inner { justify-content: center; }
  .trust-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .cta-btn { text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}




/* ===== COOKIE POPUP ONLY — paste this into your site ===== */

  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

  #cookie-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 99999;
    max-width: 360px;
    width: calc(100% - 48px);
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-left: 4px solid #e02020;
    border-radius: 6px;
    padding: 22px 20px 18px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.55);
    font-family: 'Montserrat', sans-serif;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  }

  #cookie-popup.visible {
    transform: translateY(0);
    opacity: 1;
  }

  #cookie-popup .cookie-icon {
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
  }

  #cookie-popup h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }

  #cookie-popup p {
    color: #aaaaaa;
    font-size: 12.5px;
    line-height: 1.65;
    margin: 0 0 18px;
  }

  #cookie-popup p a {
    color: #e02020;
    text-decoration: none;
    font-weight: 600;
  }

  #cookie-popup p a:hover {
    text-decoration: underline;
  }

  #cookie-popup .cookie-btns {
    display: flex;
    gap: 10px;
  }

  #cookie-popup .btn-accept {
    flex: 1;
    background: #e02020;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
  }

  #cookie-popup .btn-accept:hover {
    background: #c01818;
  }

  #cookie-popup .btn-decline {
    flex: 1;
    background: transparent;
    color: #888;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  #cookie-popup .btn-decline:hover {
    border-color: #555;
    color: #bbb;
  }

  #cookie-popup .cookie-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #555;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 2px 4px;
    transition: color 0.2s;
  }

  #cookie-popup .cookie-close:hover {
    color: #fff;
  }

  @media (max-width: 480px) {
    #cookie-popup {
      bottom: 0;
      left: 0;
      max-width: 100%;
      width: 100%;
      border-radius: 0;
      border-left: none;
      border-top: 3px solid #e02020;
    }
  }
