/*
Theme Name: 24/7 Nurture Limited
Theme URI: https://nurtureltd.co.uk
Author: 24/7 Nurture Limited
Author URI: https://nurtureltd.co.uk
Description: Professional theme for 24/7 Nurture Limited - UK Home Care, Van Delivery & Properties
Version: 1.0.0
License: Proprietary
License URI: https://nurtureltd.co.uk
Text Domain: nurtureltd
Tags: healthcare, home-care, professional, responsive, uk
*/

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
  --navy:        #0A1F44;
  --navy-dark:   #060F22;
  --navy-mid:    #122452;
  --gold:        #C9A84C;
  --gold-light:  #E8C876;
  --gold-pale:   #F7EFD8;
  --white:       #FFFFFF;
  --off-white:   #F9F8F5;
  --grey-light:  #F0EEE9;
  --grey-mid:    #B8B4A8;
  --grey-dark:   #5A5650;
  --text:        #1A1714;
  --text-muted:  #6B6560;
  --green:       #2E7D5E;
  --green-light: #E8F5EF;
  --red:         #C0392B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;
  --font-mono:    'Courier New', monospace;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(10,31,68,0.08);
  --shadow-md:   0 8px 32px rgba(10,31,68,0.12);
  --shadow-lg:   0 24px 64px rgba(10,31,68,0.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1240px;
  --section-pad: clamp(60px, 8vw, 120px);
}

/* ============================================
   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);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button, input, textarea, select {
  font-family: var(--font-body);
  font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { line-height: 1.8; color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--navy-dark); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.72); }
.section--grey { background: var(--off-white); }
.section--gold-pale { background: var(--gold-pale); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.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);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar-items { display: flex; gap: 24px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,31,68,0.1);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(10,31,68,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 60px);
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 28px; height: 28px; }
.logo-text { line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-dark);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--navy); background: var(--grey-light); }
.main-nav a.active { color: var(--navy); font-weight: 700; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-light);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 0.88rem;
}
.dropdown a:hover { background: var(--gold-pale); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.phone-badge svg { width: 16px; height: 16px; color: var(--gold); }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.3rem;
  font-family: var(--font-display);
  padding: 12px 32px;
  border-radius: var(--radius-md);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.1); color: var(--gold-light); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center top;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(6,15,34,0.97) 0%,
    rgba(10,31,68,0.85) 60%,
    rgba(10,31,68,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); display: block; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-float-card {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 320px;
}
.float-card-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.float-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
}
.float-card-item:last-child { border-bottom: none; }
.float-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon svg { width: 18px; height: 18px; color: var(--gold); }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--gold-pale);
  padding: 28px 0;
  border-top: 3px solid var(--gold);
}
.trust-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
  bottom: -30px;
  right: -20px;
}
.about-badge-float {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float .number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-badge-float .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; margin-top: 4px; }
.about-content { }
.about-points { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-point-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-point-icon svg { width: 20px; height: 20px; color: var(--green); }
.about-point-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-point p { font-size: 0.9rem; margin: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services-intro { text-align: center; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body { padding: 28px; }
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-card .service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-feature svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

/* ============================================
   TEAM
   ============================================ */
.team-section { background: var(--off-white); }
.team-intro { text-align: center; margin-bottom: 64px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.nurse-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  text-align: center;
}
.nurse-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.nurse-card:hover .nurse-overlay { opacity: 1; }
.nurse-photo-wrap { position: relative; overflow: hidden; }
.nurse-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  transition: var(--transition-slow);
}
.nurse-card:hover .nurse-photo { transform: scale(1.05); }
.nurse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,68,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  gap: 10px;
}
.nurse-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.nurse-social-link:hover { background: var(--gold); border-color: var(--gold); }
.nurse-social-link svg { width: 15px; height: 15px; }
.nurse-reg-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.nurse-body { padding: 22px 20px 26px; }
.nurse-name {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.nurse-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.nurse-contacts { display: flex; flex-direction: column; gap: 8px; }
.nurse-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: left;
}
.nurse-contact-item svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.nurse-contact-item a { color: var(--text-muted); }
.nurse-contact-item a:hover { color: var(--navy); }
.nurse-contact-divider { width: 40px; height: 2px; background: var(--gold); margin: 14px auto; border-radius: 2px; }
.nurse-cta { margin-top: 16px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-item:last-child { border-bottom: none; }
.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  min-width: 48px;
  margin-top: -4px;
}
.why-item h4 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.why-item p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; }
.why-image {
  position: relative;
}
.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.cqc-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.cqc-badge svg { width: 24px; height: 24px; }
.cqc-text { font-size: 0.82rem; }
.cqc-text strong { display: block; font-size: 0.95rem; font-weight: 700; }

/* ============================================
   BUSINESSES / DIVISIONS
   ============================================ */
.divisions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.division-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.division-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: var(--transition-slow);
}
.division-card:hover .division-bg { transform: scale(1.05); }
.division-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,15,34,0.95) 0%, rgba(6,15,34,0.2) 100%);
}
.division-content { position: relative; z-index: 2; padding: 32px; }
.division-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.division-icon svg { width: 26px; height: 26px; color: var(--gold); }
.division-content h3 { color: var(--white); margin-bottom: 10px; }
.division-content p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--gold-pale); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); }
.testimonial-text { font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; color: var(--text); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-pale);
}
.testimonial-author-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon-wrap {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap svg { width: 20px; height: 20px; color: var(--gold); }
.contact-detail-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 4px; }
.contact-detail-value { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.contact-detail-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-title { margin-bottom: 8px; font-size: 1.5rem; }
.form-subtitle { font-size: 0.9rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group label span { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.88rem; color: var(--text-muted); }
.form-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--navy); }
.form-submit { margin-top: 8px; width: 100%; padding: 16px; font-size: 1rem; }

/* ============================================
   LOCATIONS / AREAS
   ============================================ */
.areas-section { background: var(--navy-dark); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.area-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.area-chip:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold-light); }
.area-chip svg { width: 14px; height: 14px; color: var(--gold); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--navy-dark); margin-bottom: 16px; }
.cta-banner p { color: var(--navy); opacity: 0.8; margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { }
.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-name { color: var(--white); }
.footer-tagline { font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy-dark); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1.1rem; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { text-decoration: underline; }
.reg-badges { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.reg-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23F9F8F5' d='M0,60 C480,0 960,0 1440,60 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
  background-size: cover;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================
   EMERGENCY BANNER
   ============================================ */
.emergency-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.emergency-bar a { color: var(--white); text-decoration: underline; }
.emergency-bar svg { width: 16px; height: 16px; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-float { display: none; }
  .about-img-accent { width: 120px; height: 120px; bottom: -10px; right: -10px; }
  .hero-float-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .divisions-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-items { gap: 16px; flex-direction: column; }
  .topbar { display: none; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .site-footer, .topbar { display: none; }
  .hero { min-height: auto; }
}
