/* =============================================
   Antunes Bookkeeping — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:        #131E3D;
  --navy-dark:   #131E3D;
  --navy-mid:    #222344;
  --gold:        #CDAD7D;
  --gold-light:  #DBBF94;
  --gold-dark:   #B8996A;
  --white:       #FFFFFF;
  --off-white:   #F4F1EC;
  --gray-light:  #EEEAD6;
  --gray:        #6B7280;
  --gray-mid:    #9CA3AF;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --shadow-sm:   0 2px 8px rgba(19,30,61,0.08);
  --shadow-md:   0 8px 24px rgba(19,30,61,0.12);
  --shadow-lg:   0 20px 48px rgba(19,30,61,0.15);
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utility ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-links a.btn::after {
  display: none;
}
.nav-links a.btn-gold {
  color: var(--navy-dark);
}
.nav-links a.btn-gold:hover {
  color: var(--navy-dark);
}

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
}

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

/* =============================================
   HERO — Homepage
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  /*
   * BACKGROUND IMAGE
   * Save your image in this folder as "hero-bg.jpg" and refresh.
   * If the file doesn't exist the hero shows the solid navy colour instead.
   */
  background: var(--navy-dark) url('hero-bg.png') center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Dark overlay so text stays readable over the photo */
  background: linear-gradient(
    135deg,
    rgba(10, 18, 30, 0.90) 0%,
    rgba(20, 34, 60, 0.82) 55%,
    rgba(10, 18, 30, 0.78) 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(8px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat:first-child { padding-top: 0; }

.hero-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--gold);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: 0.04em;
}
.trust-item svg { flex-shrink: 0; }
.trust-divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(27,24,37,0.3);
}

/* =============================================
   SERVICES OVERVIEW (Homepage)
   ============================================= */
.services-overview {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { color: var(--gold); }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  padding: 100px 0;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
}

.why-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
}
.why-quote em { color: var(--gold); font-style: normal; }

.why-author {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.why-points { display: flex; flex-direction: column; gap: 28px; }

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 28px; height: 28px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg { color: var(--gold); }

.why-point h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-point p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process-header { text-align: center; margin-bottom: 60px; }
.process-header .section-sub { margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--gold);
}

.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(201,168,76,0.07);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 8px;
}
.cta-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand .nav-logo {
  flex-direction: column;
  gap: 6px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  max-width: 420px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  margin-bottom: 12px;
}
.footer-contact a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer-social a {
  color: #CDAD7D;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid #CDAD7D;
  border-radius: 7px;
}
.footer-social a:hover { opacity: 0.7; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--navy);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero .hero-eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.75;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-detail {
  padding: 100px 0;
  background: var(--white);
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #E5E7EB;
}
.service-detail-item:first-child { padding-top: 0; }
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }

.service-detail-visual {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}
.service-feature svg { color: var(--gold); flex-shrink: 0; }

.service-detail-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}
.service-detail-content p {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-includes h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.service-includes ul { display: flex; flex-direction: column; gap: 10px; }
.service-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.service-includes li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.about-photo-placeholder::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
}

.photo-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-icon svg { color: rgba(255,255,255,0.4); }

.about-photo-placeholder p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.5;
}

.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-content .section-tag { margin-bottom: 8px; }
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
}

.about-body { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.about-body p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  text-align: justify;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.about-stat {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.about-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-stat .lbl {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

.about-values {
  padding: 80px 0;
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); }

.value-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.value-icon svg { color: var(--gold); }

.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--gold); }

.contact-detail-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
}
.contact-detail-text a,
.contact-detail-text p {
  font-size: 0.97rem;
  color: var(--text-dark);
  transition: color var(--transition);
}
.contact-detail-text a:hover { color: var(--gold-dark); }

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid #D1D5DB;
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

#form-success {
  display: none;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-grid           { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual         { display: none; }
  .why-grid            { grid-template-columns: 1fr; gap: 48px; }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .about-grid          { grid-template-columns: 1fr; }
  .about-photo-placeholder { aspect-ratio: unset; height: 400px; }
  .service-detail-item { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-item.reverse { direction: ltr; }
  .contact-grid        { grid-template-columns: 1fr; gap: 48px; }

  .services-overview,
  .why-us,
  .process,
  .about-intro,
  .about-values,
  .services-detail,
  .contact-section     { padding: 72px 0; }
  .cta-banner          { padding: 64px 0; }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  .nav-inner { height: 64px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 999;
  }
  .nav-links.open a { font-size: 0.95rem; }
  .nav-toggle { display: flex; }
  .logo-img   { height: 44px; }

  /* ── Hero ── */
  .hero       { padding: 84px 0 56px; }
  .page-hero  { padding: 100px 0 48px; }

  /* ── Sections ── */
  .services-overview,
  .why-us,
  .process,
  .about-intro,
  .about-values,
  .services-detail,
  .contact-section  { padding: 60px 0; }
  .cta-banner       { padding: 52px 0; }

  /* ── Grids ── */
  .services-grid       { grid-template-columns: 1fr; }
  .process-steps       { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .about-stats         { grid-template-columns: 1fr 1fr; }
  .values-grid         { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }

  /* ── Components ── */
  .cta-inner           { flex-direction: column; text-align: center; }
  .cta-actions         { justify-content: center; }
  .trust-bar-inner     { gap: 16px; }
  .trust-divider       { display: none; }
  .trust-item          { font-size: 0.82rem; }
  .contact-form-wrap   { padding: 28px 20px; }
  .why-visual          { padding: 32px 24px; }
  .why-quote           { font-size: 1.25rem; }
  .service-card        { padding: 28px 20px; }
  .service-detail-visual { padding: 32px 24px; }
  .about-body p          { text-align: left; }

  /* ── Footer ── */
  .footer-grid         { text-align: center; }
  .footer-contact a    { justify-content: center; }
  .footer-social       { justify-content: center; }
  footer               { padding: 48px 0 28px; }
}

@media (max-width: 480px) {
  /* ── Nav logo ── */
  .logo-img            { height: 38px; }
  .nav-logo .logo-main { font-size: 1rem; }

  /* ── Hero ── */
  .hero                { padding: 76px 0 48px; }
  .hero-actions        { flex-direction: column; }
  .hero-actions .btn   { width: 100%; justify-content: center; }

  /* ── Sections ── */
  .services-overview,
  .why-us,
  .process,
  .about-intro,
  .about-values,
  .services-detail,
  .contact-section  { padding: 48px 0; }

  /* ── Grids ── */
  .about-stats         { grid-template-columns: 1fr; }
  .about-photo-placeholder { height: 260px; }

  /* ── Form ── */
  .form-submit         { flex-direction: column; align-items: stretch; gap: 12px; }
  .form-submit .btn    { width: 100%; justify-content: center; }
  .form-note           { text-align: center; }

  /* ── CTA ── */
  .cta-actions         { flex-direction: column; width: 100%; }
  .cta-actions .btn    { width: 100%; justify-content: center; }

  /* ── Process ── */
  .step-num            { width: 60px; height: 60px; font-size: 1.2rem; }

  /* ── Service cards ── */
  .service-card        { padding: 24px 18px; }
}

/* =============================================
   LOGO IMAGE — auto-shown by script.js when
   logo.png is found in the project folder
   ============================================= */
/* Nav logo — increased to sit level with menu items */
.logo-img {
  height: 60px;
  width: auto;
  display: none;
  object-fit: contain;
  margin: auto 0;
}

/* Footer logo — separate image (logo-footer.png) */
.logo-img-footer {
  height: 110px;
  width: auto;
  display: none;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* Portal pages use a larger, bright logo */
.portal-logo .logo-img {
  height: 52px;
  filter: brightness(10);
}
.portal-logo .logo-text {
  align-items: center;
}
