/* ============================================================
   TCG Theme 2026 — Main Stylesheet
   Trendset Communications Group | tcgexperts.com
   Modern Bold — Mobile First
   ============================================================ */

/* ── Variables ───────────────────────────────────────────────*/
:root {
  --navy:       #002147;
  --navy-dark:  #001530;
  --navy-mid:   #003070;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark:  #A88830;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --light-gray: #EEF0F5;
  --mid-gray:   #8A92A0;
  --dark:       #111827;
  --text:       #1E2A3B;
  --success:    #1A7F5A;
  --error:      #C0392B;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Courier New', monospace;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(0,33,71,.07);
  --shadow:    0 4px 20px rgba(0,33,71,.10);
  --shadow-lg: 0 12px 48px rgba(0,33,71,.15);
  --shadow-xl: 0 24px 80px rgba(0,33,71,.20);

  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --nav-h: 76px;
}

/* ── Reset ───────────────────────────────────────────────────*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Typography helpers ──────────────────────────────────────*/
.eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.2; color: var(--navy);
}
.section-sub {
  font-size: 1.05rem; color: var(--mid-gray); max-width: 620px; margin-top: .75rem;
}
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }

/* ── Layout ──────────────────────────────────────────────────*/
.container {
  width: 100%; max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(3rem, 7vw, 6rem); }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); }
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Buttons ─────────────────────────────────────────────────*/
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  border-radius: var(--radius-sm); padding: .85rem 1.8rem;
  transition: var(--transition); white-space: nowrap; cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.45);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-block { width: 100%; justify-content: center; }

/* ── Navigation ──────────────────────────────────────────────*/
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
#site-nav.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.nav-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo img { height: 52px; width: auto; }
.nav-menu {
  display: none; flex-direction: column;
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--navy-dark); padding: 2rem;
  overflow-y: auto; gap: .25rem;
}
.nav-menu.open { display: flex; }
@media (min-width: 960px) {
  .nav-menu { display: flex; flex-direction: row; position: static; background: none; padding: 0; inset: auto; overflow: visible; gap: 0; }
}
.nav-menu a {
  color: rgba(255,255,255,.85); font-weight: 600; font-size: .9rem;
  padding: .65rem 1rem; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.nav-menu a:hover { color: var(--gold); background: rgba(255,255,255,.06); }
.nav-cta-group { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone { color: var(--gold); font-weight: 700; font-size: .95rem; display: none; }
@media (min-width: 640px) { .nav-phone { display: flex; align-items: center; gap: .4rem; } }
.nav-phone svg { width: 16px; height: 16px; }
.nav-phone:hover { color: var(--gold-light); }
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 960px) { .hamburger { display: none; } }

/* ── Sticky CTA Bar ──────────────────────────────────────────*/
#sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--navy-dark); border-top: 2px solid var(--gold);
  padding: .75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(100%); transition: transform .4s ease;
}
#sticky-cta.visible { transform: translateY(0); }
.sticky-cta-left { display: flex; align-items: center; gap: 1rem; }
.sticky-cta-left p { color: var(--white); font-size: .9rem; font-weight: 600; display: none; }
@media (min-width: 640px) { .sticky-cta-left p { display: block; } }
.sticky-phone { color: var(--gold); font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: .4rem; }
.sticky-phone svg { width: 16px; height: 16px; }
@media (min-width: 768px) { #sticky-cta { display: none; } } /* Hidden on desktop where nav shows phone */

/* ── Hero ────────────────────────────────────────────────────*/
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: var(--navy-dark);
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .2;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,21,48,.96) 0%, rgba(0,33,71,.85) 50%, rgba(0,48,112,.7) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1; opacity: .04;
  background-image: linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-accent {
  position: absolute; right: -80px; top: 10%; bottom: 10%; width: 50%; z-index: 1;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,.08) 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  display: none;
}
@media (min-width: 960px) { .hero-accent { display: block; } }
.hero-content { position: relative; z-index: 2; padding-block: 5rem 4rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.35);
  border-radius: 50px; padding: .4rem 1.1rem;
  color: var(--gold); font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900; line-height: 1.08; color: var(--white);
  margin-bottom: 1.4rem; max-width: 820px;
}
.hero h1 .accent { color: var(--gold); position: relative; display: inline-block; }
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px;
  background: var(--gold); border-radius: 2px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.8);
  max-width: 620px; line-height: 1.7; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat {}
.hero-stat .num {
  font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.hero-stat .label {
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem;
}

/* ── Trust Bar ───────────────────────────────────────────────*/
.trust-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap; gap: 0;
  align-items: stretch; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: .7rem;
  padding: 1rem 1.5rem; flex: 1; min-width: 180px;
  border-right: 1px solid rgba(255,255,255,.08);
  color: var(--white);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.trust-item-text { font-size: .85rem; font-weight: 600; line-height: 1.3; }

/* ── Services Grid ───────────────────────────────────────────*/
.services-grid { display: grid; gap: 1.25rem; }
@media (min-width: 560px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: .75rem;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(0,33,71,.06); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; color: var(--navy); }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.service-card p { font-size: .875rem; color: var(--mid-gray); line-height: 1.6; flex: 1; }
.service-card-link {
  font-size: .85rem; font-weight: 700; color: var(--gold);
  display: flex; align-items: center; gap: .35rem; margin-top: .25rem;
  transition: var(--transition);
}
.service-card-link svg { width: 14px; height: 14px; transition: transform .2s; }
.service-card:hover .service-card-link { color: var(--navy); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ── About Section ───────────────────────────────────────────*/
.about-layout {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 768px) { .about-layout { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .about-layout { grid-template-columns: 55% 1fr; } }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.about-image-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  border-left: 4px solid var(--gold);
}
.about-image-badge .num { font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.about-image-badge p { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.75); margin-top: .2rem; }
.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text p { color: #3D4A5C; line-height: 1.75; }
.about-features { display: flex; flex-direction: column; gap: .75rem; margin-top: .5rem; }
.about-feature { display: flex; align-items: flex-start; gap: .75rem; }
.about-feature-icon {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(201,168,76,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem;
}
.about-feature-icon svg { width: 15px; height: 15px; color: var(--gold); }
.about-feature-text h4 { font-size: .9rem; font-weight: 700; color: var(--navy); }
.about-feature-text p { font-size: .85rem; color: var(--mid-gray); margin-top: .15rem; }

/* ── Industries ──────────────────────────────────────────────*/
.industry-card {
  background: var(--navy);
  border-radius: var(--radius); overflow: hidden;
  position: relative; min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: var(--transition);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.industry-card-bg {
  position: absolute; inset: 0;
}
.industry-card-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; transition: opacity .3s; }
.industry-card:hover .industry-card-bg img { opacity: .35; }
.industry-card-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,21,48,.98) 0%, rgba(0,33,71,.6) 60%, transparent 100%);
}
.industry-card-content {
  position: relative; z-index: 1; padding: 1.75rem;
}
.industry-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.industry-card-icon svg { width: 24px; height: 24px; color: var(--gold); }
.industry-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.industry-card p { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 1rem; }
.industry-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--gold); font-size: .85rem; font-weight: 700;
  transition: var(--transition);
}
.industry-card-link svg { width: 14px; height: 14px; }
.industry-card:hover .industry-card-link { gap: .7rem; }

/* ── Case Studies ─────────────────────────────────────────── */
.case-study-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: var(--transition);
}
.case-study-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.case-tag {
  display: inline-flex; align-items: center;
  background: rgba(0,33,71,.06); color: var(--navy);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 50px;
}
.case-study-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.case-study-card p { font-size: .875rem; color: #3D4A5C; line-height: 1.65; flex: 1; }
.case-meta { display: flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600; color: var(--mid-gray); padding-top: .75rem; border-top: 1px solid var(--light-gray); }
.case-meta svg { width: 14px; height: 14px; color: var(--gold); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.testimonial-card::before {
  content: '"'; font-size: 5rem; line-height: 1; color: var(--gold); opacity: .15;
  position: absolute; top: .5rem; left: 1.25rem;
  font-family: Georgia, serif;
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.testimonial-text { font-size: .95rem; color: var(--text); line-height: 1.75; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--light-gray); }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,33,71,.08); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: var(--navy); flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial-role { font-size: .8rem; color: var(--mid-gray); }

/* ── Blog ─────────────────────────────────────────────────── */
.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1.5px solid var(--light-gray);
  display: flex; flex-direction: column; transition: var(--transition);
}
.blog-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--light-gray); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.blog-card-meta { display: flex; align-items: center; gap: .75rem; font-size: .77rem; color: var(--mid-gray); }
.blog-card-meta span { display: flex; align-items: center; gap: .3rem; }
.blog-card-meta svg { width: 12px; height: 12px; }
.blog-tag {
  background: rgba(0,33,71,.06); color: var(--navy);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .6rem; border-radius: 50px;
}
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.blog-card p { font-size: .875rem; color: var(--mid-gray); line-height: 1.6; flex: 1; }
.blog-card-link { font-size: .85rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: .3rem; margin-top: auto; padding-top: .75rem; transition: var(--transition); }
.blog-card-link svg { width: 14px; height: 14px; transition: transform .2s; }
.blog-card:hover .blog-card-link svg { transform: translateX(4px); }

/* ── Partners ─────────────────────────────────────────────── */
.partners-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 2rem 3.5rem;
}
.partner-logo { opacity: .55; transition: opacity .2s; filter: grayscale(100%); height: 36px; width: auto; }
.partner-logo:hover { opacity: 1; filter: none; }

/* ── CTA Section ─────────────────────────────────────────────*/
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-inner { text-align: center; max-width: 700px; margin-inline: auto; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-divider { color: rgba(255,255,255,.3); font-size: .85rem; font-weight: 600; }

/* ── Team ─────────────────────────────────────────────────── */
.team-card { text-align: center; }
.team-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; object-position: top; margin-inline: auto; border: 4px solid var(--gold); }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-top: 1rem; }
.team-role { font-size: .85rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: .2rem; }
.team-social { display: flex; justify-content: center; gap: .6rem; margin-top: .75rem; }
.team-social a { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,33,71,.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.team-social a:hover { background: var(--navy); }
.team-social svg { width: 14px; height: 14px; color: var(--navy); }
.team-social a:hover svg { color: var(--white); }

/* ── Footer ──────────────────────────────────────────────────*/
.site-footer { background: var(--navy-dark); color: var(--white); }
.footer-top { padding-block: 3.5rem; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); } }
.footer-brand .logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.1rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,.7); }
.footer-social a:hover svg { color: var(--navy); }
.footer-col h4 { font-size: .85rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .85rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: .25rem; }
.footer-contact-item a, .footer-contact-item p { font-size: .875rem; color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.25rem;
  display: flex; flex-wrap: wrap; gap: .75rem;
  align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Lead Form ────────────────────────────────────────────── */
.lead-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-xl);
}
.lead-form-wrap h3 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.lead-form-wrap p.sub { font-size: .9rem; color: var(--mid-gray); margin-bottom: 1.5rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-size: .82rem; font-weight: 700; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid var(--light-gray); border-radius: var(--radius-sm);
  color: var(--text); background: var(--off-white);
  transition: border-color .2s;
  font-size: .95rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .78rem; color: var(--mid-gray); margin-top: .5rem; }
.form-note a { color: var(--gold); }
.form-success {
  display: none; text-align: center; padding: 2rem;
}
.form-success.visible { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--success); margin-inline: auto; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.form-success p { color: var(--mid-gray); }

/* ── Service Page ─────────────────────────────────────────── */
.page-hero {
  background: var(--navy-dark); padding-top: var(--nav-h);
  padding-block-end: 4rem;
}
.page-hero-inner { padding-block: 4rem 3rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: var(--white); line-height: 1.15; max-width: 680px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin-top: 1rem; line-height: 1.7; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; }
.breadcrumb a, .breadcrumb span { font-size: .82rem; color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; color: rgba(255,255,255,.3); }

.service-layout {
  display: grid; gap: 3rem; align-items: start;
}
@media (min-width: 960px) { .service-layout { grid-template-columns: 1fr 380px; } }
.service-body { display: flex; flex-direction: column; gap: 2.5rem; }
.service-body h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; color: var(--navy); }
.service-body p { color: #3D4A5C; line-height: 1.8; }
.service-body ul { display: flex; flex-direction: column; gap: .6rem; }
.service-body ul li { display: flex; align-items: flex-start; gap: .65rem; color: #3D4A5C; font-size: .95rem; }
.service-body ul li::before { content: ''; width: 20px; height: 20px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: .2rem; display: flex; align-items: center; justify-content: center; }
.service-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item { border: 1.5px solid var(--light-gray); border-radius: var(--radius); overflow: hidden; margin-bottom: .75rem; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem; cursor: pointer; background: var(--white);
  font-weight: 700; color: var(--navy); font-size: .95rem;
  transition: background .2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(0,33,71,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.faq-icon svg { width: 14px; height: 14px; color: var(--navy); transition: transform .3s ease; }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); color: var(--navy); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 1rem 1.4rem 1.4rem; color: #3D4A5C; font-size: .92rem; line-height: 1.75; border-top: 1px solid var(--light-gray); }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-layout {
  display: grid; gap: 3rem;
}
@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1fr; align-items: start; } }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 420px; } }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--navy); line-height: 1.2; }
.contact-info p { color: #3D4A5C; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; background: var(--off-white); border-radius: var(--radius); }
.contact-detail-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-detail h4 { font-size: .85rem; font-weight: 700; color: var(--mid-gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.contact-detail a, .contact-detail p { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-detail a:hover { color: var(--gold); }

/* ── Utilities ───────────────────────────────────────────────*/
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Animations ──────────────────────────────────────────────*/
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp .65s ease both; }
.animate-up.delay-1 { animation-delay: .1s; }
.animate-up.delay-2 { animation-delay: .2s; }
.animate-up.delay-3 { animation-delay: .3s; }
.animate-up.delay-4 { animation-delay: .4s; }

/* ── Scroll reveal ───────────────────────────────────────────*/
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
