:root {
  --bg-color: #051125;
  --highlight-color: #00f0ff;
  --text-primary: #ffffff;
  --text-secondary: #dcdcdc;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: radial-gradient(circle at 50% 50%, #153860 0%, #051125 100%);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

/* Animations */
.fade-in { opacity: 0; }
.fade-up { opacity: 0; transform: translateY(30px); }
.fade-in.animate { animation: fadeIn 1s ease-out forwards; }
.fade-up.animate { animation: fadeUp 0.8s ease-out forwards; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.floating { animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Header Glassmorphism & Navbar */
.glass-nav {
  background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(0,240,255,0.15) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 5%;
  position: relative;
  z-index: 10;
}

.nav-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hamburger icon bars */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.3s ease,
              width 0.3s ease;
  transform-origin: center;
}

/* Active state: bars become X */
.mobile-menu-toggle.open .bar1 {
  transform: translateY(7.5px) rotate(45deg);
}
.mobile-menu-toggle.open .bar2 {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.open .bar3 {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-only { display: none; }

nav ul { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
nav a { color: #fff; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
nav a:hover, nav a.active { color: var(--highlight-color); }
nav a.active { font-weight: 700; }

/* Buttons */
.btn-primary {
  background: var(--highlight-color);
  color: #111;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--text-primary); }

/* Main Layout Container */
.main-container {
  padding: 1rem 5% 0 5%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Top Row: Headline left, Description right */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
}

.headline-col {
  flex: 1;
}

.headline-col h1 {
  font-size: 6rem;
  line-height: 0.95;
  letter-spacing: -2px;
}

.headline-col .highlight {
  color: var(--highlight-color);
}

.desc-col {
  flex: 1;
  max-width: 450px;
  padding-top: 1rem;
}

.desc-col p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* Bottom Large Card */
.bottom-card {
  position: relative;
  width: 100%;
  height: 550px; /* fixed height for the card */
  background: linear-gradient(135deg, rgba(15, 25, 45, 0.9) 0%, rgba(30, 80, 120, 0.9) 100%);
  border-radius: 30px;
  margin-top: 3rem; /* space for the head to break out */
  box-shadow: 0 20px 50px rgba(0, 240, 255, 0.15);
  margin-bottom: 3rem;
}

/* Bodybuilder protruding out */
.bodybuilder-img {
  position: absolute;
  bottom: 0;
  left: 5%;
  height: 125%; /* taller than the card */
  width: auto;
  max-width: none; /* Fixed Desktop Issue: Removed max-width restriction */
  object-fit: contain;
  object-position: bottom left;
  z-index: 5;
  /* Smudge/fade the hard bottom edge */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

/* Stats Glass Panel */
.stats-card {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: rgba(30, 80, 120, 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  min-width: 380px;
  z-index: 6;
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1rem;
}

.stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.right-align-stat {
  justify-content: flex-end;
  padding-right: 1rem;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}

.stat span {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.avatars {
  display: flex;
  margin-right: 0.5rem;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #1c3d5a;
  margin-left: -12px;
}
.avatar:first-child {
  margin-left: 0;
}

/* -------------------------------------- */
/* Why Train With Us Section              */
/* -------------------------------------- */

.why-us-section {
  padding: 4rem 5%;
  margin-top: 2rem;
  color: var(--text-primary);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.why-us-grid {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  max-width: 1200px;
}

/* Left Image Column */
.why-image-col {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 400px;
}

.why-image-col img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

/* Timeline Column */
.why-timeline-col {
  width: 4px;
  position: relative;
  margin: 0 1rem;
}

.timeline-track {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
}

.timeline-indicator {
  position: absolute;
  top: 0;
  left: -2px; /* Center it */
  width: 8px;
  height: 25%; /* Will match item height dynamically in JS or statically here */
  background: var(--highlight-color);
  border-radius: 8px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Right Items Column */
.why-items-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.why-item {
  background: rgba(40, 40, 40, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
}

.why-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.why-item:hover {
  background: rgba(60, 60, 60, 0.6);
}

.why-item.active {
  background: var(--highlight-color);
  border-color: var(--highlight-color);
  transform: translateX(10px);
}

.why-item.active h3 {
  color: #111;
  font-weight: 700;
}

.why-item.active p {
  color: #333;
  font-weight: 500;
}

/* -------------------------------------- */
/* Responsive Media Queries               */
/* -------------------------------------- */

@media (max-width: 1200px) {
  .headline-col h1 { font-size: 4.5rem; }
  .bottom-card { height: 450px; }
  .bodybuilder-img { height: 120%; }
  .stats-card { min-width: 320px; padding: 1.2rem; }
}

@media (max-width: 992px) {
  /* Proper Responsive Navbar */
  .glass-nav { 
    flex-direction: column; 
    align-items: stretch;
    padding: 1rem 1.5rem; 
  }
  
  .nav-brand {
    width: 100%;
  }
  
  .mobile-menu-toggle { 
    display: block; 
  }
  
  .desktop-join-btn { 
    display: none; 
  }
  
  #nav-menu {
    overflow: hidden;
    max-height: 0;
    width: 100%;
    margin-top: 0;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.35s ease,
                margin-top 0.35s ease;
  }
  
  #nav-menu.active {
    max-height: 400px;
    opacity: 1;
    margin-top: 1.2rem;
  }
  
  nav ul { 
    flex-direction: column; 
    align-items: center; 
    gap: 1.5rem; 
    padding-bottom: 1rem;
  }
  
  .mobile-only {
    display: block;
  }
  
  /* Top Row stacks vertically */
  .top-row { flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
  .desc-col { padding-top: 0; max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero-actions { justify-content: center; }
  
  /* Bottom Card converts to vertical flow */
  .bottom-card { 
    height: auto; 
    min-height: 500px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-end; 
    padding: 2rem; 
    margin-top: 6rem; /* space for protruding image */
  }
  
  .bodybuilder-img { 
    position: relative; 
    left: auto; 
    bottom: auto; 
    height: 400px; 
    max-width: 100%;
    transform: translateY(-4rem); 
    margin-bottom: -2rem; 
  }
  
  .stats-card { 
    position: relative; 
    top: auto; 
    right: auto; 
    transform: none; 
    width: 100%; 
    max-width: 500px;
    margin-bottom: 1rem;
  }
  
  .right-align-stat { justify-content: flex-start; padding-right: 0; }
  
  /* Why Us Responsive */
  .why-us-grid { flex-direction: column; width: 100%; max-width: 100%; }
  .why-timeline-col { display: none; }
  .why-image-col { height: 300px; min-height: unset; margin-bottom: 1rem; }
  .why-item { transform: none !important; }
}

@media (max-width: 768px) {
  .headline-col h1 { font-size: 3.5rem; }
  .desc-col p { font-size: 1rem; margin-bottom: 1.5rem; }
  
  /* Full width buttons on mobile */
  .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
  .hero-actions button { width: 100%; justify-content: center; }
  
  .bottom-card { min-height: unset; margin-top: 4rem; padding: 1.5rem; border-radius: 20px; }
  .bodybuilder-img { height: 300px; transform: translateY(-3rem); margin-bottom: -1.5rem; }
  
  .stats-card { min-width: unset; width: 100%; padding: 1.5rem; }
  .stat strong { font-size: 1.3rem; }
  .stat span { font-size: 0.9rem; }
}

/* -------------------------------------- */
/* Mobile: Reduce all section spacing     */
/* -------------------------------------- */
@media (max-width: 992px) {
  .why-us-section     { padding: 2rem 5%; margin-top: 1rem; }
  .programs-section   { padding: 2rem 5%; margin-top: 0; margin-bottom: 1rem; }
  .programs-container { gap: 2rem; }
  .amenities-section  { padding: 2rem 5%; margin-top: 1rem; margin-bottom: 2rem; }
  .amenities-grid     { margin-top: 2rem; }
  .cta-strip          { margin: 1rem 5% 2rem; padding: 2.5rem 1.5rem; }
  .location-section   { padding: 1.5rem 5% 3rem; }
  .section-title      { font-size: 2rem; margin-bottom: 1.5rem; }
  .modern-footer      { padding: 3rem 5% 1.5rem; }
  .footer-grid        { gap: 2rem; }
}

/* -------------------------------------- */
/* Programs Section                       */
/* -------------------------------------- */

.programs-section {
  padding: 4rem 5%;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.programs-header {
  margin-bottom: 3rem;
}

.programs-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.program-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.program-row.reverse {
  flex-direction: row-reverse;
}

.program-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15);
}

.program-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.program-row:hover .program-image img {
  transform: scale(1.05);
}

.program-info {
  flex: 1;
  padding: 2rem;
}

.day-badge {
  display: inline-block;
  background: rgba(0, 240, 255, 0.1);
  color: var(--highlight-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.program-info h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.program-info p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.primary-btn {
  background: var(--highlight-color);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
}

/* Responsive Overrides for Programs */
@media (max-width: 992px) {
  .program-row, .program-row.reverse {
    flex-direction: column;
    gap: 2rem;
  }
  .program-image img {
    height: 300px;
  }
  .program-info {
    padding: 1rem;
  }
  .program-info h2 {
    font-size: 2.5rem;
  }
}

/* -------------------------------------- */
/* Amenities Section                      */
/* -------------------------------------- */

.amenities-section {
  padding: 4rem 5%;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 240, 255, 0.05);
  transition: all 0.4s ease;
  animation: float 4s ease-in-out infinite;
}

.amenity-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.1);
  animation-play-state: paused;
}

.amenity-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(0,0,0,0.5));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight-color);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.amenity-icon svg {
  width: 34px;
  height: 34px;
}

.amenity-card h3.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

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

@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 600px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-card { animation: none; transform: none; } /* Disable float on small mobile for usability */
  .amenity-card:hover { transform: scale(1.02) !important; }
}

/* -------------------------------------- */
/* Fee Structure / Pricing Section        */
/* -------------------------------------- */

.pricing-section {
  padding: 4rem 5%;
  margin-bottom: 6rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 240, 255, 0.05);
  transition: transform 0.4s ease, border-color 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 240, 255, 0.3);
}

.pricing-card.popular {
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(0, 240, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 240, 255, 0.2);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight-color);
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.price {
  font-size: 3.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price span {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0.2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-features li.disabled {
  color: rgba(255,255,255,0.3);
}

.pricing-call-now {
  text-align: center;
  margin-top: 5rem;
  padding: 3rem;
  background: rgba(0, 240, 255, 0.05);
  border-radius: 20px;
  border: 1px dashed rgba(0, 240, 255, 0.3);
}

.pricing-call-now h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: none;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  text-decoration: none;
  animation: pulseButton 2s infinite;
  white-space: nowrap;
}

@keyframes pulseButton {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(204, 255, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0); }
}

@media (max-width: 992px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-5px); }
}

/* -------------------------------------- */
/* CTA Strip Section                      */
/* -------------------------------------- */

.cta-strip {
  margin: 2rem 5% 6rem;
  padding: 4rem;
  background: linear-gradient(45deg, rgba(10, 25, 47, 0.9), rgba(28, 61, 90, 0.9));
  border-radius: 30px;
  border: 1px solid rgba(204, 255, 0, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 240, 255, 0.15);
  animation: glowPulse 4s infinite alternate;
}

/* Animated subtle background glow */
@keyframes glowPulse {
  0% { box-shadow: 0 20px 50px rgba(0, 240, 255, 0.15), inset 0 0 0px rgba(0, 240, 255, 0); }
  100% { box-shadow: 0 20px 50px rgba(0, 240, 255, 0.15), inset 0 0 60px rgba(0, 240, 255, 0.1); }
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 2rem;
}

.cta-text h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  text-decoration: none;
  animation: pulseButton 2s infinite;
  white-space: nowrap;
}

@keyframes pulseButton {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

@media (max-width: 992px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-text p {
    margin: 0 auto 2rem;
  }
}

@media (max-width: 768px) {
  .cta-strip {
    padding: 2.5rem 1.5rem;
    margin-bottom: 4rem;
  }
  .cta-text h2 {
    font-size: 2rem;
  }
}

/* -------------------------------------- */
/* Location / Map Section                 */
/* -------------------------------------- */

.location-section {
  padding: 2rem 5% 6rem;
}

.map-container {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto 0;
  border-radius: 20px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 240, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 240, 255, 0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  overflow: hidden;
}

.map-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 240, 255, 0.2);
  border-color: rgba(0, 240, 255, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 15px;
  display: block;
  /* Magic CSS trick to turn standard Google Maps into a cool Dark Mode map! */
  filter: invert(90%) hue-rotate(180deg) contrast(100%); 
  transition: filter 0.5s ease;
}

.map-container:hover iframe {
  /* Brighten slightly on hover */
  filter: invert(90%) hue-rotate(180deg) contrast(120%) brightness(1.1);
}

  .map-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
  }
  
  /* -------------------------------------- */
  /* Sleek Modern Footer                    */
  /* -------------------------------------- */
  
  .modern-footer {
    background: #020611;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    padding: 5rem 5% 2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
  }
  
  .modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
    opacity: 0.3;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
  }
  
  .footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 300px;
  }
  
  .footer-col h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }
  
  .links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .links-col ul li {
    margin-bottom: 1rem;
  }
  
  .links-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
  }
  
  .links-col ul li a:hover {
    color: var(--highlight-color);
    padding-left: 5px;
  }
  
  .contact-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .contact-line svg {
    color: var(--highlight-color);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }
  
  .footer-copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
  }
  
  @media (max-width: 992px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-desc {
      margin: 0 auto;
    }
    .contact-line {
      justify-content: center;
    }
  }

/* -------------------------------------- */
/* WhatsApp Floating Button               */
/* -------------------------------------- */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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