/*
Theme Name: UK Global Edu
Theme URI: https://ukglobaledu.com
Author: UK Global Educational Consultant
Description: A modern, professional WordPress theme for UK Global Educational Consultant — guiding students to study in the UK.
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: ukglobaledu
*/

/* ========================================
   DESIGN SYSTEM & VARIABLES
======================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  /* Brand Palette */
  --navy:        #0A1628;
  --navy-mid:    #142240;
  --navy-light:  #1E3562;
  --gold:        #C8922A;
  --gold-light:  #E8B84B;
  --gold-pale:   #F9F0DC;
  --cream:       #FDFAF4;
  --white:       #FFFFFF;
  --gray-100:    #F4F4F2;
  --gray-200:    #E5E4E0;
  --gray-400:    #A0A09C;
  --gray-600:    #6B6B67;
  --gray-800:    #2E2E2C;
  --success:     #1A6B45;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container:   1200px;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.35s;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

/* ========================================
   TYPOGRAPHY SCALE
======================================== */
.display-xl { font-size: clamp(2.8rem, 6vw, 5rem); }
.display-lg { font-size: clamp(2.2rem, 4.5vw, 3.75rem); }
.display-md { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
.display-sm { font-size: clamp(1.4rem, 2.5vw, 1.875rem); }
.body-lg    { font-size: 1.125rem; }
.body-md    { font-size: 1rem; }
.body-sm    { font-size: 0.875rem; }
.caption    { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

/* ========================================
   LAYOUT
======================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: var(--section-pad); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

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

/* ========================================
   BADGES & LABELS
======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-gold   { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(200,146,42,0.3); }
.badge-navy   { background: rgba(10,22,40,0.08); color: var(--navy); }
.badge-white  { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }

/* ========================================
   HEADER / NAVIGATION
======================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--dur) var(--ease);
}

#site-header.transparent {
  background: transparent;
  padding-block: 1.25rem;
}

#site-header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: 0.8rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

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

.logo-text .name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
}

.logo-text .tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* Nav */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.primary-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.primary-nav .menu-cta > a {
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  padding: 0.55rem 1.25rem;
}

.primary-nav .menu-cta > a:hover {
  background: var(--gold-light);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding-block: 8rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,146,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(30,53,98,0.8) 0%, transparent 70%),
    linear-gradient(135deg, #0A1628 0%, #142240 40%, #0E1F3A 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,146,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,146,42,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 60% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

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

.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
  line-height: 1.3;
}

/* Hero floating card */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  max-width: 360px;
  width: 100%;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.university-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}

.hero-card-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
}

.check-icon {
  width: 20px;
  height: 20px;
  background: rgba(200,146,42,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services { background: var(--white); }

.service-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.service-card:hover {
  border-color: rgba(200,146,42,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.88rem;
  margin-top: 1.25rem;
  transition: gap 0.2s;
}

.service-link:hover { gap: 0.7rem; }

/* ========================================
   WHY CHOOSE US
======================================== */
.why-us { background: var(--navy); overflow: hidden; position: relative; }

.why-us::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-us .section-header h2,
.why-us .section-header .caption { color: var(--white); }

.why-us .section-header p { color: rgba(255,255,255,0.6); }

.why-card {
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: all var(--dur) var(--ease);
}

.why-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(200,146,42,0.4);
}

.why-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(200,146,42,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.6rem; }
.why-card p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }

/* ========================================
   PROCESS STEPS
======================================== */
.process { background: var(--cream); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gray-200) 100%);
}

.process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content { padding-top: 0.6rem; }
.step-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-content p  { color: var(--gray-600); font-size: 0.93rem; }

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials { background: var(--white); }

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1.25rem;
  display: block;
}

.testimonial-text {
  color: var(--gray-800);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.author-name  { font-weight: 500; font-size: 0.9rem; }
.author-study { color: var(--gray-600); font-size: 0.8rem; }

/* ========================================
   DESTINATIONS / UNIVERSITIES
======================================== */
.destinations { background: var(--cream); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.dest-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all var(--dur) var(--ease);
  cursor: default;
}

.dest-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200,146,42,0.15);
}

.dest-flag { font-size: 2.5rem; margin-bottom: 0.75rem; }
.dest-name { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.25rem; }
.dest-count { font-size: 0.78rem; color: var(--gray-400); }

/* ========================================
   CTA BANNER
======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -5%;
  top: -30%;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(200,146,42,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact { background: var(--white); }

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

.contact-info h2 { margin-bottom: 1rem; font-size: 2rem; }
.contact-info > p { color: var(--gray-600); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-label { font-size: 0.78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail-value { font-weight: 500; font-size: 0.95rem; }

/* Contact Form */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: border-color 0.2s;
  outline: none;
}

.form-control:focus { border-color: var(--gold); }

select.form-control { appearance: none; cursor: pointer; }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text .name { color: var(--white); }

.footer-desc {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.social-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul a {
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold-light); }

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

.footer-bottom a:hover { color: var(--gold-light); }

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up {
  animation: fadeUp 0.7s var(--ease) both;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate].in-view {
  opacity: 1;
  transform: none;
}

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 500;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {
  .hero-layout   { flex-direction: column; }
  .hero-visual   { display: none; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle   { display: flex; }
  .primary-nav  { display: none; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy);
    padding: 6rem 2rem 2rem;
    z-index: 999;
  }
  .primary-nav.open ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .primary-nav.open a {
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
  }
  .form-row        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .hero-stats      { gap: 1.5rem; }
  .process-steps::before { display: none; }
}

/* ========================================
   INNER PAGES
======================================== */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(200,146,42,0.1), transparent 70%);
}

.page-hero h1 { color: var(--white); position: relative; }
.page-hero p  { color: rgba(255,255,255,0.6); margin-top: 1rem; position: relative; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}

.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep    { color: rgba(255,255,255,0.25); }

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center   { text-align: center; }
.text-gold     { color: var(--gold); }
.text-navy     { color: var(--navy); }
.text-muted    { color: var(--gray-600); }
.font-display  { font-family: var(--font-display); }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-1  { margin-bottom: 0.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);
  white-space: nowrap;
  border: 0;
}
