/* =============================================
   JAWED HABIB STUDIO & ACADEMY — MAIN CSS
   Version 2.0 | Pokhara, Nepal
============================================= */

/* ── CSS Variables ── */
:root {
  --crimson:    #C8102E;
  --burgundy:   #8B0A1A;
  --deep-red:   #A01020;
  --gold:       #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark:  #A07830;
  --cream:      #FAF7F2;
  --cream-dark: #F2EDE4;
  --white:      #FFFFFF;
  --charcoal:   #1A1A1A;
  --grey:       #6B6B6B;
  --grey-light: #D0CCC6;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display:'Playfair Display', serif;
  --font-sans:  'Montserrat', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --radius:     0px;
}

/* ── 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(--charcoal); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2; color: var(--charcoal);
}
.section-title span { color: var(--crimson); font-style: italic; }
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0 40px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition); z-index: 0;
}
.btn span, .btn i { position: relative; z-index: 1; }

.btn-primary { background: var(--crimson); color: var(--white); border: 2px solid var(--crimson); }
.btn-primary::before { background: var(--burgundy); }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { box-shadow: 0 6px 24px rgba(200,16,46,0.35); }

.btn-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-gold::before { background: var(--gold); }
.btn-gold:hover::before { transform: scaleX(1); }
.btn-gold:hover { color: var(--white); }

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

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* =============================================
   HEADER
============================================= */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; transition: all 0.4s ease;
}
#header.scrolled { background: var(--white); box-shadow: var(--shadow-md); }

.header-top {
  background: var(--burgundy); padding: 7px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.85);
  transition: all 0.4s ease;
}
#header.scrolled .header-top { display: none; }
.header-top a { color: var(--gold-light); margin-left: 16px; transition: color 0.2s; }
.header-top a:hover { color: var(--white); }
.header-top-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.header-top-left span { display: flex; align-items: center; gap: 6px; }

.header-main {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

/* ── Logo ── */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 52px; width: auto; object-fit: contain; }
.logo-text { line-height: 1; }
.logo-text .brand-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--crimson); letter-spacing: 0.3px; }
.logo-text .brand-sub { font-family: var(--font-sans); font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-top: 2px; }

/* ── Nav ── */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal);
  padding: 8px 12px; position: relative; transition: color var(--transition);
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-menu a:hover { color: var(--crimson); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--crimson); color: var(--white) !important; padding: 10px 18px !important; margin-left: 10px; transition: background var(--transition) !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--burgundy) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; height: 2px; background: var(--charcoal); transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 32px 28px;
  flex-direction: column; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--charcoal); padding: 14px 0;
  border-bottom: 1px solid var(--grey-light); transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--crimson); }

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  filter: brightness(0.42);
  transform: scale(1.05);
  animation: kenBurns 12s ease-in-out alternate infinite;
}
.hero-bg-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #6B0F1A 0%, #1A1A1A 60%, #0d0d0d 100%);
}
@keyframes kenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12) translate(-1%,-1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(107,15,26,0.65) 0%, rgba(26,26,26,0.45) 60%, transparent 100%);
}
.hero-decor-line {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  padding: 140px 24px 80px;
  margin-left: clamp(28px, 8vw, 120px);
}
.hero-label {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold-light);
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin-bottom: 22px; opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title .highlight { color: var(--gold-light); font-style: italic; }
.hero-subtitle {
  font-family: var(--font-serif); font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.7;
  max-width: 500px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}
.hero-stats {
  position: absolute; bottom: 44px; right: clamp(28px, 8vw, 100px);
  display: flex; gap: 36px; z-index: 2;
  opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
}
@media (max-width: 768px) { .hero-stats { position: static; margin-top: 36px; justify-content: flex-start; gap: 28px; } }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 3px; }
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2; color: rgba(255,255,255,0.45); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   MARQUEE STRIP
============================================= */
.about-strip { background: var(--crimson); padding: 26px 0; overflow: hidden; }
.strip-inner { display: flex; animation: marquee 22s linear infinite; white-space: nowrap; }
.strip-item {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0 36px; font-family: var(--font-display);
  font-size: 1.15rem; font-style: italic; color: var(--white); flex-shrink: 0;
}
.strip-item i { color: var(--gold); font-size: 7px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   ABOUT
============================================= */
#about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-intro { font-family: var(--font-serif); font-size: 1.1rem; color: var(--grey); line-height: 1.9; margin-bottom: 22px; }
.about-body { font-size: 14px; color: var(--grey); line-height: 1.9; margin-bottom: 34px; }
.about-images { position: relative; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.about-img-main { grid-row: span 2; width: 100%; height: 300px; object-fit: cover; }
.about-img-sm { width: 100%; height: 140px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--crimson); color: var(--white); padding: 22px 28px; text-align: center;
}
.about-badge-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; color: var(--gold-light); }

/* =============================================
   SERVICES
============================================= */
#services { padding: 100px 0; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 50px; }
.services-tabs {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 0; margin: 0 auto 48px;
  border: 1px solid var(--grey-light); width: fit-content;
}
.tab-btn {
  padding: 13px 28px; font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--grey); background: var(--white);
  border: none; border-right: 1px solid var(--grey-light); cursor: pointer; transition: all 0.3s;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active { background: var(--crimson); color: var(--white); }
.tab-btn:hover:not(.active) { background: var(--cream-dark); color: var(--crimson); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.tab-content { display: none; }
.tab-content.active { display: block; }

.service-card {
  background: var(--white); padding: 36px 28px;
  position: relative; overflow: hidden; cursor: default;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px; background: var(--cream);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--crimson); margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--crimson); color: var(--gold); transform: rotate(10deg) scale(1.1); }
.service-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); }
.service-desc { font-size: 13px; color: var(--grey); line-height: 1.65; }

/* =============================================
   ACADEMY
============================================= */
#academy { padding: 100px 0; background: var(--charcoal); position: relative; overflow: hidden; }
#academy::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border: 1px solid rgba(201,168,76,0.12); border-radius: 50%; }
#academy::after  { content: ''; position: absolute; bottom:-100px; left:-100px; width: 400px; height: 400px; border: 1px solid rgba(201,168,76,0.08); border-radius: 50%; }
.academy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.academy-intro { font-family: var(--font-serif); font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 36px; }
.benefits-list { margin-bottom: 36px; }
.benefit-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { width: 30px; height: 30px; flex-shrink: 0; background: rgba(201,168,76,0.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 12px; }
.benefit-text { color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 500; }
.benefit-text strong { color: var(--white); display: block; margin-bottom: 2px; }
.courses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.course-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
  padding: 28px 24px; position: relative; overflow: hidden; transition: all var(--transition); cursor: default;
}
.course-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); transform: scaleY(0); transition: transform var(--transition); }
.course-card:hover { background: rgba(201,168,76,0.07); border-color: var(--gold); transform: translateY(-4px); }
.course-card:hover::before { transform: scaleY(1); }
.course-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: rgba(201,168,76,0.13); line-height: 1; margin-bottom: 10px; }
.course-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.course-duration { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.course-desc { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 8px; line-height: 1.6; }

/* =============================================
   GALLERY
============================================= */
#gallery { padding: 100px 0; background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 44px; }
.gallery-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px; font-family: var(--font-sans); font-size: 10px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--grey); background: transparent; border: 1px solid var(--grey-light); cursor: pointer; transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: var(--crimson); color: var(--white); border-color: var(--crimson); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 10px; }
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row: span 2; }
.gallery-item img   { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(107,15,26,0.85), transparent);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-family: var(--font-display); font-size: 1rem; font-weight: 600; }

/* ── Media Admin Note ── */
.media-admin-note {
  background: var(--cream); border: 1px dashed var(--gold);
  padding: 16px 24px; text-align: center; margin-top: 30px;
  font-size: 12px; color: var(--gold-dark);
}

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials { padding: 100px 0; background: var(--cream); }
.testimonials-header { text-align: center; margin-bottom: 50px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); padding: 36px 32px;
  position: relative; transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card::before { content: '\201C'; font-family: var(--font-display); font-size: 5.5rem; color: var(--crimson); opacity: 0.11; position: absolute; top: 8px; left: 24px; line-height: 1; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 18px; }
.review-text { font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: var(--charcoal); line-height: 1.75; margin-bottom: 24px; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--cream); overflow: hidden; flex-shrink: 0; border: 2px solid var(--gold-light); }
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-name { font-family: var(--font-sans); font-weight: 700; font-size: 13px; color: var(--charcoal); }
.reviewer-tag { font-size: 10px; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

/* =============================================
   BOOKING
============================================= */
#booking { padding: 100px 0; background: var(--white); }
.booking-wrapper { display: grid; grid-template-columns: 1fr 1.4fr; box-shadow: var(--shadow-lg); }
.booking-left {
  background: var(--crimson); padding: 56px 44px;
  position: relative; overflow: hidden;
}
.booking-left::before { content: ''; position: absolute; top:-80px; right:-80px; width: 240px; height: 240px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; }
.booking-left::after  { content: ''; position: absolute; bottom:-90px; left:-70px; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,0.07); border-radius: 50%; }
.booking-left .section-label { color: var(--gold-light); }
.booking-left .section-title { color: var(--white); }
.booking-left .gold-line { background: rgba(226,201,126,0.5); }
.booking-tagline { font-family: var(--font-serif); font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.8; }
.booking-info-list { margin: 28px 0; }
.booking-info-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: flex-start; }
.booking-info-item:last-child { border-bottom: none; }
.booking-info-icon { color: var(--gold-light); font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.booking-info-content { color: rgba(255,255,255,0.88); font-size: 13px; line-height: 1.6; }
.booking-info-content strong { color: var(--white); display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 3px; }
.booking-info-content a { color: var(--gold-light); }
.booking-info-content a:hover { color: var(--white); }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; background: #25D366; color: var(--white);
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 12px; transition: all 0.3s;
  position: relative; z-index: 1;
}
.whatsapp-btn:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,211,102,0.35); }

.booking-right { background: var(--cream); padding: 56px 44px; }
.booking-right h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; margin-bottom: 6px; }
.booking-right p.sub { font-size: 13px; color: var(--grey); margin-bottom: 28px; }

.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white); border: 1px solid var(--grey-light);
  padding: 13px 16px; font-family: var(--font-sans); font-size: 13px;
  color: var(--charcoal); outline: none; transition: border-color 0.3s;
  appearance: none; border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--crimson); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { grid-column: span 2; }
.form-submit .btn { width: 100%; justify-content: center; padding: 15px; font-size: 11px; letter-spacing: 3px; }

.gform-note {
  font-size: 12px; color: var(--grey); margin-top: 14px; text-align: center; line-height: 1.6;
}
.gform-note a { color: var(--crimson); text-decoration: underline; }

/* =============================================
   CONTACT
============================================= */
#contact { padding: 100px 0 0; background: var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; padding-bottom: 72px; }
.contact-left .section-label { color: var(--gold); }
.contact-left .section-title { color: var(--white); }
.contact-items { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.28); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 15px; }
.contact-detail { color: rgba(255,255,255,0.78); font-size: 13px; line-height: 1.7; }
.contact-detail strong { color: var(--white); display: block; font-family: var(--font-sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
.contact-detail a { color: var(--gold-light); transition: color 0.2s; }
.contact-detail a:hover { color: var(--white); }
.map-container { height: 400px; overflow: hidden; border: 1px solid rgba(201,168,76,0.2); }
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.1); }

/* =============================================
   FOOTER
============================================= */
footer { background: #111; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand p { font-family: var(--font-serif); font-size: 0.95rem; color: rgba(255,255,255,0.52); line-height: 1.8; margin: 18px 0 24px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.58); font-size: 13px; transition: all 0.3s; }
.social-link:hover { background: var(--crimson); border-color: var(--crimson); color: var(--white); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.18); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.52); transition: color 0.2s; display: flex; align-items: center; gap: 7px; }
.footer-links a::before { content: '—'; color: var(--crimson); font-size: 9px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.32); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,0.32); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* =============================================
   SCROLL TO TOP
============================================= */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; background: var(--crimson);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(18px); transition: all 0.4s; z-index: 999;
}
#scrollTop.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#scrollTop:hover { background: var(--burgundy); }

/* =============================================
   RESPONSIVE — TABLET
============================================= */
@media (max-width: 1024px) {
  .academy-grid { grid-template-columns: 1fr; gap: 44px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-container { height: 300px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-images { max-width: 480px; }
}

/* =============================================
   RESPONSIVE — MOBILE
============================================= */
@media (max-width: 768px) {
  .header-top { display: none; }
  .header-main { padding: 0 20px; height: 68px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; top: 68px; }

  .hero-content { margin-left: 0; padding: 110px 20px 60px; }
  .hero-buttons .btn { padding: 12px 22px; font-size: 11px; }

  .services-tabs { flex-direction: column; width: 100%; }
  .tab-btn { border-right: none; border-bottom: 1px solid var(--grey-light); }
  .tab-btn:last-child { border-bottom: none; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.tall { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .booking-form { grid-template-columns: 1fr; }
  .form-group.full, .form-submit { grid-column: span 1; }
  .booking-left, .booking-right { padding: 36px 24px; }

  .courses-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-title { font-size: 1.75rem; }
  section[id] { padding: 70px 0; }
  #hero { min-height: 90vh; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.8rem; }
  .about-badge { left: 0; bottom: -14px; padding: 16px 20px; }
  .logo-img { height: 42px; }
  .logo-text .brand-name { font-size: 14px; }
}
