/* ============================================================
   ABHINANDA SARKAAR – Official Website Styles
   Theme: Deep Purple & Pink
   ============================================================ */

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

:root {
  --pink:        #e91e8c;
  --pink-light:  #f48fb1;
  --purple:      #9c27b0;
  --purple-deep: #1a0030;
  --purple-mid:  #2d0050;
  --purple-dark: #12001f;
  --light:       #f9e6f4;
  --muted:       rgba(249,230,244,.65);
  --glass:       rgba(45,0,80,.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--purple-dark);
  color: var(--light);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-dark); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 5%;
  background: rgba(18,0,31,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233,30,140,.18);
  transition: padding .3s;
}

nav.scrolled { padding: .7rem 5%; }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; letter-spacing: 3px;
  background: linear-gradient(135deg, #fff, var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-menu { list-style: none; display: flex; gap: 2.2rem; align-items: center; }

.nav-menu a {
  text-decoration: none; color: var(--muted);
  font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; position: relative; padding-bottom: 4px;
  transition: color .3s;
}

.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transition: width .3s;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--light); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--purple)) !important;
  color: #fff !important; padding: .45rem 1.3rem !important;
  border-radius: 30px; font-size: .75rem !important;
  transition: opacity .3s !important;
}
.nav-cta:hover { opacity: .85; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--light); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
#home {
  padding: 0 !important;
  margin: 0 !important;
}

.hero-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,0,31,.3) 0%,
    rgba(26,0,48,.5) 50%,
    rgba(18,0,31,.88) 100%
  );
}

.slide-1 { background-image: url('../images/slider-1.webp'); }
.slide-2 { background-image: url('../images/slider-2.webp'); }
.slide-3 { background-image: url('../images/slider-3.webp'); }
.slide-4 { background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?w=1920&auto=format&fit=crop'); }

.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 5%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(233,30,140,.5);
  background: rgba(233,30,140,.1);
  color: var(--pink-light);
  font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
  padding: .45rem 1.4rem; border-radius: 30px;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(6px);
}

.hero-badge i { font-size: .75rem; }

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 1; font-weight: 900; letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 10%, #f48fb1 50%, var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(.85rem, 1.5vw, 1.05rem);
  font-weight: 300; letter-spacing: 5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}

.hero-tagline span { color: var(--pink-light); margin: 0 .6rem; }

.hero-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--pink-light); margin-bottom: 2.5rem;
  opacity: .9;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2.2rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; text-decoration: none;
  font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; border-radius: 30px;
  box-shadow: 0 4px 25px rgba(233,30,140,.4);
  transition: transform .3s, box-shadow .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 35px rgba(233,30,140,.55); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .88rem 2.2rem;
  border: 1px solid rgba(233,30,140,.5); color: var(--pink-light);
  text-decoration: none;
  font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; border-radius: 30px;
  backdrop-filter: blur(6px);
  transition: background .3s, color .3s;
}
.btn-outline:hover { background: rgba(233,30,140,.15); color: #fff; }

/* Slider controls */
.slider-arrows {
  position: absolute; bottom: 40px; right: 5%;
  z-index: 20; display: flex; gap: .8rem;
}

.arrow-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(233,30,140,.4);
  background: rgba(45,0,80,.5);
  color: var(--pink-light); font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(6px);
  transition: background .3s, border-color .3s;
}
.arrow-btn:hover { background: var(--pink); border-color: var(--pink); color: #fff; }

/* Slider dots */
.slider-dots {
  position: absolute; bottom: 48px; left: 50%;
  transform: translateX(-50%);
  z-index: 20; display: flex; gap: .5rem;
}

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(249,230,244,.3); cursor: pointer;
  transition: all .3s;
}
.dot.active { background: var(--pink); width: 24px; border-radius: 4px; }

/* Scroll indicator */
.scroll-down {
  position: absolute; bottom: 30px; left: 5%;
  z-index: 20; display: flex; flex-direction: column;
  align-items: center; gap: .4rem;
  color: var(--muted); font-size: .65rem;
  letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-down i { font-size: 1rem; color: var(--pink); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 110px 5%; }
#home  { padding: 0 !important; }

.section-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--pink); margin-bottom: .8rem;
}
.section-eyebrow i { font-size: .7rem; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1;
  margin-bottom: 1.2rem;
  text-align: center;
}

.section-title span {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 2px; margin: 0 auto 2.5rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: linear-gradient(160deg, var(--purple-mid) 0%, var(--purple-deep) 100%);
  position: relative; overflow: hidden;
}

#about::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,.12), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1150px; margin: 0 auto;
}

.about-text .section-eyebrow { justify-content: flex-start; }
.about-text .section-title  { text-align: left; }
.about-text .divider        { margin: 0 0 2.5rem; }

.contact-info .section-eyebrow { justify-content: flex-start; }
.contact-info .section-title   { text-align: left; }
.contact-info .divider         { margin: 0 0 2.5rem; }

.about-img-wrap { position: relative; }

.about-slider {
  position: relative;
  width: 100%;
  z-index: 1;
}

.about-slider .owl-stage-outer {
  border-radius: 8px;
  overflow: hidden;
  width: 100% !important;
}

.about-slider .owl-stage {
  display: flex;
  width: 100% !important;
  transform: none !important;
}

.about-slider .owl-item {
  width: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.about-slider .owl-item.active {
  opacity: 1;
  position: relative;
}

.about-slider .item {
  width: 100%;
}

.about-slider .item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  filter: contrast(1.05) saturate(1.1);
}

.about-img-wrap::before {
  content: '';
  position: absolute; top: -18px; left: -18px;
  width: 100%; height: 100%;
  border: 2px solid var(--pink); border-radius: 8px; z-index: 0;
  box-shadow: 0 0 50px rgba(233,30,140,.2);
}

.about-img-wrap::after {
  content: '';
  position: absolute; bottom: -18px; right: -18px;
  width: 60%; height: 60%;
  border: 2px solid rgba(156,39,176,.4); border-radius: 8px; z-index: 0;
}



.about-img-badge {
  position: absolute; bottom: -25px; right: -25px; z-index: 2;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 12px; padding: 1rem 1.4rem; text-align: center;
  box-shadow: 0 8px 30px rgba(233,30,140,.4);
}
.about-img-badge strong { display: block; font-size: 1.6rem; font-family: 'Playfair Display', serif; }
.about-img-badge span { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; opacity: .85; }

.about-text p {
  font-size: .95rem; line-height: 1.9;
  color: var(--muted); margin-bottom: 1rem;
}

.about-highlights {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin: 1.8rem 0 2.2rem;
}

.highlight-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; letter-spacing: 1px;
  color: var(--pink-light);
}
.highlight-item i { color: var(--pink); font-size: .9rem; }

/* ============================================================
   GALLERY / ACHIEVEMENTS
   ============================================================ */
#gallery {
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
  position: relative;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(233,30,140,.15);
  border: 1px solid rgba(233,30,140,.15);
  border-radius: 12px; overflow: hidden;
  max-width: 900px;
  margin: 2.5rem auto 4rem;
}

.stat-item {
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem; text-align: center;
  transition: background .3s;
}
.stat-item:hover { background: rgba(233,30,140,.12); }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: .4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1150px; margin: 0 auto;
}

.card {
  background: linear-gradient(145deg, rgba(45,0,80,.7), rgba(26,0,48,.85));
  border: 1px solid rgba(233,30,140,.15);
  border-radius: 12px; padding: 2.2rem;
  transition: border-color .3s, transform .35s, box-shadow .35s;
  position: relative; overflow: hidden;
}

.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0; transition: opacity .3s;
}

.card:hover { border-color: rgba(233,30,140,.4); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(233,30,140,.18); }
.card:hover::before { opacity: 1; }

.card-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(233,30,140,.2), rgba(156,39,176,.2));
  border: 1px solid rgba(233,30,140,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
}
.card-icon-wrap i { font-size: 1.3rem; color: var(--pink); }

.card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--light); margin-bottom: .6rem;
}

.card p { font-size: .87rem; line-height: 1.75; color: var(--muted); }

/* Gallery Images Grid */
.gallery-images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1150px;
  margin: 3rem auto 0;
}

.gallery-img-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 250px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.gallery-img-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(233,30,140,.25);
}

.gallery-img-item a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.gallery-img-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* ============================================================
   VIDEOS
   ============================================================ */
#videos {
  background: linear-gradient(160deg, var(--purple-mid) 0%, var(--purple-deep) 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.8rem; max-width: 1150px; margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem; max-width: 1150px; margin: 0 auto;
}

.video-card {
  border-radius: 12px; overflow: hidden;
  background: rgba(45,0,80,.5);
  border: 1px solid rgba(233,30,140,.15);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.video-card:hover { border-color: var(--pink); box-shadow: 0 12px 40px rgba(233,30,140,.22); transform: translateY(-4px); }

/* Video thumbnail styles */
.video-thumbnail {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.video-thumbnail img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s, filter .3s;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: rgba(233,30,140,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
  z-index: 10;
}

.video-thumbnail:hover .play-overlay {
  background: var(--pink);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay i {
  font-size: 2rem;
  color: #fff;
}

.video-info { padding: 1rem 1.2rem 1.2rem; }

.video-info h4 {
  font-family: 'Playfair Display', serif; font-size: .95rem;
  color: var(--pink-light); margin-bottom: .3rem;
}

.video-info p {
  font-size: .78rem; color: var(--muted);
  display: flex; align-items: center; gap: .4rem;
}
.video-info p i { color: var(--pink); font-size: .72rem; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
  position: relative; overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute; bottom: -200px; left: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(156,39,176,.1), transparent 70%);
  pointer-events: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem; max-width: 1100px; margin: 0 auto; align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; margin-bottom: 1rem; color: var(--light);
}

.contact-info p {
  font-size: .9rem; line-height: 1.85; color: var(--muted); margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.contact-detail-item {
  display: flex; align-items: center; gap: 1rem;
}

.contact-detail-item .icon-box {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(233,30,140,.1); border: 1px solid rgba(233,30,140,.2);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-item .icon-box i { color: var(--pink); font-size: .9rem; }

.contact-detail-item span { font-size: .88rem; color: var(--muted); }
.contact-detail-item strong { display: block; font-size: .75rem; letter-spacing: 1px; color: var(--pink-light); }

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

.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(233,30,140,.3);
  background: rgba(45,0,80,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-light); text-decoration: none; font-size: .9rem;
  transition: background .3s, border-color .3s, transform .3s;
}
.social-link:hover { background: var(--pink); border-color: var(--pink); color: #fff; transform: translateY(-3px); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

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

.form-group label {
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--pink-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(45,0,80,.5);
  border: 1px solid rgba(233,30,140,.2);
  color: var(--light); padding: .85rem 1.1rem; border-radius: 8px;
  font-family: 'Raleway', sans-serif; font-size: .9rem;
  transition: border-color .3s, box-shadow .3s; outline: none; width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,.12);
}

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

.form-group select option { background: var(--purple-mid); }

.submit-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: 1rem 2.5rem; width: 100%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: .82rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 20px rgba(233,30,140,.3);
  transition: transform .3s, box-shadow .3s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(233,30,140,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--purple-dark);
  border-top: 1px solid rgba(233,30,140,.12);
  padding: 3rem 5% 1.5rem;
}

.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(233,30,140,.1);
  margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; letter-spacing: 3px;
  background: linear-gradient(135deg, #fff, var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: .5rem;
}

.footer-brand p { font-size: .82rem; color: var(--muted); max-width: 260px; line-height: 1.7; }

.footer-links h4 {
  font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1rem;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }

.footer-links ul a {
  font-size: .85rem; color: var(--muted); text-decoration: none;
  transition: color .3s;
}
.footer-links ul a:hover { color: var(--pink-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

.footer-bottom p { font-size: .78rem; color: rgba(249,230,244,.35); letter-spacing: 1px; }
.footer-bottom span { color: var(--pink); }

.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  color: var(--muted); font-size: .9rem; text-decoration: none;
  transition: color .3s;
}
.footer-social a:hover { color: var(--pink); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(18,0,31,.97);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.8rem;
  padding: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: none; border: none;
  color: var(--muted); font-size: 1.5rem;
  cursor: pointer; transition: color .3s;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
}
.mobile-menu-close:hover { color: var(--pink); }

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--light); text-decoration: none;
  letter-spacing: 2px;
  position: relative; padding-bottom: 4px;
  transition: color .3s;
}
.mobile-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transition: width .3s;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu a:hover::after { width: 100%; }

.mobile-menu-social {
  display: flex; gap: 1rem; margin-top: 1rem;
}
.mobile-menu-social a {
  font-size: 1.1rem !important; letter-spacing: 0 !important;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(233,30,140,.3);
  display: flex !important; align-items: center; justify-content: center;
  font-family: inherit !important;
}
.mobile-menu-social a::after { display: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet Landscape: 1024px ── */
@media (max-width: 1024px) {
  section { padding: 90px 6%; }

  /* Nav */
  .nav-logo { font-size: 1.2rem; }
  .nav-menu { gap: 1.5rem; }
  .nav-menu a { font-size: .72rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr 1.3fr; gap: 3rem; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(4, 1fr); }

  /* Contact */
  .contact-wrapper { gap: 3rem; }

  /* Cards */
  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery images */
  .gallery-images-grid { grid-template-columns: repeat(3, 1fr); }

  /* Videos */
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet Portrait: 768px ── */
@media (max-width: 768px) {
  section { padding: 80px 5%; }

  .news-item {
    height: 350px;
  }

  /* ── Nav ── */
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-logo { font-size: 1.1rem; letter-spacing: 2px; }

  /* ── Hero ── */
  .hero-slider { height: 100svh; }
  .hero-name { font-size: clamp(2.8rem, 12vw, 5rem); letter-spacing: -1px; }
  .hero-tagline { font-size: .75rem; letter-spacing: 3px; }
  .hero-quote { font-size: .95rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: .8rem; }
  .btn-primary, .btn-outline { width: 100%; max-width: 260px; justify-content: center; }
  .slider-arrows { display: none; }
  .slider-dots { bottom: 30px; }
  .scroll-down { display: none; }
  .hero-badge { font-size: .62rem; letter-spacing: 2px; }

  /* ── About ── */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { max-width: 340px; margin: 0 auto; }
  .about-img-badge { display: none; }
  .about-text .section-eyebrow,
  .about-text .section-title { text-align: center; justify-content: center; }
  .about-text .divider { margin: 0 auto 2rem; }
  .about-highlights { justify-content: center; }
  .about-text .btn-primary { display: flex; margin: 0 auto; width: fit-content; }

  /* ── Stats ── */
  .stats-row { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

  /* ── Cards ── */
  .cards-grid { grid-template-columns: 1fr; }

  /* ── Gallery images ── */
  .gallery-images-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Videos ── */
  .video-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  /* ── Contact ── */
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info .section-eyebrow,
  .contact-info .section-title { text-align: center; justify-content: center; }
  .contact-info .divider { margin: 0 auto 2rem; }
  .contact-info p { text-align: center; }
  .contact-details { align-items: flex-start; max-width: 360px; margin: 0 auto 2rem; }
  .social-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-top { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-links ul { align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: .8rem; }
}

/* ── Mobile: 480px ── */
@media (max-width: 480px) {
  section { padding: 70px 4%; }

  .news-item {
    height: 300px;
  }

  /* Nav */
  nav { padding: .85rem 4%; }
  .nav-logo { font-size: 1rem; letter-spacing: 1px; }

  /* Hero */
  .hero-name { font-size: clamp(2.2rem, 14vw, 3.5rem); }
  .hero-badge { padding: .38rem 1rem; font-size: .6rem; }
  .hero-tagline { letter-spacing: 2px; font-size: .72rem; }
  .hero-quote { font-size: .88rem; margin-bottom: 1.8rem; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2rem; }

  /* Cards */
  .card { padding: 1.6rem; }

  /* Section title */
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* Video grid */
  .video-grid { max-width: 100%; }

  /* Gallery images */
  .gallery-images-grid {
    grid-template-columns: 1fr;
    gap: .8rem;
  }
  .gallery-img-item {
    height: 220px;
  }

  /* Contact form */
  .submit-btn { font-size: .75rem; padding: .9rem 1.5rem; }

  /* Mobile menu links bigger tap targets */
  .mobile-menu a { font-size: 1.5rem; }

  /* Footer */
  footer { padding: 2.5rem 4% 1.2rem; }
  .footer-brand .logo-text { font-size: 1.3rem; }

  /* Scroll to top */
  #scrollTop { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: .8rem; }
}

/* ── Very small: 360px ── */
@media (max-width: 360px) {
  .hero-name { font-size: 2rem; }
  .btn-primary, .btn-outline { max-width: 100%; font-size: .7rem; padding: .8rem 1.4rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1.4rem 1rem; }
  .nav-logo { font-size: .9rem; }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed; bottom: 30px; right: 30px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; cursor: pointer; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(233,30,140,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   NEWS
   ============================================================ */
#news {
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
  position: relative;
}

.news-grid {
  max-width: 1150px;
  margin: 0 auto;
}

.news-item {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 10px;
  transition: transform .3s, box-shadow .3s;
  height: 400px;
}

.news-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(233,30,140,.3);
}

.news-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  transition: transform .3s;
}

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

.news-grid .owl-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.news-grid .owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(233,30,140,.4);
  background: rgba(45,0,80,.5);
  color: var(--pink-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .3s, border-color .3s;
}

.news-grid .owl-nav button:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.news-item a {
  display: block;
  cursor: pointer;
  height: 100%;
  width: 100%;
}

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