/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Primary Palette */
  --clr-primary: #8B6F4E;
  --clr-primary-dark: #6B5438;
  --clr-primary-light: #C4A87C;
  --clr-accent: #D4A574;
  --clr-accent-warm: #E8C9A0;

  /* Neutrals */
  --clr-bg: #FAF7F2;
  --clr-bg-alt: #F0EBE3;
  --clr-bg-dark: #1A1612;
  --clr-text: #2C2316;
  --clr-text-light: #6B5D4F;
  --clr-text-muted: #9B8E7E;
  --clr-white: #FFFFFF;
  --clr-overlay: rgba(26, 22, 18, 0.65);

  /* Accents */
  --clr-success: #25D366;
  --clr-gold: #C9A96E;
  --clr-rose: #C97B7B;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --ff-heading: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;
  --fs-hero: clamp(2.2rem, 5vw, 4rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 30px rgba(196, 168, 124, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-text);
}

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

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header.scrolled {
  background: rgba(250, 247, 242, 0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header__logo span {
  color: var(--clr-accent);
}

.header__sub {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: -2px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--clr-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  background: none;
  border: none;
}

.hamburger__bar {
  width: 26px;
  height: 2.5px;
  background: var(--clr-primary);
  border-radius: 2px;
  transition: var(--transition-base);
  transform-origin: center;
}

.hamburger.active .hamburger__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger__bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 22, 18, 0.75) 0%,
    rgba(26, 22, 18, 0.45) 50%,
    rgba(139, 111, 78, 0.3) 100%
  );
  z-index: -1;
}

.hero__content {
  text-align: center;
  padding: var(--space-xl);
  max-width: 800px;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.hero__badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--clr-accent-warm);
  border: 1px solid rgba(232, 201, 160, 0.4);
  padding: var(--space-xs) var(--space-lg);
  border-radius: 50px;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: var(--fs-hero);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 36px;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(139, 111, 78, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 111, 78, 0.5);
}

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

.btn--outline:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
}

.btn--whatsapp {
  background: var(--clr-success);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  padding: 10px 20px;
  letter-spacing: 0.05em;
}

.btn--whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn--maps {
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: var(--clr-white);
}

.btn--maps:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.4);
}

/* ===== SECTION LAYOUT ===== */
.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background: var(--clr-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section__title {
  font-size: var(--fs-h2);
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.section__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 600px;
  margin: var(--space-md) auto 0;
  line-height: 1.7;
}

/* ===== PRODUCT CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.category-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.category-card:hover .category-card__image img {
  transform: scale(1.1);
}

.category-card__body {
  padding: var(--space-lg);
  text-align: center;
}

.category-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.category-card__count {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

.category-card__arrow {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-primary);
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: all var(--transition-base);
}

.category-card:hover .category-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== PRODUCT SELECTOR DROPDOWN ===== */
.product-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.product-selector__label {
  font-weight: 600;
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-selector__dropdown {
  padding: 12px 24px;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  border: 2px solid var(--clr-accent-warm);
  border-radius: 50px;
  background: var(--clr-white);
  color: var(--clr-text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B6F4E' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  min-width: 220px;
  transition: all var(--transition-fast);
}

.product-selector__dropdown:hover,
.product-selector__dropdown:focus {
  border-color: var(--clr-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(139,111,78,0.12);
}

/* ===== GALLERY ===== */
.gallery-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.gallery-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.gallery-header__title {
  font-size: var(--fs-h3);
  color: var(--clr-text);
}

.gallery-header__back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-primary);
  cursor: pointer;
  padding: 8px 16px;
  border: 1.5px solid var(--clr-primary);
  border-radius: 50px;
  transition: all var(--transition-fast);
  background: none;
}

.gallery-header__back:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.gallery-item {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item__image-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-item:hover .gallery-item__image-wrap img {
  transform: scale(1.08);
}

.gallery-item__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 22, 18, 0.4);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item__zoom {
  opacity: 1;
}

.gallery-item__zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  transform: scale(0.7);
  transition: transform var(--transition-base);
}

.gallery-item__zoom-icon svg {
  width: 22px;
  height: 22px;
}

.gallery-item:hover .gallery-item__zoom-icon {
  transform: scale(1);
}

.gallery-item__body {
  padding: var(--space-lg);
}

.gallery-item__name {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.gallery-item__desc {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.gallery-item__actions {
  display: flex;
  gap: var(--space-sm);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--space-xl);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.lightbox__image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

.lightbox__caption {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-body);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--clr-white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--clr-white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox__nav--prev {
  left: -70px;
}

.lightbox__nav--next {
  right: -70px;
}

.lightbox__order-btn {
  margin-top: var(--space-sm);
}

/* ===== ABOUT SECTION ===== */
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__text p {
  color: var(--clr-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg) var(--space-xl);
  margin-top: var(--space-xl);
}

.about__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-text);
}

/* Clean inline SVG icon — no box, no background */
.about__feature-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--clr-text-muted);
  stroke: var(--clr-text-muted);
}

.about__feature span {
  font-weight: 500;
  color: var(--clr-text);
}

.about__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.about__image-grid img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.about__image-grid img:first-child {
  grid-row: span 2;
  height: 100%;
}

.about__image-grid img:hover {
  transform: scale(1.03);
}

/* ===== COURSE SECTION ===== */
.course__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.course__info h3 {
  font-size: var(--fs-h3);
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.course__info p {
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.course__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.course__benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--clr-text);
  font-weight: 500;
}

.course__benefits li svg {
  width: 22px;
  height: 22px;
  color: var(--clr-accent);
}

.course__form-wrapper {
  background: var(--clr-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.course__form-title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
  color: var(--clr-text);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.05em;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text);
  transition: all var(--transition-fast);
  background: var(--clr-bg-alt);
}

.form-group input:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(139,111,78,0.1);
  background: var(--clr-white);
}

/* ===== LOCATION SECTION ===== */
.location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.location__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location__info {
  padding: var(--space-xl) 0;
}

.location__info h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* Clean SVG icon for location details — no box background */
.location__detail-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--clr-text-muted);
  stroke: var(--clr-text-muted);
  margin-top: 2px;
}

.location__detail-text h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: 2px;
}

.location__detail-text p {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

/* ===== CONTACT SECTION ===== */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.contact-card {
  background: var(--clr-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

/* Clean SVG icon for contact cards — no background circle */
.contact-card__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto var(--space-lg);
  color: var(--clr-text-muted);
}

.contact-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--clr-text-muted);
}

.contact-card__title {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-card__text {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

.contact-card__text a {
  color: var(--clr-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact-card__text a:hover {
  color: var(--clr-accent);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--clr-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.footer__logo span {
  color: var(--clr-accent);
}

.footer__desc {
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__sub-brand {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  transform: translateY(-3px);
}

.footer__heading {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: var(--fs-small);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--clr-accent);
}

/* Footer contact items with inline SVG icons */
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-small);
}

.footer__contact-item svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  stroke: rgba(255,255,255,0.5);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: var(--fs-xs);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  font-size: var(--fs-xs);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--clr-accent);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--clr-success);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  animation: floatPulse 2s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--clr-white);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: var(--clr-white);
  color: var(--clr-text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about__content,
  .location__content,
  .course__content {
    grid-template-columns: 1fr;
  }

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

  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .hamburger {
    display: flex;
    gap: 4px;
    padding: 6px;
  }

  .hamburger__bar {
    width: 20px;
    height: 2px;
  }

  .hamburger.active .hamburger__bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .hamburger.active .hamburger__bar:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
  }

  /* TOP-DOWN DROPDOWN MENU */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 0 var(--space-xl);
    clip-path: inset(0 0 100% 0);
    transition: clip-path var(--transition-base), padding var(--transition-base);
    z-index: 1050;
    pointer-events: none;
    border-bottom: 2px solid var(--clr-primary-light);
  }

  .nav.open {
    clip-path: inset(0 0 0 0);
    pointer-events: all;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .nav__list {
    flex-direction: column;
    align-items: center; /* Center links on mobile */
    gap: var(--space-md);
    width: 100%;
  }

  .nav__list li {
    width: 100%;
    text-align: center;
  }

  .nav__link {
    font-size: 1.1rem;
    display: block;
    width: 100%;
    padding: 12px 0;
  }
  
  /* Removed .mobile-overlay completely */

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-md);
  }

  .category-card__image {
    height: 160px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  .about__image-grid img:first-child {
    grid-row: auto;
    height: 200px;
  }

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

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

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .lightbox__close {
    top: -40px;
    right: -5px;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding: var(--space-md);
  }

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

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

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

  .lightbox__nav {
    display: none;
  }
}
