/* site/css/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Amiko:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
  --primary: #002970;
  --secondary: #0F2264;
  --accent: #0BADBF;
  --accent-blue: #007bff;
  --text-dark: #333;
  --text-light: #fff;
  --text-muted: #666;
  --bg-light: #f4f7f6;
  --bg-white: #ffffff;
  --font-heading: 'Amiko', sans-serif;
  --font-body: 'Source Sans Pro', sans-serif;
  --container-width: 1200px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--accent-blue);
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  background-color: var(--primary);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: var(--secondary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 41, 112, 0.2);
}

.btn iconify-icon {
  font-size: 1.2rem;
}

/* Header */
.site-header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: var(--transition);
}

.logo img {
  height: 140px;
  transition: height 0.3s ease;
}

@media (min-width: 769px) {
  .site-header.scrolled .logo img {
    height: 98px;
  }

  .site-header.scrolled .header-inner {
    padding: 0.5rem 0;
  }

  .site-header.scrolled .main-nav a {
    font-weight: 700;
  }
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2e7d32; /* Forest Green */
  transition: var(--transition);
}

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

.main-nav a.active {
  font-weight: 700;
}

/* Dropdown Menu */
.nav-list li {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  list-style: none;
  min-width: 260px;
  padding: 1rem 0;
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-list li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  text-transform: none;
  display: block;
  color: var(--text-dark);
  transition: var(--transition);
}

.dropdown a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
  padding-left: 2rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--text-light) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: var(--transition);
  text-transform: uppercase;
}

.header-contact:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 41, 112, 0.2);
}

.menu-toggle {
  display: none;
  background-color: var(--primary);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.menu-toggle iconify-icon {
  font-size: 1.8rem;
}

.menu-toggle:hover {
  background-color: var(--secondary);
}

.mobile-menu-footer {
  display: none;
}

.mobile-menu-logo {
  display: none;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

/* Stats Section */
.stats-section {
  background-color: var(--secondary);
  padding: 3rem 0;
  color: var(--text-light);
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-item h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-light);
}

/* Services Section */
.services-section {
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--primary);
  border-radius: 8px;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img,
.service-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-icon iconify-icon {
  font-size: 3rem;
  color: var(--primary);
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.service-card .btn {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* About Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content-wrapper {
  background: linear-gradient(to bottom, #1a4d2e, #002970);
  display: flex;
  align-items: center;
  padding: 4rem 3.5rem;
}

.about-content {
  max-width: 560px;
}

.about-content h2 {
  color: var(--text-light);
  font-size: 2.5rem;
}

.about-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary);
  box-shadow: none;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.testimonial-card h4 {
  color: var(--primary);
  margin-bottom: 0;
}

/* Footer CTA */
.footer-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  color: var(--text-light);
}

.footer-cta-image {
  overflow: hidden;
}

.footer-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-cta-content-wrapper {
  background: linear-gradient(to bottom, #1a4d2e, #002970);
  display: flex;
  align-items: center;
  padding: 4rem 3.5rem;
}

.cta-content {
  max-width: 560px;
  text-align: left;
}

.cta-content h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.cta-content h2.italic {
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
}

.cta-content h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.cta-content h2.italic {
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
}

/* Footer / Contact */
.site-footer {
  background-color: var(--bg-white);
  padding: 5rem 0 2rem;
  border-top: 1px solid #eee;
}

.contact-form-section {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 2.5rem;
}

.contact-form-section h5 {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}

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

.form-submit {
  grid-column: 1 / -1;
  text-align: left;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}

.footer-logo img {
  max-width: 250px;
}

.footer-address h6,
.footer-contact h6 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
}

.footer-address p,
.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent);
}

.footer-contact a {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #eee;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Services Page Layout */
.services-intro {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-intro-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.services-intro-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.services-intro-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-row {
  padding: 5rem 0;
}

.service-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-row:nth-child(even) .service-row-grid {
  direction: rtl;
}

.service-row:nth-child(even) .service-content {
  direction: ltr;
}

.service-row:nth-child(even) .service-image {
  direction: ltr;
}

.service-header-group {
  margin-bottom: 2.5rem;
  text-align: center;
}

.service-number {
  font-size: 5rem;
  font-weight: 700;
  color: #eee;
  line-height: 1;
  display: block;
}

.service-title {
  font-size: 2.5rem;
  margin-top: -1.5rem;
  margin-bottom: 0.5rem;
}

.service-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn-book {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-book:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

/* About Page Layout */
.about-hero {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-hero-content h1 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Values Section (Matches Home Stats Look) */
.values-section {
  padding: 3rem 0;
  background-color: var(--secondary);
  color: var(--text-light);
}

.values-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.value-item {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
}

.value-item iconify-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-light);
  line-height: 1.4;
}

/* Mission Section */
.mission-section {
  padding: 6rem 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.mission-content p {
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.mission-content ul {
  list-style: none;
  margin-bottom: 2.5rem;
}

.mission-content li {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.mission-content li strong {
  color: var(--primary);
}

.mission-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Checklist Section */
.checklist-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.checklist-header {
  text-align: center;
  margin-bottom: 4rem;
}

.checklist-header h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.checklist-grid {
  max-width: 700px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.5rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: var(--transition);
}

.checklist-item:hover {
  transform: translateX(10px);
  background-color: #f0f7ff;
}

  .checklist-item iconify-icon {
    font-size: 1.4rem;
    color: #4CAF50;
    flex-shrink: 0;
    margin-top: 2px;
  }

/* Contact Hero */
.contact-hero {
  padding: 6rem 0 4rem 0;
  background-color: #fff;
}

.contact-hero-header {
  margin-bottom: 3rem;
}

.contact-hero-header h1 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-hero-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-item iconify-icon {
  font-size: 2.5rem;
  color: #4CAF50;
  margin-bottom: 0.5rem;
}

.contact-info-item h3 {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
  margin: 0;
}

.contact-info-item p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0;
}

.schedule-table {
  width: 100%;
  max-width: 300px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.schedule-label {
  color: var(--text-muted);
}

.contact-hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-info {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1000;
    padding: 100px 1.5rem 2rem;
    overflow-y: auto;
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .main-nav a {
    justify-content: center;
    padding: 1rem 0;
    font-size: 1.1rem;
  }

  .mobile-menu-logo {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }

  .mobile-menu-logo img {
    height: 80px;
    margin: 0 auto;
  }

  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
    width: 100%;
    padding: 2rem 0;
  }

  .mobile-menu-footer .social-links {
    margin-bottom: 0.5rem;
  }

  .mobile-menu-footer .header-contact {
    display: inline-flex !important;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0;
    background-color: var(--bg-light);
  }

  .dropdown a {
    padding: 1rem 1.5rem;
  }

  li.has-dropdown.active .dropdown {
    display: block;
  }

  li.has-dropdown > a iconify-icon {
    transition: transform 0.3s ease;
  }

  li.has-dropdown.active > a iconify-icon {
    transform: rotate(180deg);
  }

  .header-contact {
    display: none;
  }

  .site-header .container {
    padding-right: 4%;
  }

  .menu-toggle {
    display: flex;
  }

  body.no-scroll .menu-toggle {
    background-color: #2e7d32; /* Big Green Close Icon */
    position: fixed;
    top: 20px;
    right: 4%;
    width: 54px;
    height: 54px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 2000;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
  }

  body.no-scroll .menu-toggle iconify-icon {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero .container {
    justify-content: center;
  }

  .about-section,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .about-image,
  .footer-cta-image {
    min-height: 280px;
  }

  .about-content-wrapper,
  .footer-cta-content-wrapper {
    padding: 3rem 1.5rem;
  }

  .stats-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .services-intro {
    padding: 3rem 0;
  }

  .services-intro-grid,
  .service-row-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-intro-content h1 {
    font-size: 2.5rem;
  }

  .service-row:nth-child(even) .service-row-grid {
    direction: ltr;
  }

  .service-title {
    font-size: 2rem;
  }

  .service-number {
    font-size: 3.5rem;
  }
}

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary);
  color: var(--text-light);
  padding: 12px 24px;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  margin: 0 20px 0 0;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner .cookie-btn {
  background: var(--accent);
  color: var(--text-light);
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.cookie-btn:hover {
  background: var(--primary);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 16px 20px;
  }

  .cookie-banner p {
    margin: 0 0 12px 0;
  }
}

@media (max-width: 992px) {
  .about-hero-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-hero-image,
  .mission-image {
    order: -1;
  }

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

  .checklist-header h2 {
    font-size: 2.2rem;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-hero-image {
    order: -1;
  }

  .contact-hero-header h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}