/* ═══════════════════════════════════════════════════
   TANJIMA INTERNATIONAL — MAIN STYLESHEET
   Company Profile Website · Responsive
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── VARIABLES ── */
:root {
  --navy:   #1a1f5e;
  --blue:   #2d4fd1;
  --sky:    #4eb5e5;
  --gold:   #f0a500;
  --white:  #ffffff;
  --light:  #f4f6ff;
  --dark:   #0d1035;
  --text:   #2a2e5a;
  --muted:  #6b7280;
  --border: rgba(26,31,94,.1);
  --grad:   linear-gradient(135deg, #1a1f5e 0%, #2d4fd1 55%, #4eb5e5 100%);
  --shadow: 0 4px 24px rgba(26,31,94,.1);
  --radius: 12px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--dark); }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,16,53,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: var(--transition);
}
#navbar.scrolled { height: 60px; box-shadow: 0 4px 30px rgba(0,0,0,.3); }

.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.1;
}
.nav-logo-text em {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-style: normal; font-weight: 400;
  color: var(--gold); letter-spacing: .1em; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,.75); font-size: .85rem;
  font-weight: 500; letter-spacing: .04em;
  padding: .35rem 0;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: .5rem 1.25rem;
  background: var(--gold); color: var(--dark) !important;
  font-weight: 700 !important; border-radius: 4px;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #e09400 !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.nav-drawer {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(13,16,53,.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a { color: white; font-size: 1.3rem; font-weight: 600; letter-spacing: .05em; }
.nav-drawer a:hover { color: var(--gold); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--grad);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 70px;
}

.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-particles span {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  animation: particlePulse 8s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { width: 700px; height: 700px; top: -350px; right: -200px; }
.hero-particles span:nth-child(2) { width: 450px; height: 450px; top: -150px; right: -80px; border-color: rgba(255,255,255,.1); animation-delay: 1.5s; }
.hero-particles span:nth-child(3) { width: 900px; height: 900px; bottom: -500px; left: -300px; animation-delay: 3s; }
.hero-particles span:nth-child(4) { width: 200px; height: 200px; top: 20%; left: 5%; border-color: rgba(240,165,0,.15); animation-delay: .5s; }
@keyframes particlePulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.04);opacity:.6} }

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1.1rem;
  background: rgba(240,165,0,.15);
  border: 1px solid rgba(240,165,0,.45);
  border-radius: 50px;
  color: var(--gold); font-size: .78rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '✦'; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; color: #fff;
  line-height: 1.08; margin-bottom: .5rem;
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255,255,255,.65);
  font-weight: 400; font-style: italic;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,.8);
  line-height: 1.85; max-width: 480px; margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-gold {
  padding: .9rem 2.2rem;
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  border: none; border-radius: 4px; cursor: pointer;
  display: inline-block; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(240,165,0,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,165,0,.55); background: #e09400; }
.btn-ghost {
  padding: .9rem 2.2rem;
  background: transparent; color: #fff;
  font-weight: 600; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.35); border-radius: 4px;
  display: inline-block; transition: var(--transition);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}
.hero-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 1.25rem; text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-stat:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.hero-stat .s-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--gold); display: block;
}
.hero-stat .s-lbl { font-size: .72rem; color: rgba(255,255,255,.65); letter-spacing: .07em; margin-top: .2rem; }

/* Hero visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-globe-wrap {
  width: 320px; height: 320px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: heroFloat 4.5s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.hero-globe-wrap::before {
  content: '';
  position: absolute; inset: -22px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  animation: slowSpin 25s linear infinite;
}
.hero-globe-wrap::after {
  content: '';
  position: absolute; inset: -44px; border-radius: 50%;
  border: 1px dashed rgba(240,165,0,.15);
  animation: slowSpin 40s linear infinite reverse;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.hero-globe-wrap svg { position: relative; z-index: 1; }

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
.section { padding: 6rem 2rem; }
.section--light { background: var(--light); }
.section--dark  { background: var(--dark); }
.section--navy  { background: var(--navy); }
.container { max-width: 1200px; margin: 0 auto; }

.sec-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: .6rem;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 1rem;
}
.sec-title--light { color: #fff; }
.sec-divider { width: 50px; height: 3px; background: var(--gold); margin-bottom: 2rem; }
.sec-divider--center { margin: 0 auto 2rem; }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-quote-card {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 3rem;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,31,94,.3);
}
.about-quote-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.about-quote-card::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(240,165,0,.08);
}
.big-quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--gold); line-height: .8;
  margin-bottom: .5rem; display: block; position: relative; z-index: 1;
}
.about-quote-card blockquote {
  font-size: 1.05rem; line-height: 1.85;
  color: rgba(255,255,255,.9); font-style: italic;
  position: relative; z-index: 1; margin: 0;
}
.about-quote-card cite {
  display: block; margin-top: 1.5rem;
  font-size: .85rem; color: var(--gold);
  font-style: normal; font-weight: 700;
  position: relative; z-index: 1;
}

.about-body p {
  font-size: 1rem; line-height: 1.9; color: var(--muted); margin-bottom: 1.75rem;
}
.values-stack { display: flex; flex-direction: column; gap: .9rem; }
.value-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 14px rgba(26,31,94,.06);
  transition: var(--transition);
}
.value-item:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(26,31,94,.1); }
.v-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.v-icon svg { width: 18px; height: 18px; }
.value-item h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.value-item p  { font-size: .8rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* Concerns row */
.concerns-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.concern-card {
  background: #fff; border-radius: var(--radius);
  padding: 2rem; text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.concern-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(26,31,94,.12); border-color: var(--gold); }
.concern-card .c-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: rgba(26,31,94,.08);
}
.concern-card h3 { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: .4rem; }
.concern-card p { font-size: .8rem; color: var(--muted); }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
  background: #fff;
}
.service-card .top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(26,31,94,.12); }
.service-card:hover .top-bar { transform: scaleX(1); }
.s-icon {
  width: 58px; height: 58px; border-radius: 12px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(45,79,209,.3);
}
.s-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--navy); margin-bottom: .75rem;
}
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════
   PERFORMANCE
══════════════════════════════ */
.perf-top {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem;
}
.year-filters { display: flex; gap: .6rem; flex-wrap: wrap; }
.yr-btn {
  padding: .4rem 1rem;
  border: 1px solid rgba(78,181,229,.4);
  border-radius: 50px;
  color: var(--sky); font-size: .78rem; font-weight: 600;
  background: none; cursor: pointer; transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.yr-btn.active, .yr-btn:hover {
  background: var(--sky); color: var(--dark); border-color: var(--sky);
}

.perf-grid { display: grid; grid-template-columns: 3fr 1fr; gap: 3rem; align-items: start; }

.perf-table-wrap { overflow-x: auto; }
.perf-table {
  width: 100%; border-collapse: collapse; font-size: .85rem; min-width: 500px;
}
.perf-table thead tr th {
  background: rgba(78,181,229,.12);
  color: var(--sky); padding: 1rem 1.25rem;
  text-align: left; font-weight: 600;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
.perf-table thead tr th:first-child { border-radius: 8px 0 0 0; }
.perf-table thead tr th:last-child  { border-radius: 0 8px 0 0; }
.perf-table tbody tr td {
  padding: .9rem 1.25rem;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: middle;
}
.perf-table tbody tr:hover td { background: rgba(255,255,255,.03); }
.perf-table .val-cell { color: var(--gold); font-weight: 700; white-space: nowrap; }
.perf-table .total-row td {
  color: var(--sky) !important; font-weight: 700 !important;
  background: rgba(78,181,229,.07); border-top: 1px solid rgba(78,181,229,.2);
  font-size: .9rem;
}

.perf-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.ps-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 1.75rem;
  transition: var(--transition);
}
.ps-card:hover { background: rgba(255,255,255,.08); border-color: rgba(240,165,0,.3); }
.ps-card .ps-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--gold);
}
.ps-card .ps-l { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .2rem; }
.ps-card .ps-s { font-size: .75rem; color: var(--sky); margin-top: .5rem; }

/* ══════════════════════════════
   CLIENTS
══════════════════════════════ */
.clients-header { text-align: center; margin-bottom: 4rem; }
.clients-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem;
}
.client-card {
  background: #fff; border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: default;
}
.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26,31,94,.12);
  border-color: var(--gold);
}
.c-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(45,79,209,.3);
}
.c-icon svg { width: 30px; height: 30px; }
.client-card h4 { font-weight: 700; font-size: .9rem; color: var(--navy); line-height: 1.4; }

/* ══════════════════════════════
   AWARDS
══════════════════════════════ */
.awards-inner { text-align: center; }
.awards-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.25rem; margin-top: 3rem;
}
.award-pill {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.75rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: rgba(255,255,255,.9); font-weight: 600; font-size: .9rem;
  transition: var(--transition);
}
.award-pill:hover {
  background: rgba(240,165,0,.12);
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-3px);
}
.award-pill svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ══════════════════════════════
   WHY US
══════════════════════════════ */
.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.why-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  border: 1px solid transparent;
  transition: var(--transition);
}
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}
.why-card:hover { border-color: var(--gold); background: #fff; box-shadow: var(--shadow); transform: translateY(-4px); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 900;
  color: rgba(26,31,94,.06); line-height: 1;
  position: absolute; top: .75rem; right: 1.25rem;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--navy); margin-bottom: 1rem;
}
.why-card p { font-size: .88rem; color: var(--muted); line-height: 1.8; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
#contact {
  background: var(--grad);
  position: relative; overflow: hidden;
}
#contact::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
#contact::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(240,165,0,.04);
  pointer-events: none;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  position: relative; z-index: 1;
}
.contact-info .sec-title { color: #fff; }
.contact-info > p { color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.9; margin-bottom: 2.5rem; }
.c-details { display: flex; flex-direction: column; gap: 1.25rem; }
.c-row { display: flex; gap: 1rem; align-items: flex-start; }
.c-row-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition);
}
.c-row:hover .c-row-icon { background: rgba(240,165,0,.25); }
.c-row-icon svg { width: 20px; height: 20px; }
.c-row h5 {
  font-size: .72rem; font-weight: 700; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem;
}
.c-row p { color: rgba(255,255,255,.9); font-size: .9rem; margin: 0; line-height: 1.5; }

/* Form */
.contact-form-box {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 2.75rem;
}
.contact-form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: #fff; margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: .75rem; font-weight: 600;
  color: rgba(255,255,255,.75); margin-bottom: .45rem; letter-spacing: .05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .85rem 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: .92rem;
  outline: none; transition: border-color .25s, background .25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: rgba(255,255,255,.14); }
.form-group select option { background: var(--navy); color: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }

.field-error { font-size: .75rem; color: #f87171; margin-top: .3rem; display: none; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: #f87171; }
.form-group.has-error .field-error { display: block; }

.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: .95rem; letter-spacing: .04em;
  border: none; border-radius: 6px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-submit:hover { background: #e09400; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,.5); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.form-msg {
  margin-top: 1rem; padding: .9rem 1.1rem;
  border-radius: 6px; font-size: .88rem; font-weight: 500;
  display: none; text-align: center;
}
.form-msg.success { background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.4); color: #86efac; display: block; }
.form-msg.error   { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.35); color: #fca5a5; display: block; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--dark);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-inner {
  max-width: 800px; margin: 0 auto;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: .5rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.4); font-style: italic; margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 1.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-copy strong { color: rgba(255,255,255,.5); }

/* ══════════════════════════════
   SCROLL TO TOP
══════════════════════════════ */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--dark);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(240,165,0,.4);
  transform: translateY(80px); opacity: 0;
  transition: var(--transition);
}
#scrollTop.show { transform: translateY(0); opacity: 1; }
#scrollTop:hover { transform: translateY(-3px); }

/* ══════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .perf-grid    { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .concerns-row  { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .hero-desc { margin: 0 auto 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .section { padding: 4rem 1.25rem; }
  .hero-stats { grid-template-columns: 1fr; max-width: 250px; margin: 2rem auto 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.75rem 1.25rem; }
  .concerns-row { grid-template-columns: 1fr; }
}
