/* ============================================================
   NEXT GEN EXPOSURE INC — Main Stylesheet
   Ocean Breeze Theme | Elegant & Luxurious
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Brand Colors */
  --navy:          #03045E;
  --primary:       #0077B6;
  --secondary:     #00B4D8;
  --accent:        #90E0EF;
  --pale:          #CAF0F8;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F8FEFF;
  --gray-50:       #f9fafb;
  --gray-100:      #f0f4f8;
  --gray-200:      #e2e8f0;
  --gray-400:      #94a3b8;
  --gray-600:      #475569;
  --gray-800:      #1e293b;
  --dark:          #0a0a1a;

  /* Text */
  --text:          #1a1a2e;
  --text-muted:    #5a6a7a;

  /* Shadows */
  --shadow-sm:     0 2px 8px  rgba(3, 4, 94, 0.08);
  --shadow:        0 4px 20px rgba(3, 4, 94, 0.12);
  --shadow-lg:     0 8px 40px rgba(3, 4, 94, 0.18);
  --shadow-xl:     0 16px 60px rgba(3, 4, 94, 0.22);

  /* Borders */
  --border-color:  rgba(0, 119, 182, 0.15);
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  /* Typography */
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-ui:       'Montserrat', 'Segoe UI', sans-serif;
  --font-body:     'Open Sans', 'Helvetica Neue', sans-serif;

  /* Transitions */
  --transition:    0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container:     1200px;
  --header-h:      80px;
  --section-pad:   90px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--secondary); }

ul, ol { list-style: none; }

address { font-style: normal; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-ui); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section {
  padding: var(--section-pad) 0;
}
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 1rem auto 0;
}
.section-header .section-divider { margin-bottom: 1rem; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-white  { color: var(--white) !important; }

.bg-white     { background: var(--white); }
.bg-pale      { background: var(--pale); }
.bg-off-white { background: var(--off-white); }
.bg-navy      { background: var(--navy); }
.bg-primary   { background: var(--primary); }
.bg-gradient  { background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 60%, var(--secondary) 100%); }

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

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

/* Arrow icon inside button */
.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* === HEADER / NAVIGATION === */
.site-header {
  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 var(--border-color);
  height: var(--header-h);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.brand-logo img {
  height: 50px;
  width: auto;
}

.main-nav { display: none; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.45rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: var(--pale);
}

.btn-nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  margin-left: 0.5rem;
}
.btn-nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .hamburger { display: none; }
}

/* Mobile nav drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 4, 94, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-xl);
}
.mobile-nav.active { right: 0; }

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.mobile-nav-close button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.5rem;
  padding: 0.5rem;
}

.mobile-nav-logo {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav-logo img { height: 40px; }

.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 8px;
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--primary); background: var(--pale); }
.mobile-nav .btn-nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 1rem;
  border-radius: 50px !important;
}
.mobile-nav .btn-nav-cta:hover { background: var(--navy) !important; }

/* Body padding for fixed header */
body { padding-top: var(--header-h); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 70%, var(--secondary) 100%);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
/* Force ALL text inside page heroes to be white */
.page-hero p,
.page-hero-content p,
.page-hero-text p,
.page-hero .page-hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.page-hero span,
.page-hero-content span,
.page-hero-text span {
  color: rgba(255, 255, 255, 0.75);
}
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.5); }

/* === HOME HERO === */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-team.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: brightness(0.35);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 4, 94, 0.75) 0%,
    rgba(0, 119, 182, 0.45) 60%,
    rgba(0, 180, 216, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}
.hero-text { max-width: 760px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,180,216,0.2);
  border: 1px solid rgba(0,180,216,0.4);
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--secondary); }

.hero p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* === STATS BAR === */
.stats-bar {
  background: linear-gradient(135deg, var(--navy), var(--primary));
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  text-align: center;
  color: var(--white);
  padding: 1rem;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}
.about-image-wrap:hover img { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
.about-badge .badge-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-text .eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.about-feature-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.about-feature-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* === SERVICE CARDS === */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--pale), var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.service-card .service-link:hover { color: var(--secondary); }
.service-card .service-link::after {
  content: '→';
  transition: transform var(--transition);
}
.service-card .service-link:hover::after { transform: translateX(4px); }

/* === WHY CHOOSE US === */
.why-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.why-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--pale);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.why-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.why-card p  { font-size: 0.88rem; color: var(--text-muted); }

/* === TEAM CARDS === */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.team-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--pale);
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--transition-slow);
}
.team-card:hover .team-card-image img { transform: scale(1.05); }

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,4,94,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-social {
  display: flex;
  gap: 0.75rem;
}
.team-card-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: background var(--transition);
}
.team-card-social a:hover { background: var(--secondary); }

.team-card-info {
  padding: 1.5rem;
}
.team-card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.team-card-info .role {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.05em;
}

/* === GALLERY === */
.gallery-grid {
  columns: 2;
  column-gap: 1rem;
}
@media (min-width: 768px)  { .gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,4,94,0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-zoom {
  color: white;
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-zoom { transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); }

/* === TESTIMONIAL SLIDER === */
.testimonials-wrap { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-size: 7rem;
  color: var(--pale);
  line-height: 1;
  z-index: 0;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-stars span { color: #fbbf24; font-size: 1.1rem; }

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-color);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.testimonial-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.testimonial-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* === BLOG CARDS === */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--pale);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  flex: 1;
}
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
}
.blog-read-more:hover { color: var(--secondary); }

/* === FAQ ACCORDION === */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.active { box-shadow: var(--shadow); border-color: var(--accent); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  -webkit-tap-highlight-color: transparent;
}
.faq-question span {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-item.active .faq-question span { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.faq-item.active .faq-icon {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--primary));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
}
.contact-info-card h3 {
  color: white;
  margin-bottom: 0.5rem;
}
.contact-info-card > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.contact-info-text a,
.contact-info-text p {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  margin: 0;
}
.contact-info-text a:hover { color: white; }

.contact-hours { margin-bottom: 2rem; }
.contact-hours h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--accent); }

.contact-social { display: flex; gap: 0.75rem; }
.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: background var(--transition);
}
.contact-social a:hover { background: var(--secondary); }

/* === FORM STYLES === */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}
.form-card h3 { margin-bottom: 0.5rem; }
.form-card > p { color: var(--text-muted); margin-bottom: 2rem; }

.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr; /* single column by default */
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.form-group label .required { color: #e53e3e; margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.12);
}
.form-control::placeholder { color: var(--gray-400); }
.form-control.error { border-color: #e53e3e; }

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

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230077B6' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
  margin-top: 2px;
}
.form-checkbox span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-error {
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 0.3rem;
  display: none;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-control { border-color: #e53e3e; }

/* File upload */
.file-upload-wrap { position: relative; }
.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}
.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius);
  background: var(--off-white);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  flex-direction: column;
}
.file-upload-label:hover {
  border-color: var(--primary);
  background: var(--pale);
}
.file-upload-label .upload-icon { font-size: 2rem; color: var(--primary); }
.file-upload-label .upload-text {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.file-upload-label .upload-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.file-name-display {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--primary);
  display: none;
}

/* Form alert messages */
.form-alert {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
}
/* Support both .success and .form-alert-success class patterns */
.form-alert.success,
.form-alert.form-alert-success {
  display: block;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
.form-alert.error,
.form-alert.form-alert-error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* Google Maps embed */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  display: block;
}

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 60%, var(--secondary) 100%);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* === INSTAGRAM SECTION === */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) { .instagram-grid { grid-template-columns: repeat(6, 1fr); } }

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pale);
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.instagram-item:hover img { transform: scale(1.1); }
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,4,94,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: white;
  font-size: 1.5rem;
}
.instagram-item:hover .instagram-overlay { opacity: 1; }

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
}
.footer-main { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; } }

.footer-brand .footer-logo img {
  height: 45px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity var(--transition);
}
.footer-brand .footer-logo a:hover img { opacity: 1; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; color: var(--secondary); }
.footer-contact-item p { color: rgba(255,255,255,0.65); margin: 0; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-hours { margin-top: 1.25rem; }
.footer-hours h5 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.footer-hours p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin: 0.2rem 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--accent); }

/* === LEGAL PAGES === */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--navy);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--primary);
}
.legal-content p, .legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.legal-content ul, .legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content .legal-updated {
  display: inline-block;
  background: var(--pale);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.legal-content strong { color: var(--navy); }

/* === APPLY PAGE === */
.apply-intro {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .apply-intro { grid-template-columns: 1fr 1fr; }
}
.apply-benefits { display: flex; flex-direction: column; gap: 1rem; }
.apply-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.apply-benefit:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.apply-benefit > div { flex: 1; }
.apply-benefit h3 {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.apply-benefit p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.apply-benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.apply-benefit strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.apply-benefit span { font-size: 0.82rem; color: var(--text-muted); }

/* Apply form */
.apply-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.apply-section-title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  margin-top: 2rem;
}
.apply-section-title:first-child { margin-top: 0; }

/* Hidden honeypot */
.hp-field { display: none !important; }

/* === BLOG SINGLE === */
.blog-single-header { margin-bottom: 2.5rem; }
.blog-single-header .blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.blog-tag {
  background: var(--pale);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.blog-date, .blog-read {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
}
.blog-single-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.blog-single-image img { width: 100%; }
.blog-content { max-width: 780px; margin: 0 auto; }
.blog-content h2 { margin: 2rem 0 1rem; }
.blog-content h3 { margin: 1.75rem 0 0.75rem; }
.blog-content p { margin-bottom: 1.25rem; color: var(--text-muted); }
.blog-content ul, .blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.blog-content ul li { list-style: disc; color: var(--text-muted); margin-bottom: 0.4rem; }

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }

/* === LOADING PROGRESS BAR === */
#page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999;
  transition: width 0.1s ease;
  width: 0%;
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: white;
  padding: 1.25rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: none;
}
.cookie-banner.show {
  display: block;
  transform: translateY(0);
}
.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.cookie-banner p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin: 0; }
.cookie-banner a { color: var(--accent); }
.cookie-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-accept {
  background: var(--secondary);
  border: none;
  color: white;
}
.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  margin-left: 0.5rem;
}

/* === PLACEHOLDER / NO-IMAGE === */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--pale), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
}

/* === UTILITY: VISUALLY HIDDEN === */
.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;
}

/* ============================================================
   SUPPLEMENTAL STYLES — Page-specific classes
   (covers all agent-generated class names)
   ============================================================ */

/* === PAGE HERO EXTENDED (agent variant) === */
.page-hero { position: relative; overflow: hidden; }

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3);
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,4,94,0.65) 0%, rgba(0,119,182,0.45) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  text-align: center;
}
.page-hero-text { position: relative; z-index: 2; text-align: center; padding: 0; }
.page-hero-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.75rem;
}
.page-hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumb list variant (ol/li) */
.breadcrumb ol {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
.breadcrumb li {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb li a { color: rgba(255,255,255,0.85); }
.breadcrumb li a:hover { color: var(--white); }
.breadcrumb li[aria-current="page"] { color: rgba(255,255,255,0.6); }

/* === SECTION NAMING ALIASES === */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.eyebrow-light { color: var(--accent) !important; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* === BUTTON VARIANTS (missing) === */
.btn-light {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
}
.btn-light:hover {
  background: var(--pale);
  color: var(--navy);
  border-color: var(--pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; display: flex; }

/* === BACKGROUND UTILITIES === */
.bg-light { background: var(--gray-100); }

/* === CTA BANNER EXTENDED === */
.cta-banner { position: relative; }
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 60%, var(--secondary) 100%);
  z-index: 0;
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0;
}
.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner-text {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* CTA block variant */
.cta-block {
  background: linear-gradient(135deg, var(--navy), var(--primary));
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}

/* === SERVICES PAGE === */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Service card element aliases */
.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--pale), var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: all var(--transition);
}
.service-card-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.service-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-card-features li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.service-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* Process section */
.process-section { background: var(--off-white); }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0.25;
}
@media (min-width: 640px) {
  .process-steps::before { left: 40px; }
}
.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.process-step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,119,182,0.3);
}
.process-step-content { flex: 1; padding-top: 0.75rem; }
.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.process-step-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }

/* Service area section */
.service-area-section { background: var(--pale); }
.service-area-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .service-area-inner { grid-template-columns: 1fr 1fr; }
}
.service-area-content h2,
.service-area-content .section-title { margin-bottom: 1rem; }
.service-area-content p { color: var(--text-muted); margin-bottom: 1rem; }
.service-area-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.service-area-map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-area-map-placeholder {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-xl);
}
.service-area-map-placeholder svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
}
.service-area-map-placeholder p {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.service-area-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* === TEAM PAGE === */
.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

/* Team card element aliases */
.team-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--pale);
}
.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform var(--transition-slow);
}
.team-card:hover .team-card-img { transform: scale(1.05); }

/* .team-card-overlay already defined in CSS for the grid version */
.team-card-image-wrap .team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,4,94,0.7), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover .team-card-image-wrap .team-card-overlay { opacity: 1; }

.team-card-body {
  padding: 1.5rem;
}
.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.team-card-role {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.team-card-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.team-card-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.team-card-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pale);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}
.team-card-socials a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.team-card-socials svg { width: 16px; height: 16px; }

/* Values section */
.team-values-section { background: var(--pale); }
.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--pale), var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.value-icon svg { width: 24px; height: 24px; }
.value-card:hover .value-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; }
.value-title {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.value-text { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* === BLOG PAGE === */
.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.blog-filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-600);
  border: 1.5px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.blog-filter-btn:hover,
.blog-filter-btn.active,
.blog-filter-btn[aria-pressed="true"] {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Newsletter */
.newsletter-wrap { background: var(--navy); padding: 60px 0; }
.newsletter-content { text-align: center; max-width: 580px; margin: 0 auto; }
.newsletter-content h3 { color: var(--white); margin-bottom: 0.5rem; }
.newsletter-content p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.newsletter-form-inner {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form-inner input {
  flex: 1;
  min-width: 220px;
  padding: 0.8rem 1rem;
  border-radius: 50px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
}
.newsletter-form-inner input:focus { box-shadow: 0 0 0 3px rgba(0,180,216,0.4); }

/* === FAQ PAGE === */
.faq-intro-section { background: var(--off-white); }
.faq-section { background: var(--white); }
.faq-columns {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) { .faq-columns { grid-template-columns: 1fr 1fr; } }

.faq-column-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}
.faq-column-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pale), var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.faq-column-icon svg { width: 22px; height: 22px; }
.faq-column-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0;
  font-weight: 700;
}
.faq-column-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ CTA section */
.faq-cta-section { background: var(--pale); padding: 60px 0; }
.faq-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.faq-cta-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--pale), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primary);
}
.faq-cta-inner h2 { margin-bottom: 0.75rem; }
.faq-cta-inner p { color: var(--text-muted); margin-bottom: 1.5rem; }
.faq-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.faq-cta-contact-details {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.faq-cta-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}
.faq-cta-contact-link:hover { color: var(--secondary); }

/* === GALLERY PAGE === */
.gallery-intro-section { background: var(--off-white); }
.gallery-section { background: var(--white); }
.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(3,4,94,0.8), transparent);
  color: var(--white);
  font-size: 0.78rem;
  font-family: var(--font-ui);
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }

.gallery-cta-section { background: var(--navy); padding: 70px 0; }
.gallery-cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.gallery-cta-inner h2 { color: white; margin-bottom: 0.75rem; }
.gallery-cta-inner p { color: rgba(255,255,255,0.78); margin-bottom: 1.5rem; }
.gallery-cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.gallery-instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
}
.gallery-instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); display: block; }

/* === CONTACT PAGE === */
.contact-intro { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.contact-intro h2 { margin-bottom: 0.75rem; }
.contact-intro p { color: var(--text-muted); }

.contact-social-links { display: flex; gap: 0.75rem; }
.contact-social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; transition: background var(--transition);
}
.contact-social-links a:hover { background: var(--secondary); }

.hours-day { font-weight: 600; color: rgba(255,255,255,0.9); }
.hours-time { color: var(--accent); }

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

/* === APPLY PAGE === */
.apply-intro-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 900px) { .apply-intro-grid { grid-template-columns: 1fr 1fr; } }

.apply-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.apply-intro-image img { width: 100%; display: block; }

/* Form aliases */
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2px solid var(--gray-200); border-radius: 4px;
  cursor: pointer; accent-color: var(--primary); margin-top: 2px;
}
.form-check-group { padding: 0.5rem 0; }

.form-row-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

.form-row-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .form-row-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* File upload element aliases */
.file-upload-icon { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.file-upload-text {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}
.file-upload-hint { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 0.25rem; }

/* "What Happens Next" section */
.next-steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .next-steps-grid { grid-template-columns: repeat(3, 1fr); } }

.next-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.next-step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Inline link */
.inline-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-link:hover { color: var(--secondary); }

/* === SECTION WRAPPER ALIASES (structural) === */
.services-intro-section,
.services-cards-section { /* inherits .section styles */ }
.team-intro-section,
.team-grid-section    { /* inherits .section styles */ }

/* FAQ column (individual column within .faq-columns) */
.faq-column { display: flex; flex-direction: column; gap: 0.75rem; }

/* Newsletter form wrapper */
.newsletter-form { width: 100%; }

/* === RESPONSIVE FIXES FOR NEW CLASSES === */
@media (max-width: 767px) {
  .process-steps::before { display: none; }
  .process-step { flex-direction: column; gap: 1rem; }
  .cta-banner-content { padding: 60px 0; }
  .faq-cta-inner { padding: 2rem 1.25rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === PRINT STYLES === */
@media print {
  .site-header, .site-footer, .hero-scroll, .back-to-top, .cookie-banner { display: none !important; }
  body { padding-top: 0 !important; }
  a { color: var(--navy) !important; }
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 767px) {
  :root { --section-pad: 60px; }
  .section-header { margin-bottom: 2.5rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .about-badge { display: none; }
  .form-card, .apply-form-wrap { padding: 1.5rem; }
  .contact-info-card { padding: 1.75rem; }
  .cta-banner { padding: 60px 0; }
  .testimonial-card { padding: 1.75rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root { --section-pad: 75px; }
}
