/* ===================================================
   Grandfield Services — Global Stylesheet
   Brand Colors: Navy #283a72, Teal #48abb8, Green #7fc16d
   =================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ——— Design Tokens ——— */
:root {
  /* Brand Colors */
  --brand-navy: #283a72;
  --brand-navy-dark: #1c2a54;
  --brand-navy-900: #0f1a3a;
  --brand-navy-light: #354b8c;
  --brand-teal: #48abb8;
  --brand-teal-dark: #3a8f9a;
  --brand-teal-light: #6bc4cf;
  --brand-green: #7fc16d;
  --brand-green-dark: #64a555;
  --brand-green-light: #99d48a;
  --brand-services: #b4b4b4;

  /* Neutral Colors */
  --white: #ffffff;
  --light: #f4f7fa;
  --gray-50: #f8fafc;
  --gray-100: #eef1f6;
  --gray-200: #dde2ea;
  --gray-300: #c5cbd6;
  --gray-400: #9ca3af;
  --gray-500: #7a8293;
  --gray-600: #5a6270;
  --gray-700: #3d4452;
  --gray-800: #2a303c;
  --gray-900: #1a1f2b;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-green) 100%);
  --gradient-brand-h: linear-gradient(90deg, var(--brand-teal) 0%, var(--brand-green) 100%);
  --gradient-navy: linear-gradient(180deg, var(--brand-navy-900) 0%, var(--brand-navy) 100%);
  --gradient-hero: linear-gradient(135deg, var(--brand-navy-900) 0%, var(--brand-navy) 50%, var(--brand-navy-light) 100%);
  --gradient-card-dark: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-brand: 0 4px 20px rgba(72, 171, 184, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

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

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ——— Navigation ——— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 26, 58, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-grand {
  color: var(--brand-navy);
  display: inline;
}

.navbar.scrolled .nav-logo-text .brand-grand {
  color: var(--white);
}

.nav-logo-text .brand-field {
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.nav-logo-text .brand-name {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.nav-logo-text .brand-services {
  color: var(--brand-services);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-brand) !important;
  color: var(--brand-navy-900) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}

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

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ——— Hero Section ——— */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(72, 171, 184, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(127, 193, 109, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.2) translate(30px, -20px);
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(72, 171, 184, 0.12);
  border: 1px solid rgba(72, 171, 184, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brand-teal-light);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero h1 .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 600px;
}

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

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--brand-navy-900);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(72, 171, 184, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal-light);
  background: rgba(72, 171, 184, 0.08);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--brand-navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--brand-navy-light);
  transform: translateY(-3px);
}

/* ——— Section Styling ——— */
.section {
  padding: var(--section-padding);
}

.section-dark {
  background: var(--gradient-navy);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-teal);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

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

/* ——— Services Grid ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(72, 171, 184, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  color: var(--brand-teal);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-teal);
  stroke-width: 1.8;
  fill: none;
}

.value-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--brand-teal);
  stroke-width: 1.8;
  fill: none;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-teal);
  stroke-width: 1.8;
  fill: none;
}

.about-image-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: var(--brand-teal);
  stroke-width: 1.2;
  fill: none;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-teal);
  stroke-width: 2;
  fill: none;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--brand-navy);
}

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

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--brand-teal-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition-fast);
}

.service-card:hover .learn-more {
  gap: 10px;
}

/* Dark service cards */
.section-dark .service-card {
  background: var(--gradient-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.section-dark .service-card:hover {
  border-color: rgba(72, 171, 184, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.section-dark .service-card h3 {
  color: var(--white);
}

.section-dark .service-card p {
  color: rgba(255, 255, 255, 0.6);
}

/* ——— Stats / Trust Bar ——— */
.stats-bar {
  background: var(--brand-navy-900);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ——— About / Mission ——— */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  /*align-items: center;*/
  justify-content: center;
  font-size: 4rem;
  opacity: 0.8;
  color: var(--brand-teal);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(72, 171, 184, 0.2);
  border-radius: var(--radius-lg);
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(72, 171, 184, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  font-size: 1rem;
}

.about-feature div h4 {
  font-size: 1rem;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.about-feature div p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* ——— CTA Section ——— */
.cta-section {
  background: var(--gradient-hero);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(72, 171, 184, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* ——— Values Grid ——— */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(72, 171, 184, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--brand-navy);
  margin-bottom: 12px;
}

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

/* ——— Team Grid ——— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
  background: var(--gradient-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.team-card:hover {
  border-color: rgba(72, 171, 184, 0.2);
  transform: translateY(-6px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-navy-900);
}

.team-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.team-card .role {
  color: var(--brand-teal-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ——— Contact Section ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-right: 20px;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-info>p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  font-size: 1.02rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(72, 171, 184, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-teal);
}

.contact-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.contact-item a:hover {
  color: var(--brand-teal-light);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--gradient-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form-wrapper h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-teal);
  background: rgba(72, 171, 184, 0.05);
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success .check-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(127, 193, 109, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--brand-green);
}

.form-success h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* ——— Footer ——— */
.footer {
  background: var(--brand-navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col a:hover {
  color: var(--brand-teal-light);
  padding-left: 6px;
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal-light);
  background: rgba(72, 171, 184, 0.08);
}

/* ——— Page Header (inner pages) ——— */
.page-header {
  background: var(--gradient-hero);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(72, 171, 184, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ——— Scroll Animations ——— */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ——— Booking Section ——— */
.booking-section {
  padding: 100px 0;
  background: var(--light);
  text-align: center;
}

.booking-iframe-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
}

.booking-iframe-wrapper iframe {
  width: 100%;
  height: 680px;
  border: none;
  display: block;
}

.booking-section .section-header p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .booking-iframe-wrapper iframe {
    height: 520px;
  }
}

/* ——— Responsive ——— */
@media (max-width: 992px) {

  .services-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--brand-navy-900);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right var(--transition-base);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .services-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 130px 0 60px;
  }
}