/* ==================== CSS VARIABLES ==================== */
:root {
  --primary-red: #E63946;
  --primary-gold: #FFD700;
  --dark-bg: #0A0A0A;
  --dark-secondary: #1A1A1D;
  --dark-tertiary: #2D2D30;
  --light-text: #F1F1F1;
  --gray-text: #aaa;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--light-text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ==================== PRELOADER ==================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 80px;
  height: 80px;
  border: 5px solid rgba(255, 215, 0, 0.1);
  border-top: 5px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  margin-top: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  animation: pulse 1.5s ease-in-out infinite;
  text-align: center;
}

.loader-subtext {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 5px;
  color: var(--gray-text);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(15px);
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 30px rgba(230, 57, 70, 0.15);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 6px 40px rgba(230, 57, 70, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 55px;
  width: auto;
  border-radius: 10px;
  background: var(--white);
  padding: 6px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

.logo-wrapper:hover .logo-img {
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: 1px;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--primary-gold);
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
  border-radius: 10px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

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

.nav-links a.active {
  color: var(--primary-gold);
}

.nav-links a.active::before {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary-red), #C1121F);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.6);
}

.nav-cta::before {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 10001;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navbar */
@media (max-width: 968px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    width: 280px;
    height: 100vh;
    padding: 100px 30px 30px;
    gap: 25px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(0,0,0,0.7);
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .logo-img {
    height: 45px;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1D 50%, #0A0A0A 100%);
  padding: 140px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
  z-index: 1;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 50%;
  animation: float-particle 10s infinite;
  opacity: 0.4;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(255, 215, 0, 0.15));
  border: 2px solid rgba(255, 215, 0, 0.4);
  padding: 12px 30px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-gold);
  letter-spacing: 1.5px;
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

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

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 9vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-gold), var(--primary-red));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.1;
  animation: gradientShift 6s ease infinite;
  text-shadow: 0 10px 40px rgba(230, 57, 70, 0.3);
}

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

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: var(--light-text);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--primary-gold);
  margin-bottom: 45px;
  font-style: italic;
  font-weight: 500;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), #C1121F);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  color: var(--gray-text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-gold);
  border-radius: 50px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-gold);
  border-radius: 50%;
  animation: scroll-down 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60 {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll-down {
  0% {
    opacity: 0;
    top: 10px;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

/* ==================== SECTION COMMON STYLES ==================== */
.section {
  padding: 100px 20px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title .divider {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
  margin: 0 auto 25px;
  border-radius: 10px;
}

.section-title p {
  color: var(--gray-text);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.brand-subline {
  font-size: 0.95rem;
  color: var(--gray-text);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--dark-bg) 100%);
}

/* Main layout: Left images + Right text */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
}

/* LEFT SIDE – IMAGE GRID */
.about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.about-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4 / 5; /* thoda lamba, lekin natural */
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-image-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.about-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.about-image-item:hover img {
  transform: scale(1.08);
}

/* Centre badge */
.about-image-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #E63946;
  color: var(--white);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.75);
  white-space: nowrap;
  z-index: 5;
}

/* RIGHT SIDE – TEXT */
.about-text {
  max-width: 650px;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--primary-gold);
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #e2e2e2;
  margin-bottom: 16px;
}

.about-text p strong {
  color: var(--primary-gold);
  font-weight: 700;
}

/* BOTTOM – 3 FEATURE CARDS */
.about-features {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.feature-box {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  border-radius: 16px;
  padding: 14px 14px;
  border: 1px solid rgba(255, 215, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-3px);
  border-color: var(--primary-gold);
  box-shadow: 0 16px 45px rgba(230, 57, 70, 0.5);
}

.feature-box .icon {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--primary-gold);
  margin-bottom: 2px;
}

.feature-box h4 {
  color: var(--primary-gold);
  font-size: 1rem;
  margin-bottom: 2px;
  font-weight: 700;
}

.feature-box p {
  color: var(--gray-text);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.45;
}

/* ABOUT – RESPONSIVE */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
  }

  .about-image-grid {
    max-width: 520px;
    margin: 0 auto;
  }

  .about-text {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-content {
    gap: 32px;
  }

  .about-image-badge {
    font-size: 0.95rem;
    padding: 10px 20px;
    top: auto;
    bottom: 12px;
    transform: translate(-50%, 0);
  }

  .about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 70px 20px;
  }

  .about-image-grid {
    max-width: 460px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}



/* ==================== SERVICES SECTION ==================== */
.services-section {
  background: var(--dark-bg);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Tablet view: 2 columns */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile view: 1 column */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  padding: 32px 24px;              /* pehle 45px 35px tha – ab kam */
  border-radius: 20px;             /* thoda subtle */
  text-align: center;
  border: 1px solid transparent;   /* border halka */
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 215, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.service-icon {
  font-size: 3.2rem;          /* size kam */
  margin-bottom: 18px;        /* gap kam */
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
  color: var(--primary-gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--gray-text);
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio-section {
  background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.portfolio-filters {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  padding: 14px 35px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-red), #C1121F);
  color: var(--white);
  border-color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.portfolio-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.4);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.15);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  padding: 30px 25px;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.portfolio-overlay p {
  font-size: 1rem;
  color: var(--primary-gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  background: rgba(230, 57, 70, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--primary-red);
  transform: rotate(90deg);
}

/* ==================== VIDEO GALLERY SECTION ==================== */
.video-gallery-section {
  background: var(--dark-bg);
}

.video-gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.video-filters {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.video-filter-btn {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  padding: 14px 35px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

.video-filter-btn:hover,
.video-filter-btn.active {
  background: linear-gradient(135deg, var(--primary-red), #C1121F);
  color: var(--white);
  border-color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.video-item {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.video-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(230, 57, 70, 0.4);
  border-color: var(--primary-gold);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 25px;
  background: rgba(0, 0, 0, 0.3);
}

.video-info h4 {
  color: var(--light-text);
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.video-info p {
  color: var(--gray-text);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
  background: var(--dark-bg);
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  padding: 28px 20px;          /* kam padding */
  border-radius: 18px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(255, 215, 0, 0.25);
}

.pricing-card.featured {
  border-color: var(--primary-gold);
  transform: scale(1.02);
}

.pricing-badge {
  background: linear-gradient(135deg, var(--primary-red), #C1121F);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary-gold);
  margin-bottom: 8px;
  font-weight: 800;
}

.pricing-price {
  font-size: 2.3rem;         /* pehle 3rem tha */
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.pricing-duration {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;                 /* pehle 12px */
  color: #ddd;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary-gold);
  font-weight: 900;
  font-size: 1rem;
}
/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.swiper {
  padding: 20px 0 60px;
}

.testimonial-card {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  padding: 45px 40px;
  border-radius: 25px;
  border-left: 5px solid var(--primary-red);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.4);
}

.testimonial-stars {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #ddd;
  margin-bottom: 30px;
  font-style: italic;
  min-height: 100px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-avatar {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.testimonial-info p {
  font-size: 0.95rem;
  color: var(--gray-text);
}

.swiper-pagination-bullet {
  background: var(--primary-gold);
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-red);
}

/* ==================== INSTAGRAM SECTION ==================== */
.instagram-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.instagram-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  border-radius: 25px;
  margin-bottom: 50px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  flex-wrap: wrap;
}

.insta-profile {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}

.insta-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E1306C, #C13584, #833AB4, #5B51D8);
  padding: 4px;
  flex-shrink: 0;
}

.insta-info h3 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.insta-info p {
  color: var(--gray-text);
  line-height: 1.8;
  font-size: 1rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.insta-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.insta-post:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.4);
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-post:hover img {
  transform: scale(1.1);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(230, 57, 70, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-post:hover .insta-overlay {
  opacity: 1;
}

.insta-stats {
  display: flex;
  gap: 25px;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 768px) {
  .instagram-header {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .insta-profile {
    flex-direction: column;
    text-align: center;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .insta-avatar {
    width: 80px;
    height: 80px;
  }
}

/* ==================== TEAM SECTION ==================== */
.team-section {
  background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

.team-member {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.team-member:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.team-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transition: bottom 0.4s ease;
}

.team-member:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.team-social a:hover {
  transform: scale(1.15);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.4rem;
  color: var(--light-text);
  margin-bottom: 8px;
  font-weight: 700;
}

.team-role {
  color: var(--primary-gold);
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.team-desc {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
  background: var(--dark-bg);
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.blog-card {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.blog-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-red), #C1121F);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 30px 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--gray-text);
}

.blog-content h3 {
  font-size: 1.4rem;
  color: var(--light-text);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-content p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-read-more {
  color: var(--primary-gold);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.blog-read-more:hover {
  transform: translateX(5px);
}

/* ==================== AWARDS SECTION ==================== */
.awards-section {
  background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.award-card {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.award-card:hover {
  transform: translateY(-10px) rotateY(5deg);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.award-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.award-card h3 {
  font-size: 1.3rem;
  color: var(--primary-gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.award-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: var(--dark-bg);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--light-text);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-gold);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: var(--gray-text);
  line-height: 1.8;
  font-size: 1rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-box {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  padding: 50px 40px;
  border-radius: 25px;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.contact-info-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-gold);
  font-size: 2.2rem;
  margin-bottom: 35px;
  text-align: center;
  font-weight: 800;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.contact-details strong {
  color: var(--primary-gold);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-details a,
.contact-details p {
  color: var(--light-text);
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1.7;
  transition: color 0.3s ease;
  display: block;
}

.contact-details a:hover {
  color: var(--primary-gold);
}

.contact-form-box {
  background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
  padding: 50px 40px;
  border-radius: 25px;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.contact-form-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-gold);
  font-size: 2.2rem;
  margin-bottom: 35px;
  text-align: center;
  font-weight: 800;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--light-text);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: var(--light-text);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

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

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary-red), #C1121F);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
}

.map-container {
  grid-column: 1 / -1;
  border-radius: 25px;
  overflow: hidden;
  height: 450px;
  border: 3px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark-bg);
  padding: 60px 20px 30px;
  border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--gray-text);
  font-size: 1.1rem;
  margin-bottom: 35px;
  font-style: italic;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.5);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  margin: 40px 0;
}

.footer-bottom {
  color: #888;
  font-size: 0.95rem;
}

.footer-bottom strong {
  color: var(--primary-gold);
}

/* ==================== FLOATING BUTTONS ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
}

.whatsapp-float svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  }
  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.9), 0 0 0 15px rgba(37, 211, 102, 0.1);
  }
}

.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-red), #C1121F);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
  z-index: 9999;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.7);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 95px;
    right: 25px;
  }
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 640px) {
  .hero {
    padding: 120px 20px 60px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .section {
    padding: 70px 20px;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

section[id] {
  scroll-margin-top: 90px; /* approx navbar height */
}



/* ------------- Video cards clickable ------------- */
.video-gallery-section .video-wrapper {
  position: relative;
  cursor: pointer;
}

/* iframe ko non‑clickable, taaki wrapper pe click pakde */
.video-gallery-section .video-wrapper iframe {
  pointer-events: none;
}

/* ------------- Fullscreen video lightbox ------------- */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.video-lightbox-inner {
  position: relative;
  width: min(90vw, 1200px);
  aspect-ratio: 16 / 9;
  transform: scale(0.9);
  transition: transform 0.25s ease;
}

.video-lightbox.active .video-lightbox-inner {
  transform: scale(1);
}

.video-lightbox-frame {
  width: 100%;
  height: 100%;
}

.video-lightbox-frame iframe {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

/* Close button */
.video-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}



.video-quality-tip {
  margin-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}
.video-quality-tip strong {
  color: #ffd54a;
}