/* ============================================================
   SOUTHERN CROSS TALENT — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ========== TOKENS ========== */
:root {
  --navy: #0D1F3C;
  --navy-mid: #1a3255;
  --navy-light: #2a4a72;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --grey-light: #EEF0F4;
  --grey-mid: #8E96A3;
  --grey-dark: #4A5568;
  --gold: #B8935A;
  --gold-light: #D4AE7A;
  --teal: #2D8E8E;
  --teal-light: #3DAAAA;
  --text-dark: #0D1F3C;
  --text-body: #3D4A5C;
  --text-muted: #718096;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(13,31,60,0.08);
  --shadow-md: 0 4px 20px rgba(13,31,60,0.10);
  --shadow-lg: 0 12px 40px rgba(13,31,60,0.14);
  --transition: 0.25s cubic-bezier(0.4,0,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;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 500;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; color: var(--text-body); }

/* ========== UTILITIES ========== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }

.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.divider { width: 48px; height: 2px; background: var(--gold); margin: 24px 0; }
.divider-center { margin: 24px auto; }
.hidden { display: none !important; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,31,60,0.25);
}
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,31,60,0.07);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(13,31,60,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; flex-direction: column; text-decoration: none; gap: 1px; }
.nav-logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--navy); letter-spacing: 0.01em; line-height: 1; }
.nav-logo-sub { font-family: 'DM Sans', sans-serif; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.875rem; font-weight: 400; color: var(--text-body); text-decoration: none; transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 500; }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: var(--transition); border-radius: 2px; }
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; color: var(--text-body); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--grey-light); transition: var(--transition); }
.nav-mobile a:hover { color: var(--navy); padding-left: 8px; }
.nav-mobile .nav-mobile-btns { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

/* ========== PAGE SYSTEM ========== */
.page { display: none; padding-top: 72px; }
.page.active { display: block; }

/* ========== HERO ========== */
.hero { position: relative; min-height: calc(100vh - 72px); display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0D1F3C 0%, #1a3255 50%, #152b4a 100%); }
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(184,147,90,0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(45,142,142,0.07) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; right: 0; top: 0; width: 50%; height: 100%; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-cross { position: absolute; right: 8%; top: 50%; transform: translateY(-50%); opacity: 0.06; }
.hero-cross svg { width: 320px; height: 320px; }
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 36px; height: 1.5px; background: var(--gold); }
.hero-eyebrow span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.hero h1 { color: var(--white); max-width: 680px; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 520px; margin-bottom: 44px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 72px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 400; }

/* ========== TRUST STRIP ========== */
.trust-strip { background: var(--off-white); border-bottom: 1px solid var(--grey-light); padding: 36px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { width: 36px; height: 36px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 16px; height: 16px; }
.trust-text { font-size: 0.875rem; font-weight: 500; color: var(--navy); }

/* ========== SERVICES PREVIEW ========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.service-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); padding: 40px 36px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--navy), var(--teal)); opacity: 0; transition: var(--transition); }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--grey-light); line-height: 1; margin-bottom: 20px; user-select: none; }
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.service-card-footer { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--grey-light); display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 500; color: var(--teal); cursor: pointer; transition: var(--transition); }
.service-card-footer:hover { gap: 12px; }

/* ========== WHY US ========== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); transition: var(--transition); }
.why-item:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(45,142,142,0.1); }
.why-check { width: 32px; height: 32px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check svg { width: 14px; height: 14px; }
.why-item-text h4 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.why-item-text p { font-size: 0.85rem; color: var(--text-muted); }
.why-visual { position: relative; }
.why-card-stack { position: relative; height: 420px; }
.why-card-bg { position: absolute; width: 100%; height: 100%; background: var(--navy); border-radius: 12px; top: 16px; left: 16px; opacity: 0.12; }
.why-card-main { position: absolute; width: 100%; height: calc(100% - 16px); background: linear-gradient(145deg, var(--navy-mid), var(--navy)); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; }
.why-card-main::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(184,147,90,0.15) 0%, transparent 50%); }
.why-card-text { position: relative; z-index: 1; }
.why-card-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); font-weight: 400; font-style: italic; line-height: 1.4; margin-bottom: 20px; }
.why-card-author { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.why-card-tag { display: inline-block; background: var(--gold); color: var(--white); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: 16px; }

/* ========== CTA BANNER ========== */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(184,147,90,0.08) 0%, transparent 60%); }
.cta-banner-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { color: var(--white); max-width: 500px; }
.cta-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== ABOUT ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-content p { color: var(--text-body); margin-bottom: 20px; line-height: 1.8; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.about-value { background: var(--off-white); border-left: 3px solid var(--gold); padding: 20px; border-radius: 0 var(--radius) var(--radius) 0; }
.about-value h4 { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.about-value p { font-size: 0.82rem; color: var(--text-muted); }
.about-sidebar { position: sticky; top: 96px; }
.about-card { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; color: var(--white); position: relative; overflow: hidden; }
.about-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(184,147,90,0.12) 0%, transparent 60%); }
.about-card-content { position: relative; z-index: 1; }
.about-card h3 { color: var(--white); margin-bottom: 20px; font-size: 1.4rem; }
.about-stats { display: flex; flex-direction: column; gap: 24px; margin: 28px 0; }
.about-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold-light); line-height: 1; }
.about-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.about-sectors { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.sector-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 10px 16px; border-radius: var(--radius); font-size: 0.85rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 10px; }
.sector-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); flex-shrink: 0; }

/* ========== SERVICES FULL ========== */
.services-full { display: flex; flex-direction: column; gap: 80px; }
.service-section { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; padding-bottom: 80px; border-bottom: 1px solid var(--grey-light); }
.service-section:last-child { border-bottom: none; }
.service-label-col { position: sticky; top: 96px; }
.service-num-lg { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; color: var(--grey-light); line-height: 1; user-select: none; }
.service-content h2 { margin-bottom: 16px; }
.service-content > p { font-size: 1rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.75; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.feature-item { background: var(--off-white); padding: 20px; border-radius: var(--radius-lg); transition: var(--transition); border: 1px solid transparent; }
.feature-item:hover { border-color: var(--teal); background: var(--white); box-shadow: var(--shadow-sm); }
.feature-item h4 { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--navy); font-weight: 600; margin-bottom: 6px; }
.feature-item p { font-size: 0.82rem; color: var(--text-muted); }
.service-roles { background: var(--navy); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.role-tag { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 7px 14px; border-radius: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.82); transition: var(--transition); }
.role-tag:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ========== FORMS ========== */
.form-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.form-sidebar h2 { margin-bottom: 16px; }
.form-sidebar p { color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.form-benefits { display: flex; flex-direction: column; gap: 16px; }
.form-benefit { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--off-white); border-radius: var(--radius-lg); }
.form-benefit-icon { width: 36px; height: 36px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-benefit-icon svg { width: 16px; height: 16px; }
.form-benefit span { font-size: 0.875rem; color: var(--text-body); font-weight: 500; }
.form-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); }
.form-card h3 { margin-bottom: 8px; font-size: 1.4rem; }
.form-card > p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,142,142,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.file-upload-area { border: 2px dashed var(--grey-light); border-radius: var(--radius); padding: 28px; text-align: center; cursor: pointer; transition: var(--transition); background: var(--off-white); }
.file-upload-area:hover { border-color: var(--teal); background: rgba(45,142,142,0.03); }
.file-upload-area p { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
.file-upload-area small { font-size: 0.75rem; color: var(--text-muted); opacity: 0.7; }
.file-name-display { font-size: 0.82rem; color: var(--teal); font-weight: 500; margin-top: 8px; min-height: 20px; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 40px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--navy); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-text h4 { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 4px; }
.contact-detail-text p { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.contact-detail-text a { color: var(--teal); text-decoration: none; }
.contact-detail-text a:hover { text-decoration: underline; }

/* ========== TESTIMONIALS ========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); padding: 36px; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: rgba(45,142,142,0.2); }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--teal); line-height: 1; margin-bottom: 12px; opacity: 0.4; }
.testimonial-text { font-size: 0.92rem; color: var(--text-body); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold-light); font-weight: 400; }
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }
.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.star { width: 14px; height: 14px; fill: var(--gold); }

/* ========== PAGE HEADER ========== */
.page-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(184,147,90,0.07) 0%, transparent 60%); }
.page-header-content { position: relative; z-index: 1; }
.page-header .label { color: var(--gold); }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 16px; font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.breadcrumb .current { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ========== FOOTER ========== */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.footer-logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--white); }
.footer-logo-sub { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 24px; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.footer-contact-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.footer-contact-val { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-contact-val a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-val a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards; }
.anim-1 { animation-delay: 0.1s; }
.anim-2 { animation-delay: 0.2s; }
.anim-3 { animation-delay: 0.3s; }
.anim-4 { animation-delay: 0.4s; }
.anim-5 { animation-delay: 0.5s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { order: -1; }
  .why-card-stack { height: 280px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-section { grid-template-columns: 1fr; gap: 32px; }
  .service-label-col { position: static; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 32px; }
  .about-values { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip-inner { justify-content: center; }
  .form-card { padding: 28px 20px; }
}
