/* 
  Full Send PT - Design System & Styles 
  Colors based on user request: White, Pale Yellow/Sand, Bright Teal, Dark Teal, Navy Blue
*/

:root {
  /* Color Palette */
  --c-white: #FFFFFF;
  --c-sand: #F4E2A6;
  --c-teal-bright: #1AB0C8;
  --c-teal-dark: #177C85;
  --c-navy: #1C3048;
  
  /* UI Colors */
  --bg-main: var(--c-white);
  --bg-light: #F9FAFB;
  --bg-dark: var(--c-navy);
  
  --text-main: #334155;
  --text-dark: var(--c-navy);
  --text-light: #F8FAFC;
  --text-muted: #64748B;

  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;

  /* Spacing & Layout */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;
  --space-20: 10rem;

  --container-max: 1200px;
  
  /* Utility */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(26, 176, 200, 0.4);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: var(--space-3);
  font-weight: 800;
}

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.text-center { text-align: center; }
.text-teal { color: var(--c-teal-bright); }
.text-dark-teal { color: var(--c-teal-dark); }
.text-navy { color: var(--c-navy); }
.text-sand { color: var(--c-sand); }
.text-white { color: var(--text-light); }
.text-gray-300 { color: #cbd5e1; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-navy { background-color: var(--c-navy); }
.bg-dark-teal { background-color: var(--c-teal-dark); }
.bg-sand { background-color: var(--c-sand); color: var(--text-dark); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }
.max-w-lg { max-width: 800px; }
.relative { position: relative; }
.inline-icon { display: inline-block; vertical-align: middle; width: 1.25rem; height: 1.25rem; margin-right: 0.5rem; }

/* Typography */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-8);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--c-teal-bright);
  color: var(--c-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--c-teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--c-sand);
  color: var(--c-navy);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--c-white);
}

.btn-outline-light:hover {
  background-color: var(--c-white);
  color: var(--c-navy);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Sections */
.section {
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all var(--transition-normal);
  padding: var(--space-4) 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-2) 0;
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--c-navy);
  display: flex;
  align-items: center;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-link {
  color: var(--c-navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-weight: 500;
  color: var(--c-navy);
  position: relative;
}

/* Navbar transparency logic on home hero */
body:not(.scrolled) .navbar .logo,
body:not(.scrolled) .navbar .nav-link {
  color: var(--c-white);
}

.navbar .nav-instagram svg {
  transition: transform var(--transition-normal), stroke var(--transition-normal);
}

.navbar .nav-instagram:hover svg {
  stroke: var(--c-teal-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-teal-bright);
  transition: width var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem;
}

body:not(.scrolled) .mobile-menu-btn {
  color: var(--c-white);
}
.navbar.scrolled .mobile-menu-btn {
  color: var(--c-navy);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--c-white);
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--c-navy);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--space-16);
  background-color: var(--c-navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Premium dark gradient */
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-teal-dark) 100%);
  opacity: 0.9;
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Abstract noise/texture would go here */
  background-image: radial-gradient(circle at 80% 20%, rgba(26, 176, 200, 0.4) 0%, transparent 40%),
                    radial-gradient(circle at 20% 80%, rgba(244, 226, 166, 0.15) 0%, transparent 40%);
  mix-blend-mode: screen;
}

.hero-container {
  z-index: 2;
  color: var(--c-white);
}

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

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  color: var(--c-sand);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.hero-title span {
  color: var(--c-teal-bright);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: var(--space-8);
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--c-white);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* Features (Why Full Send?) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

/* Detailed Programs */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-6);
}

.program-card {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  flex-direction: column;
  display: flex;
  border-top: 4px solid var(--c-teal-bright);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.program-header {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--bg-light);
}

.program-price {
  font-size: 1.25rem;
  color: var(--c-teal-dark);
  font-weight: 700;
  margin-top: var(--space-2);
}

.program-includes {
  list-style: none;
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.program-includes li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-3);
  font-size: 0.95rem;
  color: var(--text-main);
}

.program-includes i {
  color: var(--c-teal-bright);
  margin-right: var(--space-2);
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}

/* About Me Section */
.about-profile-wrapper-large {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-6);
  z-index: -1;
}

@media (min-width: 992px) {
  .about-profile-wrapper-large {
    margin-left: -50px;
    width: calc(100% + 50px);
  }
}

.about-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-profile-wrapper-large:hover .about-profile-img {
  transform: scale(1.05);
}

.about-bottom-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.about-bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: stretch;
}

@media (min-width: 992px) {
  .about-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-me-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: flex-start;
}

.about-me-content {
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .about-me-grid { grid-template-columns: 1fr 1fr; }
}

.about-me-content h3 {
  font-size: 2rem;
  color: var(--c-navy);
  margin-bottom: var(--space-4);
}

.about-me-content p {
  margin-bottom: var(--space-4);
  color: var(--text-muted);
}

.about-me-quote {
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--c-teal-dark);
  border-left: 4px solid var(--c-teal-bright);
  padding-left: var(--space-4);
  margin: var(--space-6) 0;
}

.credential-list {
  list-style: none;
  margin-top: var(--space-6);
  background: var(--c-white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.credential-list li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-3);
  color: var(--c-navy);
  font-weight: 500;
}

.credential-list i {
  color: var(--c-teal-bright);
  margin-right: var(--space-3);
}

.feature-card {
  background: var(--c-white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(23, 124, 133, 0.1); /* Dark teal transparent */
  color: var(--c-teal-dark); /* Dark teal for better contrast */
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.feature-icon i {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

.feature-desc {
  color: var(--text-muted);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), background var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(26, 176, 200, 0.4);
}

.service-title {
  color: var(--c-white);
  font-size: 1.75rem;
  margin-bottom: var(--space-4);
}

.service-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
}

.service-location {
  display: flex;
  align-items: center;
  color: var(--c-sand);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.service-location i {
  margin-right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
}

/* Testimonials */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: center;
}

.testimonial-card {
  background: var(--c-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  color: rgba(26, 176, 200, 0.15);
}

.quote-icon i {
  width: 48px;
  height: 48px;
}

.testimoinal-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: var(--space-6);
  color: var(--text-main);
  position: relative;
  z-index: 2;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1.125rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Footer */
.footer {
  padding: var(--space-12) 0 var(--space-6) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer h4 {
  color: var(--c-white);
  margin-bottom: var(--space-4);
  font-size: 1.25rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: var(--space-2);
}

.footer a {
  color: var(--text-gray-300);
}

.footer a:hover {
  color: var(--c-sand);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}


/* --- OVERRIDES FOR UPDATED DESIGN --- */

/* Hero Image Injection */
.hero-bg {
    background: linear-gradient(135deg, rgba(28,48,72,0.6) 0%, rgba(26,176,200,0.4) 100%), url('https://images.squarespace-cdn.com/content/v1/6347ad2288364336b88922e1/1773679311698-4S0SP1CQEQ322NSSPA82/unsplash-image-LEgwEaBVGMo.jpg') center/cover no-repeat !important;
    opacity: 1 !important;
}

/* Accordion Styles */
.programs-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    background: var(--c-white);
    transition: background 0.3s ease;
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-header .service-title {
    color: var(--c-navy);
}

.accordion-icon {
    font-size: 2rem;
    font-family: monospace;
    color: var(--c-teal-bright);
    font-weight: bold;
    transition: transform 0.3s ease;
}

details[open] .accordion-icon {
    transform: rotate(45deg); /* turns + into x */
}

.accordion-content {
    padding: 0 2rem 2rem;
    border-top: 1px solid var(--bg-light);
    margin-top: 1rem;
    padding-top: 1rem;
}

.accordion-content .service-desc {
    color: var(--text-muted);
}

.accordion-content .service-location {
    color: var(--c-teal-dark);
}

.accordion-content .program-includes li {
    color: var(--text-main);
}

/* Horizontal Testimonials */
.section.bg-sand {
    background: var(--c-teal-bright) !important;
}
/* Carousel Base */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: var(--space-4);
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    background: var(--c-white);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden; /* Hide non-active for accessibility/focus */
}

.carousel-slide.current-slide {
    visibility: visible;
}

/* Testimonial Card Adjustments */
.testi-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.testi-card p {
    font-family: serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: var(--space-6);
    max-width: 600px;
}

.testi-card h4 {
    color: var(--c-navy);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testi-card span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--c-navy);
    color: var(--c-white);
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: background 0.3s, transform 0.3s;
}

.carousel-btn:hover {
    background: var(--c-teal-bright);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -1.5rem;
}

.carousel-btn.next {
    right: -1.5rem;
}

/* Pagination Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-6);
}

.carousel-dot {
    border: none;
    background: rgba(28, 48, 72, 0.2);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(28, 48, 72, 0.5);
}

.carousel-dot.current-item {
    background: var(--c-teal-bright);
    transform: scale(1.2);
}

/* Media Queries */
@media screen and (max-width: 900px) {
    .carousel-btn {
        display: none; /* Rely on swiping for mobile */
    }
    .carousel-container {
        padding: 0;
    }
}

/* Certifications Logo Strip */
.certifications-strip {
    width: 100%;
    margin-top: var(--space-8);
    position: relative;
    z-index: 2;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: var(--space-8) var(--space-6);
    justify-content: center;
    align-items: center;
    justify-items: center;
    background: var(--c-white);
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.cert-logo {
    height: 90px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) opacity(60%);
    transition: all var(--transition-normal);
}

.cert-logo:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, auto);
        gap: var(--space-6);
    }
    .cert-logo {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: 1fr;
    }
    .cert-logo {
        height: 60px;
    }
}

/* Lifestyle Gallery Section */
.gallery-section {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.gallery-grid {
    display: flex;
    width: 100%;
}

.gallery-item {
    flex: 1;
    min-width: 0;
    height: 400px;
    position: relative;
    overflow: hidden;
    background: var(--c-navy);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.has-overlay {
    position: relative;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 var(--space-4);
}

.overlay-text h2 {
    color: var(--c-teal-bright);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--font-display);
    line-height: 1.1;
    margin: 0;
}

@media (max-width: 1024px) {
    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        flex-wrap: wrap;
    }
    .gallery-item {
        flex: 1 1 50%;
        height: 250px;
    }
    .gallery-item.has-overlay {
        flex: 1 1 100%;
        order: -1;
        height: 300px;
    }
}
