@import url('https://fonts.googleapis.com/css2?family=Damion&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&display=swap');


/* =========================
   RESET & GLOBAL STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  body {
  background:#f7f7f7;
  font-family: 'Segoe UI', sans-serif;
  color:#111;
  scroll-behavior: smooth;
  padding-top: 80px;
}

section {
  padding: 80px 20px;
}

h2 {
  font-size: 36px;
  color: #00e5ff;
  margin-bottom: 20px;
}

html {
  scroll-behavior: smooth;
}


/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;   /* <-- change from sticky to fixed */
  top: 0;
  left: 0;
  width: 100%;

  z-index: 9999;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;

  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* LOGO */
.logo {
  font-size: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(45deg, #00e5ff, #ff5a9e, #ffa156);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  font-family: "Damion", cursive;
  transition: all 0.3s ease;
  text-decoration: none;

}

.logo:hover {
  filter: brightness(1.3);
  transform: rotate(-2deg);
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 4px;
  transition: color 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #ec4899);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

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

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: linear-gradient(45deg, #00e5ff, #ff5a9e, #ffa156);
  border-radius: 2px;
  transition: all 0.3s ease;
}




/* =========================
   HERO (FULL UPGRADE)
========================= */
.hero {
  position: relative;
  height: 92vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.05);
  z-index: 0;
  filter: brightness(0.75) contrast(1.1);
}

/* OVERLAY (adds depth) */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(2,6,23,0.6),
    rgba(2,6,23,0.85)
  );
  z-index: 1;
}

/* GLOW ELEMENTS (adds character) */
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  filter: blur(100px);
  opacity: 0.3;
  z-index: 1;
  animation: heroFloat 12s ease-in-out infinite;
}

.hero-glow-1 {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, #38bdf8, transparent 70%);
}

.hero-glow-2 {
  bottom: -120px;
  right: -120px;
  background: radial-gradient(circle, #ec4899, transparent 70%);
  animation-delay: 6s;
}

@keyframes heroFloat {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(40px, 60px); }
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

/* TITLE (BIG UPGRADE) */
.hero-title {
  margin-bottom: 15px;
}

.hero-name {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 2px;

  background: linear-gradient(135deg, #38bdf8, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 10px 40px rgba(0,0,0,0.5);

  animation: heroFadeUp 1s ease forwards;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 20px;
  color: #d1d5db;
  margin-bottom: 40px;
  letter-spacing: 1px;

  animation: heroFadeUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

  animation: heroFadeUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* PRIMARY BUTTON */
.hero-btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #38bdf8, #ec4899);
  color: #fff;
  box-shadow: 0 10px 30px rgba(236,72,153,0.4);
}

.hero-btn.primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(236,72,153,0.6);
}

/* SECONDARY BUTTON */
.hero-btn.secondary {
  border: 2px solid #38bdf8;
  color: #38bdf8;
  background: transparent;
}

.hero-btn.secondary:hover {
  background: #38bdf8;
  color: #020617;
  transform: translateY(-3px);
}

/* ANIMATION */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   HOME TOUR SECTION (FULL CLEAN BUILD)
========================= */

.home-tour-section {
  position: relative;
  padding: 100px 10%;
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  overflow: hidden;
  color: #111827;
}

/* =========================
   DIVIDER
========================= */
.section-divider {
  width: 80%;
  height: 1px;
  margin: 0 auto 50px auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.12),
    transparent
  );
}

/* =========================
   HEADER
========================= */
.home-tour-header {
  text-align: center;
  margin-bottom: 40px;
}

/* MAIN TITLE */
.animated-title {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;

  background: linear-gradient(90deg, #111827, #374151);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  opacity: 0;
  transform: translateY(25px);
  animation: fadeSlideUp 0.9s ease forwards;
}

/* SUBTEXT */
.animated-subtext {
  font-size: 1.05rem;
  color: #6b7280;
  margin-top: 10px;
  letter-spacing: 0.3px;

  opacity: 0;
  transform: translateY(15px);
  animation: fadeSlideUp 0.9s ease forwards;
  animation-delay: 0.25s;
}

/* UNDERLINE */
.title-underline {
  display: block;
  width: 120px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #38bdf8, #ec4899);

  animation: expandLine 0.8s ease forwards;
  animation-delay: 0.6s;
}

/* =========================
   SHOW TYPES (CLICKABLE CARDS)
========================= */
.show-types {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 55px;
  margin: 50px 0 70px;
}

/* CARD */
.show-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  cursor: pointer;

  transition: transform 0.35s ease;
}

/* IMAGE */
.show-type img {
  width: 110px;
  height: 110px;
  object-fit: contain;

  transition: transform 0.35s ease, filter 0.35s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

/* HOVER EFFECT */
.show-type:hover img {
  transform: scale(1.18);
  filter: drop-shadow(0 18px 25px rgba(0,0,0,0.18));
}

/* LABEL */
.show-type span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.4px;
  transition: 0.3s ease;
}

.show-type:hover span {
  color: #111827;
}

/* =========================
   TOUR GRID
========================= */
.home-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARD */
.home-tour-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 15px;

  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  transition: 0.35s ease;
}

.home-tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* DATE */
.home-tour-date {
  background: #38bdf8;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  min-width: 60px;
}

.home-tour-date span {
  font-size: 0.8rem;
}

.home-tour-date strong {
  display: block;
  font-size: 1.4rem;
}

/* INFO */
.home-tour-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #111827;
}

.home-tour-info p {
  margin: 2px 0;
  font-size: 0.9rem;
  color: #6b7280;
}

/* BUTTON */
.home-tour-btn {
  margin-left: auto;
  background: linear-gradient(45deg, #38bdf8, #ec4899);
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.3s;
}

.home-tour-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(236,72,153,0.4);
}

/* =========================
   FOOTER BUTTON
========================= */
.home-tour-footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.home-tour-view-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid #38bdf8;
  color: #38bdf8;
  text-decoration: none;
  transition: 0.3s;
}

.home-tour-view-btn:hover {
  background: #38bdf8;
  color: #fff;
  transform: translateY(-3px);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}

/* =========================
   MINI BACKGROUND VIDEOS
========================= */
.mini-bg-video {
  position: absolute;
  width: 200px;
  height: 120px;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
  border-radius: 12px;
  pointer-events: none;
  animation: fadeFloat 7s infinite alternate;
}

@keyframes fadeFloat {
  0% { opacity: 0; transform: translateY(0px) translateX(0px) rotate(0deg); }
  50% { opacity: 0.14; transform: translateY(-10px) translateX(5px) rotate(2deg); }
  100% { opacity: 0; transform: translateY(0px) translateX(0px) rotate(0deg); }
}

/* =========================
   SHOWCASE SECTION (DARK / CINEMATIC)
========================= */
.showcase-section {
  position: relative;
  padding: 100px 10%;
  color: #fff;
  text-align: center;
  overflow: hidden;

  background: radial-gradient(circle at top left, #1e293b, #020617 70%);
}

/* Decals */
.showcase-decal { position: absolute; opacity: 0.15; pointer-events: none; z-index: 1; }
.decal-circle { width:120px; height:120px; border-radius:50%; background:#38bdf8; top:10%; left:-60px; animation: floatX 14s ease-in-out infinite alternate; }
.decal-triangle { width:0; height:0; border-left:60px solid transparent; border-right:60px solid transparent; border-bottom:100px solid #ec4899; top:70%; right:-70px; animation: floatY 18s ease-in-out infinite alternate; }
.decal-diamond { width:50px; height:50px; background:#00e5ff; transform: rotate(45deg); top:50%; left:80%; animation: floatXY 20s ease-in-out infinite alternate; }

/* Floating decal animations */
@keyframes floatX { 0% { transform: translateX(0);} 50% { transform: translateX(200px) translateY(-30px);} 100% { transform: translateX(0);} }
@keyframes floatY { 0% { transform: translateY(0);} 50% { transform: translateY(-150px) translateX(20px);} 100% { transform: translateY(0);} }
@keyframes floatXY { 0% { transform: translateX(0) translateY(0) rotate(45deg);} 50% { transform: translateX(-120px) translateY(80px) rotate(60deg);} 100% { transform: translateX(0) translateY(0) rotate(45deg);} }

/* Header */
.showcase-header { position: relative; z-index: 2; margin-bottom: 60px; }
.pink-title { color: #ec4899; }
.showcase-header h2 { font-size: 3.5rem; margin-bottom: 12px; }
.showcase-header p { color: #cbd5f5; font-size: 1.2rem; }

/* Slide animations */
.slide-in-left { opacity:0; transform: translateX(-50px); animation: slideInLeft 1s forwards; animation-delay:0.3s; }
.slide-in-right { opacity:0; transform: translateX(50px); animation: slideInRight 1s forwards; animation-delay:0.5s; }
@keyframes slideInLeft { to { opacity:1; transform: translateX(0); } }
@keyframes slideInRight { to { opacity:1; transform: translateX(0); } }

/* Videos */
.showcase-feature { margin-bottom: 50px; position: relative; z-index:2; }

.showcase-video {
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
  width:100%;
  max-width:700px;
  height:auto;
  transition: 0.3s;
}

.showcase-video.large { max-width:900px; }

.showcase-video:hover {
  transform: scale(1.05);
}

/* Grid */
.showcase-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top:40px;
  position:relative;
  z-index:2;
}

.showcase-grid video:nth-child(even) {
  transform: translateY(20px);
}

/* CTA */
.showcase-footer { margin-top:60px; position:relative; z-index:2; }

.showcase-btn {
  display:inline-block;
  padding:15px 28px;
  border-radius:30px;
  border: 2px solid #38bdf8;
  color: #38bdf8;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
  margin-left: 625px;
  width: 60%;
}

.showcase-btn:hover {
  background:#38bdf8;
  color:#020617;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(56,189,248,0.5);
}

.home-showcase-video {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
/* =========================
   ABOUT SECTION
========================= */
.home-about-section {
  position: relative;
  padding: 120px 10%;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  color: #111827;
}

/* BACKGROUND BLOBS */
.about-bg,
.about-bg2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 70%);
  filter: blur(80px);
  z-index: 0;
  animation: floatBlob 14s ease-in-out infinite;
}

.about-bg { top: -80px; left: -80px; }
.about-bg2 { bottom: -80px; right: -80px; animation-delay: 7s; }

@keyframes floatBlob {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(40px,50px); }
}

/* LAYOUT */
.home-about-container {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* IMAGE WRAPPER */
.about-image-wrapper {
  position: relative;
}

/* IMAGE */
.about-image img {
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* =========================
   QUOTE (POSITIONED ABOVE IMAGE)
========================= */
.about-quote {
  position: absolute;
  top: -40px;
  left: 20px;
  z-index: 3;
}

.quote-bubble {
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);

  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: bubbleIn 0.8s ease forwards, floatBubble 3s ease-in-out infinite;
  animation-delay: 0.5s, 1.5s;
}

.quote-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 30px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  transform: rotate(45deg);
}

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

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

/* =========================
   TEXT (UPGRADED STYLE)
========================= */
.about-content {
  max-width: 520px;
}

/* 🔥 MAIN TITLE (THIS IS THE UPGRADE) */
.about-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;

  background: linear-gradient(90deg, #0ea5e9, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 4px 20px rgba(0,0,0,0.15);

  opacity: 0;
  transform: translateY(20px);
  animation: titleFade 0.8s ease forwards;
}

/* underline */
.about-underline {
  display: block;
  width: 90px;
  height: 4px;
  margin: 12px 0 20px;
  background: linear-gradient(90deg, #0ea5e9, #ec4899);
  border-radius: 2px;

  animation: growLine 0.8s ease forwards;
}

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

@keyframes growLine {
  from { width:0; }
  to { width:90px; }
}

/* TEXT */
.about-text {
  margin: 14px 0;
  color: #374151;
  line-height: 1.6;
  font-size: 1.05rem;

  opacity: 0;
  transform: translateY(15px);
  animation: textFade 0.8s ease forwards;
  animation-delay: 0.3s;
}

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

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(45deg, #38bdf8, #ec4899);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(236,72,153,0.5);
}

/* =========================
   LOGOS
========================= */
.about-logos {
  margin-top: 90px;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 60px;
  animation: scrollLogos 25s linear infinite;
}

.logo-track img {
  height: 40px;
  opacity: 0.8;
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================
   SOCIALS + FACEBOOK FEED
===================== */

.socials-feed-section {
  position: relative;
  padding: 100px 10%;
  background: linear-gradient(135deg, #020617, #0a1128);
  color: #fff;
  text-align: center;
  overflow: visible;
}

.socials-feed-section::before {
  content: "";
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: radial-gradient(circle at 20% 30%, rgba(56,189,248,0.2), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(236,72,153,0.2), transparent 50%);
  z-index:0;
  animation: floatBg 20s linear infinite;
}

@keyframes floatBg {
  0% {background-position: 0% 0%, 100% 100%;}
  50% {background-position: 50% 50%, 50% 50%;}
  100% {background-position: 0% 0%, 100% 100%;}
}

/* Section Header */
.social-feed-header {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.social-feed-header h2.section-title {
  font-size: 3rem;
  color: #38bdf8;
  margin-bottom: 10px;
  animation: slideFadeIn 1s ease-out forwards;
  opacity:1;
}

.social-feed-header p {
  font-size:1.2rem;
  color: #cbd5f5;
  margin-bottom: 30px;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width:50px; height:50px;
  border-radius:50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-icon:hover {
  transform: scale(1.2);
  background: rgba(56,189,248,0.8);
}

/* FB Feed Card */
.fb-feed-container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index:2;
}

.fb-feed-card {
  background: rgba(10,18,40,0.95);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.fb-feed-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 60px rgba(0,0,0,0.5);
}

/* Card Header */
.fb-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: linear-gradient(90deg, #1877f2, #0a1128);
}

.fb-card-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.fb-card-header h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
}

/* Card Body */
.fb-card-body {
  padding: 10px 0;
}


/* INDIVIDUAL COLORS */
.instagram:hover { box-shadow: 0 0 30px rgba(236,72,153,0.6); }
.facebook:hover { box-shadow: 0 0 30px rgba(59,130,246,0.6); }
.youtube:hover { box-shadow: 0 0 30px rgba(255,0,0,0.6); }
.booking:hover { box-shadow: 0 0 30px rgba(56,189,248,0.6); }







/* =========================
   ABOUT HERO (IMAGE GRID)
========================= */
/* ========================= ABOUT HERO BACKGROUND TEXT ========================= */
.about-hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: rgb(24, 23, 23);
}

/* TOP TEXT: SONYA */
.about-hero::before {
  content: "SONYA";
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18vw;
  font-weight: 900;
  color: black;
  letter-spacing: -5px;
  z-index: 0;
  white-space: nowrap;
  filter: blur(10px);
}

/* BOTTOM TEXT: WHITE (outline style) */
.about-hero::after {
  content: "WHITE";
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18vw;
  font-weight: 900;
  color: Black;
  -webkit-text-stroke: 4px #000;
  letter-spacing: -5px;
  z-index: 0;
  white-space: nowrap;
    filter: blur(10px);

  
}

/* Make sure content sits ABOVE the text */
.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-images {
  margin-top: 20px;
}

.about-hero-content {
  z-index: 2;
  padding: 0 20px;
}

.about-hero-content h1 {
  font-size: 64px;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #00e5ff, #ff5a9e, #ffa156);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1s ease forwards;
}

.about-hero-content p {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease forwards;
}

.about-hero-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.about-hero-img {
  position: relative;
  width: 180px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-img img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.about-hero-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #00e5ff;
}

/* =========================
   ABOUT SECTION (LIGHT + PREMIUM)
========================= */
.about {
  background: #ffffff;
  color: #111;
  padding: 100px 20px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT SIDE */
.about-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* ACCENT LINE */
.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 10px;
  background: linear-gradient(90deg, #00e5ff, #ff5a9e);
  border-radius: 2px;
}

/* IMAGE / CARD SIDE */
.about-card {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.stat {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat h3 {
  font-size: 24px;
  color: #111;
}

.stat p {
  font-size: 14px;
  color: #777;
}

/* =========================
   SHOWCASE VIDEOS (FIXED)
========================= */
.showcase-videos {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 40px;
  text-align: center;
  position: relative;
}

.showcase-videos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #00e5ff, transparent);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.showcase-videos h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #111;
}

/* GRID FIX */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* VIDEO STYLING */
.showcase-grid iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.showcase-grid iframe:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #00e5ff;
}



/* =========================
   IMAGE LABEL (SHARED)
========================= */
.img-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
}




:root {
  --pink: #ff5a9e;
  --dark: #2b1408;
  --lightblue: #00e5ff;
}

/* =========================
   GALAXY SECTION WRAPPER
========================= */
.videos-galaxy {
  position: relative;
  padding: 60px 30px;
  overflow: hidden;
  color: white;

  background:
    radial-gradient(circle at 20% 30%, rgba(120, 80, 255, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 180, 255, 0.2), transparent 40%),
    linear-gradient(135deg, #050816, #0a0f2c 60%, #120a3a);
}

/* FLOATING ORBS */
.videos-galaxy::before,
.videos-galaxy::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: float 18s infinite alternate ease-in-out;
}

.videos-galaxy::before {
  background: #7b5cff;
  top: -100px;
  left: -100px;
}

.videos-galaxy::after {
  background: #00cfff;
  bottom: -120px;
  right: -120px;
}

@keyframes float {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(60px) translateX(40px); }
}

/* =========================
   HERO
========================= */
.videos-hero {
  text-align: center;
  margin-bottom: 10px; /* was 50px */
  padding-top: 20px;
}

.videos-hero h1 {
  font-size: 3.2rem;
  letter-spacing: 2px;

  background: linear-gradient(90deg, #ffffff, #aab3ff, #7b5cff);
  background-size: 200% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: titleGlow 6s ease infinite;

  margin-bottom: 10px;
}

/* subtitle upgrade */
.videos-hero p {
  font-size: 1rem;
  opacity: 0.85;
  letter-spacing: 1px;
}

.videos-hero::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);

  width: 400px;
  height: 120px;

  background: radial-gradient(circle, rgba(123,92,255,0.25), transparent 70%);
  filter: blur(30px);

  opacity: 0.6;
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 0.7; }
}

/* subtle animated shimmer */
@keyframes titleGlow {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}
/* =========================
   TOP ROW
========================= */
.video-top-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* FEATURED VIDEO */
.featured-video {
  flex: 1.2;
  max-width: 520px;
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 25px rgba(123,92,255,0.4);
}

.featured-video img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.featured-video:hover img {
  transform: scale(1.05);
}

/* =========================
   FILTERS (GLASS STYLE)
========================= */
.video-filters {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-category {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.video-category:hover {
  transform: translateX(5px);
  background: rgba(255,255,255,0.1);
}

.video-category.active {
  background: linear-gradient(90deg, #7b5cff, #00cfff);
  border: none;
}

/* =========================
   GRID
========================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);

  transition: all 0.3s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.5),
    0 0 15px rgba(0, 200, 255, 0.2);
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.7),
    0 0 25px rgba(123,92,255,0.6);
}

.video-card img {
  width: 100%;
  display: block;
}

/* TITLE */
.video-card h3 {
  padding: 12px;
  text-align: center;
  font-weight: 500;
}

/* =========================
   PLAY BUTTON
========================= */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 16px 20px;
  font-size: 22px;
  transition: 0.3s;
}

.video-card:hover .play-btn,
.featured-video:hover .play-btn {
  background: linear-gradient(90deg, #7b5cff, #00cfff);
  transform: translate(-50%, -50%) scale(1.1);
}

/* =========================
   MODAL (UPGRADED)
========================= */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, rgba(10,10,30,0.95), black);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  width: 80%;
  max-width: 900px;
  position: relative;
}

.modal-content iframe {
  width: 100%;
  height: 500px;
  border-radius: 14px;
}

/* CLOSE BUTTON */
.close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 28px;
  background: rgba(255,255,255,0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  background: linear-gradient(90deg, #7b5cff, #00cfff);
}

/* =========================
   BUBBLE FILTER SYSTEM
========================= */
.bubble-filter-system {
  position: relative;
  width: 100%;
  height: 340px;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-wrap: wrap;
  gap: 35px;

  margin: 60px auto;
  text-align: center;
}

/* BUBBLE BASE */
/* =========================
   BUBBLE BASE (UPGRADED TYPOGRAPHY)
========================= */
.bubble {
  width: 135px;
  height: 135px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  user-select: none;

  position: relative;

  color: white;

  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), rgba(255,255,255,0.05));

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.12),
    0 12px 30px rgba(0,0,0,0.6),
    0 0 20px rgba(123,92,255,0.25);

  transition: all 0.35s ease;
  animation: floatBubble 6s ease-in-out infinite;
}


/* TEXT INSIDE BUBBLE (THIS IS THE BIG UPGRADE) */
.bubble span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  text-align: center;
  line-height: 1.2;

  padding: 10px;

  /* premium gradient text */
  background: linear-gradient(90deg, #ffffff, #aab3ff, #7b5cff);
  background-size: 200% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: textShimmer 4s linear infinite;

  text-shadow: 0 0 12px rgba(123,92,255,0.25);
}

/* SHIMMER EFFECT */
@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* FLOAT VARIATION */
.bubble:nth-child(2) { animation-delay: 1s; }
.bubble:nth-child(3) { animation-delay: 2s; }
.bubble:nth-child(4) { animation-delay: 3s; }
.bubble:nth-child(5) { animation-delay: 4s; }
.bubble:nth-child(6) { animation-delay: 5s; }

/* FLOATING MOTION */
@keyframes floatBubble {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* HOVER EFFECT */
.bubble:hover {
  transform: scale(1.15);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.7),
    0 0 25px rgba(0,200,255,0.7),
    inset 0 0 25px rgba(255,255,255,0.25);
}

/* ACTIVE (SELECTED) */
.bubble.active {
  background: radial-gradient(circle, #7b5cff, #00cfff);
  transform: scale(1.2);

  box-shadow:
    0 0 35px rgba(123,92,255,0.9),
    0 0 60px rgba(0,200,255,0.6);

  animation: pulse 2s infinite;
}

/* PULSE EFFECT */
@keyframes pulse {
  0% { box-shadow: 0 0 25px rgba(123,92,255,0.6); }
  50% { box-shadow: 0 0 45px rgba(0,200,255,0.9); }
  100% { box-shadow: 0 0 25px rgba(123,92,255,0.6); }
}







/* =========================
   TOUR HERO (UPGRADED)
========================= */
/* =========================
   GLOBAL TOUR WRAPPER
========================= */
.tour-universe {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 80, 170, 0.18), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(255, 0, 120, 0.12), transparent 50%),
    linear-gradient(180deg, #0b0b10, #141418);
  color: white;
}

/* =========================
   HERO PORTAL
========================= */
.tour-portal {
  text-align: center;
  padding: 90px 20px 60px;
}

.tour-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 2px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 15px;
}

.tour-portal h1 {
  font-size: 4rem;
  margin: 0;

  background: linear-gradient(90deg,#fff,#ff5aa5,#ff0077);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tour-portal p {
  opacity: 0.8;
  margin-top: 10px;
}

.portal-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  border-radius: 30px;

  background: linear-gradient(135deg,#ff5aa5,#ff0077);
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   FILTER BAR
========================= */
.tour-filter-bar {
  display: flex;
  justify-content: space-between;
  padding: 25px 50px;
  align-items: center;
}

#sortSelect {
  appearance: none; /* removes default browser styling */
  -webkit-appearance: none;
  -moz-appearance: none;

  background: linear-gradient(135deg, #1e1e2f, #2a2a40);
  color: #ffffff;

  padding: 10px 40px 10px 14px;
  font-size: 14px;
  border-radius: 8px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  cursor: pointer;
  outline: none;

  transition: all 0.25s ease;
}

#sortSelect option {
  background-color: #ffffff;
  color: #000000;
}

/* Hover */
#sortSelect:hover {
  border-color: #a855f7; /* purple accent */
}

/* Focus (when clicked) */
#sortSelect:focus {
  border-color: #ec4899; /* pink accent */
  box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.25);
}

/* Custom arrow */
#sortSelect {
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5H5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.sort-wrapper {
  display: inline-block;
  position: relative;
}

.tour-btn {
  padding: 10px 16px;
  border-radius: 30px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
}

.tour-btn.active {
  background: linear-gradient(135deg,#ff5aa5,#ff0077);
  border: none;
}


/* =========================
   MAP PANEL
========================= */
.map-panel {
  padding: 0 50px;
}

#map {
  height: 400px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* =========================
   GRID (VERTICAL FLOW)
========================= */
.tour-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 50px 80px;
}

/* =========================
   TOUR CARD (CLEAN PREMIUM)
========================= */
.tour-card {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 22px;
  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);

  transition: 0.3s;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* date */
.tour-date {
  width: 70px;
  text-align: center;

  background: linear-gradient(135deg,#ff5aa5,#ff0077);
  border-radius: 12px;
  padding: 10px;
}

/* info */
.tour-info h3 {
  margin: 0;
}

.tour-info p {
  opacity: 0.7;
}

/* ticket */
.ticket-btn {
  padding: 10px 16px;
  border-radius: 10px;

  background: linear-gradient(135deg,#ff5aa5,#ff0077);
  color: white;
  text-decoration: none;
}

.ticket-btn.disabled {
  background: #333;
  color: #888;
}

/* =========================
   GLOBAL BACKGROUND
========================= */

body {
  margin: 0;
  font-family: sans-serif;
  background: #0a0612;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    radial-gradient(circle at 20% 20%, rgba(255,79,216,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(123,97,255,0.15), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(10,0,20,1), #0a0612 70%);

  animation: bgMove 18s ease-in-out infinite;
}

@keyframes bgMove {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* =========================
   LOGO GRID (FULL SCREEN FOCUS)
========================= */

.shows-stage {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.show-tabs {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
  justify-content: center;
}

.show-tab {
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: 0.4s;
}

.show-tab img {
  width: 220px;
  height: auto;
  border-radius: 18px;
  transition: 0.4s;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.show-tab span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.show-tab:hover img {
  transform: translateY(-10px) scale(1.05);
}

.show-tab.active img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 30px rgba(255,79,216,0.5));
}

/* =========================
   MODAL SHOW PANEL
========================= */

.show-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}

.show-modal.show {
  opacity: 1;
  pointer-events: all;
}

.modal-inner {
  width: 80%;
  max-width: 900px;
  padding: 40px;
  border-radius: 20px;

  background: rgba(20,10,35,0.9);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: white;

  transform: scale(0.9);
  animation: pop 0.4s forwards;
}

@keyframes pop {
  to { transform: scale(1); }
}

.modal-inner h2 {
  background: linear-gradient(90deg,#ff4fd8,#7b61ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-inner p {
  color: rgba(255,255,255,0.7);
}

/* VIDEO */
#mainVideo {
  width: 100%;
  height: 420px;
  margin-top: 20px;
  border-radius: 14px;
}

/* THUMBS */
.video-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.thumb img {
  width: 110px;
  border-radius: 10px;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
}

.thumb.active img {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid #ff4fd8;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* CTA */
.show-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg,#ff4fd8,#7b61ff);
  color: white;
  text-decoration: none;
}









/* =========================
   CONTACT PAGE — LIGHT PREMIUM + ANIMATED COLOR BACKGROUND
========================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f5f7;
}

/* MAIN SECTION */
.contact-section {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 20px;

  overflow: hidden;
}

/* LIGHT BASE BACKGROUND */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: linear-gradient(180deg, #f7f8fb, #eef1f6);
}

/* ANIMATED COLOR GLOW LAYER */
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(circle at 20% 30%, rgba(255, 90, 180, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(80, 140, 255, 0.25), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 170, 90, 0.18), transparent 50%);

  animation: floatGlow 12s ease-in-out infinite;
}

/* soft moving haze */
.contact-bg2 {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 60%);

  animation: drift 18s linear infinite;
}

/* WRAPPER */
.contact-wrapper {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  max-width: 1100px;
  width: 100%;

  animation: fadeUp 0.9s ease forwards;
}

/* LEFT INFO */
.contact-info h1 {
  font-size: 3rem;
  margin-bottom: 15px;

  color: #111827;
}

.contact-info p {
  color: #555;
  line-height: 1.6;
}

/* highlights */
.contact-highlights {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  background: white;
  padding: 12px 16px;
  border-radius: 12px;

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  transition: 0.3s;
}

.highlight:hover {
  transform: translateX(5px);
}

/* FORM CARD */
.contact-card {
  background: white;

  border-radius: 20px;
  padding: 40px;

  box-shadow: 0 25px 60px rgba(0,0,0,0.1);

  border: 1px solid rgba(0,0,0,0.05);
}

/* FORM */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 15px;
}

/* INPUTS */
input, textarea {
  width: 100%;
  padding: 14px;

  border-radius: 12px;
  border: 1px solid #ddd;

  outline: none;

  transition: 0.25s;
}

input:focus, textarea:focus {
  border-color: #7b61ff;
  box-shadow: 0 0 0 3px rgba(123,97,255,0.15);
}

/* RADIO */
.form-group label {
  font-weight: 600;
  color: #333;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-option {
  background: #f8f9fb;
  padding: 10px 14px;
  border-radius: 999px;

  border: 1px solid #e5e7eb;

  cursor: pointer;
  transition: 0.25s;
}

.radio-option:hover {
  border-color: #ff5aa0;
}

/* TEXTAREA */
textarea {
  min-height: 140px;
  resize: none;
}

/* =========================
   FIXED BUTTON (CLEAN + PREMIUM)
========================= */

button {
  padding: 12px 18px; /* reduced from bulky feel */
  border: none;

  border-radius: 999px;

  background: linear-gradient(90deg, #ff5aa0, #7b61ff, #ffb86b);
  color: white;

  font-weight: 600;
  font-size: 0.95rem; /* FIXED */
  letter-spacing: 0.3px;

  cursor: pointer;

  transition: 0.25s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(123,97,255,0.25);
}

/* optional active press feel */
button:active {
  transform: translateY(0px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* STATUS */
#formStatus {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* ANIMATIONS */
@keyframes floatGlow {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05) translateY(-15px); }
}

@keyframes drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(30px); }
  100% { transform: translateX(0); }
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}



/* =========================
   BODY MATCH
========================= */
body {
  background:#f7f7f7;
}
/* =========================
   RESPONSIVE
========================= */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(15,15,15,0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }


}


/* =========================
   FOOTER (SONYA PREMIUM STYLE)
========================= */

.site-footer {
  position: relative;
  padding: 90px 10% 40px;
  overflow: hidden;

  background: radial-gradient(circle at top, #0b1020, #050814 60%, #03040a);
  color: #e5e7eb;
}

/* animated glow background */
.site-footer::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;

  background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 60%);
  filter: blur(100px);
  opacity: 0.4;

  animation: footerGlow 18s ease-in-out infinite;
}

@keyframes footerGlow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(40px,-30px); }
}

/* =========================
   LAYOUT
========================= */

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  flex-wrap: wrap;
  gap: 60px;

  max-width: 1200px;
  margin: auto;

  position: relative;
  z-index: 2;
}

/* =========================
   BRAND
========================= */

.footer-brand {
  flex: 1.5;
}

.footer-brand h3 {
  font-size: 2rem;
  font-weight: 600;

  background: linear-gradient(90deg, #38bdf8, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 10px;
}

.footer-brand p {
  color: #9ca3af;
  line-height: 1.6;
  max-width: 320px;
}

/* =========================
   LINKS CENTER BLOCK
========================= */

.footer-links {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 60px;
  text-align: center;
}

/* EACH COLUMN */
.footer-column h4 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #cbd5f5;
  margin-bottom: 15px;
}

/* LINKS */
.footer-column a {
  display: block;

  color: #9ca3af;
  text-decoration: none;

  font-size: 0.95rem;
  margin-bottom: 10px;

  transition: 0.25s ease;
}

.footer-column a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* =========================
   BACK TO TOP
========================= */

.footer-logo-top {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.footer-logo-top a {
  color: #38bdf8;
  text-decoration: none;
  font-size: 0.95rem;

  transition: 0.3s ease;
}

.footer-logo-top a:hover {
  color: #ec4899;
  transform: translateY(-2px);
}

/* =========================
   BOTTOM BAR
========================= */

.footer-bottom {
  margin-top: 40px;
  text-align: center;

  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;

  font-size: 0.85rem;
  color: #6b7280;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand p {
    margin: auto;
  }
}