/* ============================================================
   NegarBeautyBox — Main Stylesheet
   Brand: Luxury, Feminine, Elegant, Sophisticated
   Colors: Rose Gold, Champagne, Blush Pink, Cream, Burgundy
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --rose-gold: #C9956C;
  --rose-gold-light: #E8C4A0;
  --rose-gold-dark: #A0714F;
  --champagne: #F7E7CE;
  --blush: #F2D0D0;
  --blush-dark: #D4A0A0;
  --cream: #FAF5EF;
  --cream-dark: #F0E8DC;
  --burgundy: #6B2737;
  --burgundy-light: #8B3A4C;
  --dark: #2C1A1A;
  --dark-mid: #3D2B2B;
  --text-dark: #3A2A2A;
  --text-mid: #6B5050;
  --text-light: #9E8080;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 30px rgba(100, 50, 50, 0.08);
  --shadow-med: 0 8px 40px rgba(100, 50, 50, 0.14);
  --shadow-strong: 0 16px 60px rgba(100, 50, 50, 0.2);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
  --font-script: 'Great Vibes', cursive;
  --radius: 12px;
  --radius-lg: 24px;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
.script-font { font-family: var(--font-script); }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}
.body-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 6rem 0; }
.bg-light { background: var(--cream); }
.bg-dark { background: var(--dark); }
.bg-rose { background: linear-gradient(135deg, var(--blush) 0%, var(--champagne) 100%); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
  color: var(--white);
  border-color: var(--rose-gold);
  box-shadow: 0 4px 20px rgba(201, 149, 108, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--rose-gold-dark) 0%, var(--burgundy-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 149, 108, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--rose-gold-dark);
  border-color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-mid);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}
.btn-ghost:hover {
  background: var(--rose-gold);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 250, 245, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-soft);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--rose-gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: -4px;
}
.navbar.scrolled .logo-text { color: var(--text-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links li a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
}
.navbar.scrolled .nav-links li a { color: var(--text-dark); }
.nav-links li a:hover,
.nav-links li a.active { color: var(--rose-gold); }
.nav-links li a.nav-cta {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  box-shadow: 0 3px 15px rgba(201,149,108,0.4);
}
.nav-links li a.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,149,108,0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=1600&q=90') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 26, 26, 0.72) 0%,
    rgba(107, 39, 55, 0.55) 50%,
    rgba(44, 26, 26, 0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}
.hero-pre {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 0.5rem;
}
.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--rose-gold-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 1.5rem;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.2);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.strip-item:last-child { border-right: none; }
.strip-item i { font-size: 1.2rem; opacity: 0.9; flex-shrink: 0; }

/* ============================================================
   SCROLLING MARQUEE BAR (Homepage)
   ============================================================ */
.marquee-strip {
  background: #2a1a0e;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(201,149,108,0.25);
  border-bottom: 1px solid rgba(201,149,108,0.25);
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee-scroll 42s linear infinite;
  padding: 1.1rem 0;
  will-change: transform;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.8rem;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
}
.marquee-item i {
  font-size: 0.85rem;
  color: var(--rose-gold);
  opacity: 0.85;
}
.marquee-sep {
  color: rgba(201,149,108,0.4);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ============================================================
   SHARED SCROLLING MARQUEE BAR (About-style, used on all pages)
   ============================================================ */
.intro-strip-about {
  background: linear-gradient(135deg, #2c1a0e 0%, #1a0e06 100%);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,149,108,0.15);
  border-bottom: 1px solid rgba(201,149,108,0.15);
  white-space: nowrap;
  position: relative;
}
.intro-strip-about .marquee-track {
  display: inline-flex;
  animation: marquee-scroll 36s linear infinite;
  will-change: transform;
}
.intro-strip-about:hover .marquee-track {
  animation-play-state: paused;
}
.strip-about-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(201,149,108,0.2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,245,239,0.8);
  white-space: nowrap;
}
.strip-about-item:last-child { border-right: none; }
.strip-about-item i { color: #C9956C; font-size: 0.8rem; }

/* ============================================================
   STATIC CREDENTIALS BAR (Homepage) — Copper/Terracotta style
   ============================================================ */
.creds-bar-static {
  background: #b5845a;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  min-height: 3.2rem;
  overflow: hidden;
}
.creds-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex: 1;
  padding: 0.85rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #ffffff;
  white-space: nowrap;
}
.creds-bar-item i {
  color: #ffffff;
  font-size: 1rem;
  opacity: 0.95;
}
.creds-bar-divider {
  width: 1px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
  align-self: stretch;
}
@media (max-width: 768px) {
  .creds-bar-static {
    flex-wrap: wrap;
    min-height: auto;
  }
  .creds-bar-item {
    flex: 1 1 50%;
    font-size: 0.68rem;
    padding: 0.7rem 0.8rem;
    justify-content: flex-start;
  }
  .creds-bar-divider { display: none; }
}

/* ============================================================
   ABOUT PREVIEW — CINEMATIC PHOTO
   ============================================================ */
.about-img-cinematic {
  position: relative;
  overflow: hidden;
}
.about-img-cinematic img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-cinematic:hover img { transform: scale(1.03); }
.about-cinematic-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(26,15,10,0.72) 0%, rgba(26,15,10,0.25) 55%, transparent 100%),
    linear-gradient(to top,   rgba(26,15,10,0.65) 0%, transparent 55%),
    linear-gradient(to bottom,rgba(26,15,10,0.45) 0%, transparent 40%);
}

/* ============================================================
   CREDENTIAL CIRCLE ICONS (About Preview)
   ============================================================ */
.cred-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  flex-shrink: 0;
}
.cred-icon-circle i {
  color: white !important;
  font-size: 0.75rem;
  width: auto !important;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.about-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-med);
}
.badge-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-txt { font-size: 0.55rem; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.3; }
.about-credentials { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.credential-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.credential-item i { color: var(--rose-gold); font-size: 0.9rem; width: 16px; flex-shrink: 0; }

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,149,108,0.1);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--rose-gold-dark));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: var(--white);
  border-color: transparent;
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-card.featured .service-price { color: var(--rose-gold-light); }
.service-badge-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--rose-gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blush), var(--champagne));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.3rem;
  color: var(--rose-gold-dark);
  transition: var(--transition);
}
.service-card.featured .service-icon {
  background: rgba(201,149,108,0.2);
  color: var(--rose-gold-light);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 1rem; }
.service-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rose-gold-dark);
}

/* ============================================================
   ACADEMY TEASER
   ============================================================ */
.academy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.academy-highlights {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.academy-highlights li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.academy-highlights li i { color: var(--rose-gold); font-size: 0.9rem; }
.academy-card-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4/5;
}
.academy-card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.academy-card-wrap:hover img { transform: scale(1.04); }
.academy-overlay-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.overlay-sessions {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rose-gold);
}
.overlay-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  text-transform: uppercase;
}

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
}
.portfolio-item.large {
  grid-row: span 2;
  aspect-ratio: auto;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,26,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 0.3rem;
}
.portfolio-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
}

/* ============================================================
   PORTFOLIO TABS
   ============================================================ */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.portfolio-tab {
  background: transparent;
  border: 1.5px solid var(--rose-gold);
  color: var(--brown-dark);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.6rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.portfolio-tab:hover,
.portfolio-tab.active {
  background: var(--rose-gold);
  color: var(--cream);
}
.portfolio-tab-content {
  display: none;
}
.portfolio-tab-content.active {
  display: block;
}
.portfolio-grid-fashion {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}
.portfolio-grid-fashion .portfolio-item {
  aspect-ratio: 3/4;
}

/* ============================================================
   BRAND PARTNERSHIPS
   ============================================================ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(201,149,108,0.2);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  background: var(--white);
}
.brand-logo:hover {
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.brand-logo span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dark);
}
.brand-logo small {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  text-transform: uppercase;
}

.brands-extra {
  display: none;
  grid-column: 1 / -1;
  display: none;
}
.brands-extra.visible {
  display: contents;
}
.brands-view-more {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card.featured-testimonial {
  background: linear-gradient(135deg, rgba(201,149,108,0.15), rgba(201,149,108,0.05));
  border-color: rgba(201,149,108,0.3);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(201,149,108,0.4); }
.stars { color: var(--rose-gold); margin-bottom: 1rem; font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--rose-gold-light); }

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section .section-title a {
  color: var(--dark);
  transition: var(--transition);
}
.instagram-section .section-title a:hover { color: var(--rose-gold); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.ig-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 8px;
  cursor: pointer;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ig-item:hover img { transform: scale(1.1); }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,149,108,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}
.ig-item:hover .ig-overlay { opacity: 1; }

/* ============================================================
   SOCIAL MEDIA GRID (Section 7)
   ============================================================ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}
.social-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.social-tile:hover img { transform: scale(1.08); }
.social-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(201,149,108,0.92) 0%, rgba(201,149,108,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.social-tile:hover .social-tile-overlay { opacity: 1; }
.social-tile-overlay i {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 0.3rem;
}
.social-tile-overlay span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: white;
  text-transform: uppercase;
}
/* Platform-branded tiles (TikTok, LinkedIn, YouTube) */
.social-tile-brand {
  background: var(--brand-color, #333);
}
.social-tile-brand-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}
.social-tile-brand:hover .social-tile-brand-inner { transform: scale(1.05); }
.social-tile-brand-inner span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: white;
  text-transform: uppercase;
}
.social-tile-brand-inner small {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-inner h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.newsletter-inner p {
  color: var(--text-mid);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(201,149,108,0.3);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--rose-gold); box-shadow: 0 0 0 3px rgba(201,149,108,0.15); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .logo-script { color: var(--rose-gold); }
.footer-brand .logo-text { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.7rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-links ul li,
.footer-services ul li { margin-bottom: 0.5rem; }
.footer-links ul li a,
.footer-services ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links ul li a:hover,
.footer-services ul li a:hover { color: var(--rose-gold-light); padding-left: 4px; }
.footer-contact p {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.footer-contact p i { color: var(--rose-gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--rose-gold-light); }
.cancellation-note {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.4) !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.7rem;
  margin-top: 0.5rem;
}
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom i { color: var(--rose-gold); }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ============================================================
   AOS ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/services-hero-bg.jpg') center/cover;
  opacity: 0.22;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--rose-gold-light); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--rose-gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.6rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 6rem 0; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-story-imgs {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 3/4;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 4px solid var(--white);
  aspect-ratio: 1;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--rose-gold-dark);
  border-left: 3px solid var(--rose-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.cred-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(201,149,108,0.15);
  transition: var(--transition);
}
.cred-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--rose-gold); }
.cred-card i {
  font-size: 1.5rem;
  color: var(--rose-gold);
  margin-bottom: 0.7rem;
}
.cred-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.cred-card p { font-size: 0.8rem; color: var(--text-mid); }
.cert-flags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.cert-flag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--champagne);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}
.cert-flag i { color: var(--rose-gold); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full { padding: 6rem 0; }
.services-category { margin-bottom: 4rem; }
.services-category h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--champagne);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.services-category h3 i { color: var(--rose-gold); font-size: 1.2rem; }
.services-list { display: flex; flex-direction: column; gap: 0.8rem; }
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201,149,108,0.12);
  transition: var(--transition);
  gap: 1rem;
}
.service-row:hover {
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-soft);
  transform: translateX(4px);
}
.service-row-info { flex: 1; }
.service-row-info h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.service-row-info p { font-size: 0.8rem; color: var(--text-light); }
.service-row-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.service-duration {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-light);
}
.service-duration i { color: var(--rose-gold); font-size: 0.75rem; }
.service-row-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rose-gold-dark);
  min-width: 80px;
  text-align: right;
}
.service-book-btn {
  background: transparent;
  border: 1px solid var(--rose-gold);
  color: var(--rose-gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.service-book-btn:hover { background: var(--rose-gold); color: var(--white); }

/* ============================================================
   ACADEMY PAGE
   ============================================================ */
.academy-hero-section { padding: 6rem 0; }
.academy-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.academy-overview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4/5;
}
.academy-overview-img img { width: 100%; height: 100%; object-fit: cover; }
.what-youll-learn {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}
.what-youll-learn h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.learn-list { display: flex; flex-direction: column; gap: 0.6rem; }
.learn-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.87rem;
  color: var(--text-mid);
}
.learn-item i { color: var(--rose-gold); font-size: 0.8rem; flex-shrink: 0; }
.sessions-section { padding: 6rem 0; background: var(--cream); }
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.session-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  border: 1px solid rgba(201,149,108,0.12);
  transition: var(--transition);
}
.session-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); border-color: var(--rose-gold); }
.session-num {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.session-info h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.session-info p { font-size: 0.82rem; color: var(--text-mid); }
.session-card.bonus { border-color: var(--rose-gold); background: linear-gradient(135deg, var(--champagne), var(--blush)); }
.session-card.bonus .session-num { background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy)); }
.enroll-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  text-align: center;
}
.enroll-section .section-title { color: var(--white); }
.enroll-section .section-desc { color: rgba(255,255,255,0.65); }
.enroll-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose-gold-light);
  margin: 1.5rem 0;
}
.enroll-price small { font-size: 1rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-full { padding: 6rem 0; }
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(201,149,108,0.3);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
}
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,26,0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
}
.gallery-item-overlay h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.contact-info p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blush), var(--champagne));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold-dark);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 0.2rem; }
.contact-detail-text span { font-size: 0.85rem; color: var(--text-mid); }
.contact-detail-text a { color: var(--text-mid); }
.contact-detail-text a:hover { color: var(--rose-gold); }
.contact-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.contact-social a {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(201,149,108,0.2);
}
.contact-social a:hover { background: var(--rose-gold); color: var(--white); border-color: var(--rose-gold); }
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-med);
  border: 1px solid rgba(201,149,108,0.1);
}
.booking-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.booking-form p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(201,149,108,0.25);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(201,149,108,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--champagne);
  border-radius: 8px;
  border-left: 3px solid var(--rose-gold);
}
.map-section { padding: 0 0 6rem; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  height: 420px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .intro-strip { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
  .academy-inner { gap: 3rem; }
  .about-story-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 0.5rem;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li a { color: var(--text-dark) !important; font-size: 1rem; padding: 0.7rem 0; }
  .nav-links li a.nav-cta { color: var(--white) !important; padding: 0.7rem 1.5rem; margin-top: 0.5rem; }
  .hamburger { display: flex; z-index: 1001; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .academy-inner { grid-template-columns: 1fr; }
  .academy-visual { order: -1; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.large { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-strip { grid-template-columns: repeat(2, 1fr); }
  .sessions-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.large { grid-row: span 1; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-strip { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
}

/* ============================================================
   NAVBAR V2 — Shared across all pages
   ============================================================ */
.navbar-v2 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  background: rgba(20, 12, 8, 0.96);
}
.navbar-v2.page-nav {
  background: rgba(20, 12, 8, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.navbar-v2.scrolled {
  background: rgba(20, 12, 8, 0.96);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-v2-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(1.05);
  transition: all 0.3s ease;
}
.nav-logo-img:hover { opacity: 0.85; }
.navbar-v2.menu-open { z-index: 9999 !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .nav-v2-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-v2-links li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
.nav-v2-links li a:hover,
.nav-v2-links li a.active { color: #C9956C; }
.nav-v2-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(201,149,108,0.35);
  border-radius: 4px;
  transition: all 0.3s ease;
  background: transparent;
}
.lang-toggle:hover { border-color: #C9956C; color: #C9956C; }
.lang-toggle .lang-sep { color: rgba(201,149,108,0.5); margin: 0 1px; }
.lang-toggle .lang-active { color: #C9956C; }
.login-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201,149,108,0.4);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
}
.login-icon-btn:hover { border-color: #C9956C; color: #C9956C; background: rgba(201,149,108,0.1); }
.nav-book-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a0e08;
  background: linear-gradient(135deg, #C9956C 0%, #A0714F 100%);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 15px rgba(201,149,108,0.4);
}
.nav-book-btn:hover {
  background: linear-gradient(135deg, #d4a57a 0%, #C9956C 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,149,108,0.5);
}
.nav-v2-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-v2-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 900px) {
  .nav-v2-hamburger { display: flex; }
  .nav-v2-links { display: none; }
  .nav-v2-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(20,12,8,0.98);
    padding: 1rem 0;
    z-index: 999;
  }
}

/* ============================================================
   MOBILE RESPONSIVENESS FIXES — v3 (May 2026)
   ============================================================ */

/* Prevent horizontal overflow on all pages */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 768px) {

  /* --- NAV V2 MOBILE FIX --- */
  .nav-v2-container {
    padding: 0 1rem !important;
    gap: 0.4rem !important;
    flex-wrap: nowrap !important;
  }
  .nav-v2-actions .lang-toggle { display: none !important; }
  .nav-v2-actions .login-icon-btn { display: none !important; }
  .nav-book-btn {
    font-size: 0.65rem !important;
    padding: 0.5rem 0.8rem !important;
    white-space: nowrap !important;
  }
  .nav-v2-hamburger {
    display: flex !important;
    order: 10 !important;
    flex-shrink: 0 !important;
  }
  .nav-logo-img { height: 40px !important; }

  .nav-v2-links {
    display: none !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(20, 12, 8, 0.98) !important;
    padding: 5rem 2rem 2rem !important;
    z-index: 998 !important;
    align-items: flex-start !important;
    gap: 0 !important;
    overflow-y: auto !important;
  }
  .nav-v2-links.open { display: flex !important; }
  .nav-v2-links li { width: 100% !important; border-bottom: 1px solid rgba(201,149,108,0.15) !important; }
  .nav-v2-links li a {
    display: block !important;
    padding: 1rem 0 !important;
    font-size: 1rem !important;
    color: rgba(255,255,255,0.9) !important;
  }

  /* --- HERO TEXT --- */
  .hero-v2-headline .line1,
  .hero-v2-headline .line2 { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }
  .page-hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; word-break: break-word !important; }
  h1, h2, h3 { word-break: break-word; overflow-wrap: break-word; }

  /* --- ABOUT PAGE --- */
  .about-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .credentials-grid { grid-template-columns: 1fr !important; }
  .about-story-grid { grid-template-columns: 1fr !important; }
  .social-cards-grid { grid-template-columns: 1fr 1fr !important; gap: 0.75rem !important; }

  /* --- SERVICES PAGE --- */
  .services-grid { grid-template-columns: 1fr !important; }
  .service-book-btn { width: auto !important; text-align: center !important; }

  /* --- COURSES PAGE --- */
  .sessions-grid { grid-template-columns: 1fr !important; }
  .academy-lang-badge { font-size: 1.1rem !important; word-break: break-word !important; }

  /* --- PORTFOLIO PAGE --- */
  .portfolio-grid { grid-template-columns: 1fr 1fr !important; gap: 0.5rem !important; }
  .portfolio-filters { flex-wrap: wrap !important; gap: 0.5rem !important; justify-content: center !important; }

  /* --- BLOG PAGE --- */
  .blog-grid { grid-template-columns: 1fr !important; }

  /* --- CONTACT PAGE --- */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* --- FOOTER --- */
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .footer-social-icons { flex-wrap: wrap !important; gap: 0.5rem !important; }
  .footer-brand-logo { max-width: 160px !important; height: auto !important; }

  /* --- BRANDS LOGOS --- */
  .brands-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }

  /* --- FOLLOW ALONG SOCIAL CARDS --- */
  .instagram-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* --- WHATSAPP BUTTON --- */
  .whatsapp-float { bottom: 1rem !important; right: 1rem !important; width: 48px !important; height: 48px !important; }

  /* --- MODALS --- */
  .modal-overlay { padding: 0.5rem !important; }
  .modal-box { max-height: 90vh !important; width: 100% !important; padding: 1.5rem 1rem !important; border-radius: 8px !important; }
  .btn-enroll { font-size: 0.85rem !important; padding: 0.9rem 1.2rem !important; width: 100% !important; text-align: center !important; }

  /* --- GENERAL --- */
  section { padding-left: 1rem !important; padding-right: 1rem !important; }
}

@media (max-width: 480px) {
  .nav-book-btn { display: none !important; }
  .nav-v2-hamburger { display: flex !important; }
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .social-cards-grid { grid-template-columns: 1fr !important; }
  .brands-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ============================================================
   MOBILE FIXES v5 — Service rows, nav hamburger, hero overflow
   ============================================================ */
@media (max-width: 768px) {
  /* Show hamburger, hide BOOK NOW button */
  .nav-book-btn { display: none !important; }
  .nav-v2-hamburger { display: flex !important; flex-shrink: 0 !important; margin-left: auto !important; }

  /* Service rows — stack vertically, no overflow */
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  .services-section, .services-grid, .service-category { overflow: hidden !important; max-width: 100% !important; box-sizing: border-box !important; }
  .service-row {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .service-row-info { flex: 1 1 100% !important; min-width: 0 !important; max-width: 100% !important; }
  .service-row-meta {
    flex: 1 1 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .service-duration {
    flex: 0 0 auto !important;
    font-size: 0.68rem !important;
    white-space: nowrap !important;
  }
  .service-row-price {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    text-align: left !important;
    font-size: 0.88rem !important;
    white-space: nowrap !important;
  }
  .service-book-btn {
    flex: 0 0 auto !important;
    text-align: center !important;
    padding: 0.28rem 0.6rem !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
    min-width: auto !important;
    border-radius: 50px !important;
    line-height: 1.4 !important;
  }

  /* Hero title — prevent overflow */
  .page-hero-title, h1 { white-space: normal !important; overflow-wrap: break-word !important; word-break: break-word !important; }

  /* Footer — single column */
  .footer-grid { grid-template-columns: 1fr !important; text-align: center !important; }
  .footer-social-icons { justify-content: center !important; }
  .footer-quick-links { text-align: center !important; }

  /* Prevent horizontal scroll globally */
  body, html { overflow-x: hidden !important; max-width: 100vw !important; }
  * { max-width: 100% !important; box-sizing: border-box !important; }
  img { max-width: 100% !important; height: auto !important; }
}

/* ============================================================
   MOBILE FIXES v6 — Page hero title overflow fix + hamburger guarantee
   ============================================================ */
@media (max-width: 480px) {
  /* Fix page hero titles overflowing on small screens */
  .page-hero h1,
  .page-hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem) !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    text-align: center !important;
    padding: 0 1rem !important;
  }

  /* Fix hero text overflow on all pages */
  .page-hero-content {
    padding: 0 1rem !important;
    overflow: hidden !important;
  }

  /* Guarantee hamburger is visible */
  .nav-v2-hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1001 !important;
  }

  /* Hide BOOK NOW on very small screens */
  .nav-book-btn {
    display: none !important;
  }

  /* Fix nav container to not overflow */
  .nav-v2-container {
    padding: 0 0.75rem !important;
    overflow: visible !important;
  }

  /* Fix text overflow in body content */
  p, h2, h3, h4, li {
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* Fix course hero title */
  .academy-hero h1,
  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem) !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    padding: 0 1rem !important;
  }
}

/* ============================================================
   FOLLOW ALONG — SOCIAL GRID MOBILE FIX (index.html only)
   ============================================================ */
@media (max-width: 768px) {
  .social-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  /* 5th card (missuniversalcanada) centered on its own row */
  .social-grid .social-tile:last-child {
    grid-column: 1 / -1 !important;
    max-width: 50% !important;
    margin: 0 auto !important;
  }

  /* Ensure tiles are tall enough to show icon + text */
  .social-tile {
    aspect-ratio: 1 !important;
    min-height: 120px !important;
  }

  /* Make icon and text readable */
  .social-tile-brand-inner span {
    font-size: 0.8rem !important;
  }
  .social-tile-brand-inner small {
    font-size: 0.62rem !important;
  }
  .social-tile-brand-inner i,
  .social-tile-brand-inner svg {
    font-size: 2.2rem !important;
    width: 2.2rem !important;
    height: 2.2rem !important;
  }
}
