/* ================================================
   BHARAT FIITNESS DEN - Complete Stylesheet
   ================================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --brand-orange: #FF6B00;
  --brand-orange-dark: #E55A00;
  --brand-dark: #0A0A0A;
  --brand-darker: #050505;
  --brand-gray: #1A1A1A;
  --brand-light-gray: #2A2A2A;
  --brand-gold: #FFD700;
  --brand-red: #FF3131;
  --font-oswald: 'Oswald', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-bebas: 'Bebas Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-inter);
  background-color: var(--brand-darker);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--brand-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-orange);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-orange-dark);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.6);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%) translateX(-50%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }
  50% {
    transform: translateY(0) translateX(-50%);
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

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

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}
.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}
.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}
.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}
.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* --- Intersection Observer Animation Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, #FF6B00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-red {
  background: linear-gradient(135deg, #FF3131, #FF6B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Glass Effect --- */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Shimmer Effect --- */
.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* --- Container --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  display: none;
  background-color: var(--brand-orange);
  color: white;
  font-size: 14px;
  padding: 6px 0;
  position: relative;
  z-index: 50;
}

@media (min-width: 1024px) {
  .top-bar {
    display: block;
  }
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-left a,
.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.top-bar-left a:hover {
  color: #000;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-right span {
  color: rgba(255,255,255,0.9);
}

.top-bar-right a {
  transition: color 0.3s;
}

.top-bar-right a:hover {
  color: #000;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(to bottom right, var(--brand-orange), var(--brand-gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bebas);
  font-size: 20px;
  color: black;
  font-weight: bold;
  transition: transform 0.3s;
}

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

.logo-text .name {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-text .subtitle {
  font-family: var(--font-oswald);
  color: var(--brand-orange);
  font-size: 12px;
  letter-spacing: 0.3em;
  line-height: 1.1;
}

/* Desktop Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: white;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--brand-orange);
  transition: width 0.3s;
}

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

.nav-join-btn {
  margin-left: 16px;
  padding: 10px 24px;
  background: linear-gradient(to right, var(--brand-orange), var(--brand-orange-dark));
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  display: inline-block;
}

.nav-join-btn:hover {
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
  transform: scale(1.05);
}

/* Mobile Toggle */
.mobile-toggle {
  display: block;
  padding: 8px;
  color: white;
  transition: color 0.3s;
}

.mobile-toggle:hover {
  color: var(--brand-orange);
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-inner {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
}

.mobile-menu-inner a.mobile-link {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}

.mobile-menu-inner a.mobile-link:hover {
  color: var(--brand-orange);
  padding-left: 12px;
}

.mobile-join-btn {
  display: block;
  margin-top: 16px;
  text-align: center;
  padding: 12px 24px;
  background: linear-gradient(to right, var(--brand-orange), var(--brand-orange-dark));
  color: white;
  font-weight: 600;
  border-radius: 8px;
}

.mobile-menu-contact {
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, black, rgba(0,0,0,0.85), rgba(0,0,0,0.5));
}

.hero-bg .overlay-tb {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, black, transparent, rgba(0,0,0,0.3));
}

.hero-bg .overlay-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33%;
  background: linear-gradient(to top, rgba(255,107,0,0.1), transparent);
}

.hero-deco-1 {
  position: absolute;
  top: 25%;
  right: 40px;
  width: 288px;
  height: 288px;
  background: rgba(255,107,0,0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-deco-2 {
  position: absolute;
  bottom: 25%;
  left: 40px;
  width: 384px;
  height: 384px;
  background: rgba(255,107,0,0.03);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 128px 16px 80px;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 128px 24px 80px;
  }
}

.hero-inner {
  max-width: 768px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s ease;
}

.hero-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge span:last-child {
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Hero Heading */
.hero h1 {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s ease 0.2s;
}

.hero h1.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 span {
  display: block;
  font-family: var(--font-oswald);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: white;
  font-size: 48px;
}

@media (min-width: 640px) {
  .hero h1 span {
    font-size: 60px;
  }
}

@media (min-width: 768px) {
  .hero h1 span {
    font-size: 72px;
  }
}

@media (min-width: 1024px) {
  .hero h1 span {
    font-size: 96px;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  margin-top: 32px;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 576px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s ease 0.4s;
}

.hero-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 20px;
  }
}

/* Hero CTA Buttons */
.hero-ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s ease 0.5s;
}

.hero-ctas.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(to right, var(--brand-orange), var(--brand-orange-dark));
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s;
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(255,107,0,0.3);
  transform: scale(1.05);
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border: 2px solid rgba(255,255,255,0.2);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: rgba(255,107,0,0.5);
  background: rgba(255,107,0,0.1);
}

/* Hero Stats */
.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 448px;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s ease 0.7s;
}

.hero-stats.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-stat {
  text-align: center;
}

.hero-stat:nth-child(2) {
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--brand-orange);
}

.hero-stat-value {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 30px;
  color: white;
}

@media (min-width: 640px) {
  .hero-stat-value {
    font-size: 36px;
  }
}

.hero-stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin-top: 4px;
}

@media (min-width: 640px) {
  .hero-stat-label {
    font-size: 14px;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 1s infinite;
}

.scroll-indicator span {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator svg {
  color: var(--brand-orange);
}

/* Side Social */
.hero-side-social {
  display: none;
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-side-social {
    display: block;
  }
}

.hero-side-social-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-side-social .line-top {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(255,107,0,0.5));
}

.hero-side-social .line-bottom {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,107,0,0.5), transparent);
}

.hero-side-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.hero-side-social a:hover {
  color: var(--brand-orange);
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .about {
    padding: 128px 0;
  }
}

.about-bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand-dark);
}

.about-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,107,0,0.3), transparent);
}

.about-deco {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 320px;
  height: 320px;
  background: rgba(255,107,0,0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.about-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* About Image */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 16px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-rating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(to bottom right, var(--brand-orange), var(--brand-orange-dark));
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  text-align: center;
}

.about-rating-card .rating-number {
  font-family: var(--font-bebas);
  font-size: 48px;
  color: white;
}

.about-rating-card .stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 4px;
}

.about-rating-card .stars svg {
  width: 16px;
  height: 16px;
  color: var(--brand-gold);
  fill: var(--brand-gold);
}

.about-rating-card .rating-label {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 500;
}

.about-image-border {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255,107,0,0.2);
  border-radius: 16px;
  z-index: -1;
}

/* About Content */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label .line {
  width: 40px;
  height: 1px;
  background-color: var(--brand-orange);
}

.section-label span {
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-label-center {
  justify-content: center;
}

.section-heading {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 36px;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .section-heading {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .section-heading.xl {
    font-size: 60px;
  }
}

.about-text {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text-secondary {
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-text .highlight {
  color: var(--brand-orange);
  font-weight: 600;
}

.about-text-secondary .highlight {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(255,107,0,0.3);
  background: rgba(255,107,0,0.05);
}

.feature-card .icon {
  color: var(--brand-orange);
  margin-bottom: 12px;
  transition: transform 0.3s;
}

.feature-card:hover .icon {
  transform: scale(1.1);
}

.feature-card h4 {
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.feature-card p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.6;
}

/* ================================================
   STATS BAND
   ================================================ */
.stats-band {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

.stats-band-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--brand-orange), var(--brand-orange-dark), var(--brand-orange));
}

.stats-band-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMwMDAiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTAgMGg0MHY0MEgweiIvPjwvZz48L2c+PC9zdmc+");
  opacity: 0.3;
}

.stats-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-emoji {
  font-size: 30px;
  margin-bottom: 8px;
}

.stat-value {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 36px;
  color: white;
  margin-bottom: 4px;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 48px;
  }
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .services {
    padding: 128px 0;
  }
}

.services-bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand-darker);
}

.services .top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,107,0,0.2), transparent);
}

.services-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(255,107,0,0.03);
  border-radius: 50%;
  filter: blur(48px);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--brand-gray);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(48px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: rgba(255,107,0,0.3);
}

.service-card-image {
  position: relative;
  height: 208px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.service-card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brand-gray), rgba(26,26,26,0.3), transparent);
}

.service-card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.service-card:hover .service-card-body h3 {
  color: var(--brand-orange);
}

.service-card-body p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.6;
}

.service-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--brand-orange), var(--brand-gold));
  transition: width 0.5s;
}

.service-card:hover .service-card-accent {
  width: 100%;
}

/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */
.why-choose {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .why-choose {
    padding: 128px 0;
  }
}

.why-choose-bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand-dark);
}

.why-choose .top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,107,0,0.2), transparent);
}

.why-choose-bfd {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 200px;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

@media (min-width: 1280px) {
  .why-choose-bfd {
    display: block;
  }
}

.reasons-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(48px);
}

.reason-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.reason-card:hover {
  border-color: rgba(255,107,0,0.2);
  background: rgba(255,107,0,0.03);
}

.reason-card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 36px;
  color: rgba(255,255,255,0.04);
  transition: color 0.3s;
}

.reason-card:hover .reason-card-number {
  color: rgba(255,107,0,0.1);
}

.reason-card-emoji {
  font-size: 30px;
  margin-bottom: 16px;
}

.reason-card h3 {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.reason-card:hover h3 {
  color: var(--brand-orange);
}

.reason-card p {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.6;
}

.reason-card-line {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, transparent, transparent);
  transition: all 0.5s;
}

.reason-card:hover .reason-card-line {
  background: linear-gradient(to right, transparent, rgba(255,107,0,0.3), transparent);
}

/* ================================================
   GALLERY SECTION
   ================================================ */
.gallery {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .gallery {
    padding: 128px 0;
  }
}

.gallery-bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand-dark);
}

.gallery .top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,107,0,0.2), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.7s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.span-2 {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .gallery-item.span-2 {
    grid-column: span 2;
  }
  .gallery-item.span-2-row {
    grid-row: span 2;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.gallery-item .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: all 0.5s;
}

.gallery-item:hover .hover-overlay {
  background: rgba(0,0,0,0.4);
}

.gallery-item .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.5s;
}

.gallery-item:hover .label {
  transform: translateY(0);
}

.gallery-item .label p {
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.gallery-item .corner-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-orange);
  transition: width 0.5s;
}

.gallery-item:hover .corner-top {
  width: 100%;
}

.gallery-item .corner-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: var(--brand-orange);
  transition: height 0.5s 0.1s;
}

.gallery-item:hover .corner-left {
  height: 100%;
}

/* Instagram CTA */
.insta-cta {
  margin-top: 48px;
  text-align: center;
}

.insta-cta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

.insta-cta a:hover {
  color: white;
  border-color: rgba(255,107,0,0.4);
  background: rgba(255,107,0,0.05);
}

.insta-cta a svg {
  transition: color 0.3s;
}

.insta-cta a:hover svg {
  color: var(--brand-orange);
}

.insta-cta .followers {
  color: var(--brand-orange);
  font-weight: 600;
}

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .pricing {
    padding: 128px 0;
  }
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand-darker);
}

.pricing .top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,107,0,0.2), transparent);
}

.pricing-deco-1 {
  position: absolute;
  bottom: -128px;
  left: -128px;
  width: 256px;
  height: 256px;
  background: rgba(255,107,0,0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.pricing-deco-2 {
  position: absolute;
  top: -128px;
  right: -128px;
  width: 256px;
  height: 256px;
  background: rgba(255,107,0,0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.pricing-grid {
  display: grid;
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.pricing-card {
  position: relative;
  border-radius: 16px;
  background-color: var(--brand-gray);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.7s;
  opacity: 0;
  transform: translateY(48px);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  border-color: rgba(255,255,255,0.2);
}

.pricing-card.popular {
  background: linear-gradient(to bottom, rgba(255,107,0,0.2), var(--brand-gray));
  border: 2px solid rgba(255,107,0,0.5);
  transform: translateY(48px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255,107,0,0.1);
}

.pricing-card.popular.visible {
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(to right, var(--brand-orange), var(--brand-gold));
  color: black;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-card-body {
  padding: 32px;
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.plan-name {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
}

.plan-duration {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  margin-bottom: 24px;
}

.plan-price {
  margin-bottom: 32px;
}

.plan-price .rupee {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
}

.plan-price .amount {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 48px;
  color: white;
}

.plan-price .amount.gradient {
  background: linear-gradient(135deg, #FF6B00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-price .per {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  margin-top: 4px;
}

.plan-features {
  margin-bottom: 32px;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.plan-feature .check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,107,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-feature .check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--brand-orange);
}

.plan-feature span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.plan-feature.not-included {
  opacity: 0.4;
}

.plan-feature.not-included .check-icon {
  background: rgba(255,255,255,0.1);
}

.plan-feature.not-included .check-icon span {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
}

.plan-feature.not-included > span {
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s;
}

.plan-cta.primary {
  background: linear-gradient(to right, var(--brand-orange), var(--brand-orange-dark));
  color: white;
}

.plan-cta.primary:hover {
  box-shadow: 0 4px 20px rgba(255,107,0,0.3);
  transform: scale(1.05);
}

.plan-cta.secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
}

.plan-cta.secondary:hover {
  background: rgba(255,107,0,0.1);
  border-color: rgba(255,107,0,0.3);
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .testimonials {
    padding: 128px 0;
  }
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand-dark);
}

.testimonials .top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,107,0,0.2), transparent);
}

.testimonials-glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 384px;
  background: linear-gradient(to right, rgba(255,107,0,0.05), transparent, rgba(255,107,0,0.05));
}

.testimonial-card {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  background: rgba(26,26,26,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 32px;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 48px;
  }
}

.testimonial-quote-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  color: rgba(255,107,0,0.1);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--brand-gold);
  fill: var(--brand-gold);
}

.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  min-height: 100px;
}

@media (min-width: 640px) {
  .testimonial-text {
    font-size: 20px;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--brand-orange), var(--brand-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: 700;
  font-size: 20px;
}

.author-name {
  font-weight: 600;
  color: white;
  font-size: 18px;
}

.author-role {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.testimonial-nav button:hover {
  color: white;
  border-color: rgba(255,107,0,0.5);
  background: rgba(255,107,0,0.1);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  height: 6px;
  border-radius: 999px;
  transition: all 0.3s;
  background: rgba(255,255,255,0.2);
  width: 6px;
}

.testimonial-dot:hover {
  background: rgba(255,255,255,0.4);
}

.testimonial-dot.active {
  width: 32px;
  background: var(--brand-orange);
}

/* ================================================
   CTA BANNER SECTION
   ================================================ */
.cta-banner {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .cta-banner {
    padding: 128px 0;
  }
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-bg .overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.cta-banner-bg .overlay-orange {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,107,0,0.2), transparent);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-content {
    padding: 0 24px;
  }
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 24px;
}

.cta-badge span {
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cta-heading {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 36px;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .cta-heading {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .cta-heading {
    font-size: 72px;
  }
}

.cta-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  max-width: 672px;
  margin: 0 auto 40px;
}

@media (min-width: 640px) {
  .cta-subtitle {
    font-size: 20px;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(to right, var(--brand-orange), var(--brand-orange-dark));
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  transition: all 0.5s;
}

.cta-call-btn:hover {
  box-shadow: 0 10px 30px rgba(255,107,0,0.3);
  transform: scale(1.05);
}

.cta-enquiry-btn {
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  border: 2px solid rgba(255,255,255,0.2);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  transition: all 0.3s;
}

.cta-enquiry-btn:hover {
  border-color: rgba(255,107,0,0.5);
  background: rgba(255,107,0,0.1);
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .contact {
    padding: 128px 0;
  }
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand-darker);
}

.contact .top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,107,0,0.2), transparent);
}

.contact-deco {
  position: absolute;
  bottom: -160px;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(255,107,0,0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.contact-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 48px;
  }
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--brand-gray);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}

.contact-info-card:hover {
  border-color: rgba(255,107,0,0.2);
}

.contact-info-card .card-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,107,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.contact-info-card:hover .contact-icon-box {
  background: rgba(255,107,0,0.25);
}

.contact-icon-box svg {
  color: var(--brand-orange);
  width: 22px;
  height: 22px;
}

.contact-info-card h4 {
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.6;
}

.contact-info-card a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.3s;
  display: block;
}

.contact-info-card a:hover {
  color: var(--brand-orange);
}

.contact-info-card .small {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  margin-top: 4px;
}

.contact-info-card .hours-text {
  color: var(--brand-orange);
  font-weight: 600;
  font-size: 14px;
}

/* Social Links */
.contact-social {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

.social-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-gray);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.social-icon-btn:hover {
  color: var(--brand-orange);
  border-color: rgba(255,107,0,0.3);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--brand-gray);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 32px;
}

@media (min-width: 640px) {
  .contact-form-wrapper {
    padding: 40px;
  }
}

.contact-form-wrapper h3 {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin-bottom: 8px;
}

.contact-form-wrapper .form-subtitle {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: white;
  transition: all 0.3s;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus {
  border-color: rgba(255,107,0,0.5);
  background: rgba(255,255,255,0.08);
}

select.form-input {
  appearance: none;
  color: rgba(255,255,255,0.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form-input option {
  background: var(--brand-gray);
  color: white;
}

textarea.form-input {
  resize: none;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(to right, var(--brand-orange), var(--brand-orange-dark));
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  transition: all 0.3s;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}

.submit-btn:hover {
  box-shadow: 0 4px 20px rgba(255,107,0,0.3);
  transform: scale(1.02);
}

/* Success Message */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  text-align: center;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: #22c55e;
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin-bottom: 8px;
}

.form-success p {
  color: rgba(255,255,255,0.5);
}

/* Map */
.contact-map {
  margin-top: 64px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  position: relative;
  background-color: black;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 16px;
}

@media (min-width: 640px) {
  .footer-main {
    padding: 64px 24px;
  }
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* Footer Brand */
.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.footer-social a:hover {
  color: var(--brand-orange);
  border-color: rgba(255,107,0,0.3);
}

/* Footer Columns */
.footer-column h4 {
  font-family: var(--font-oswald);
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul a {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  transition: all 0.3s;
}

.footer-column ul a:hover {
  color: var(--brand-orange);
  padding-left: 4px;
}

.footer-column ul span {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.footer-contact-label {
  color: rgba(255,255,255,0.6) !important;
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-contact-value {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.footer-hours {
  color: var(--brand-orange) !important;
  font-weight: 500;
}

.footer-hours-sub {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    padding: 24px 24px;
  }
}

.footer-copyright {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-copyright svg {
  color: var(--brand-orange);
  fill: var(--brand-orange);
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  transition: color 0.3s;
  cursor: pointer;
  background: none;
  border: none;
}

.back-to-top:hover {
  color: var(--brand-orange);
}

.back-to-top:hover svg {
  transform: translateY(-4px);
}

.back-to-top svg {
  transition: transform 0.3s;
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-center { text-align: center; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.hidden { display: none; }

/* SVG Icons inline */
.icon-sm { width: 13px; height: 13px; }
.icon-md { width: 18px; height: 18px; }
.icon-lg { width: 20px; height: 20px; }
.icon-xl { width: 22px; height: 22px; }
.icon-xxl { width: 24px; height: 24px; }
.icon-hero { width: 28px; height: 28px; }
