/* style.css - Complete stylesheet for 4R GYM website */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom scrollbar for PC/Desktop */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red-dark);
}

/* Firefox scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-red) #0a0a0a;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.fade-gsap {
  opacity: 0;
  transform: translateY(60px);
}

/* custom red & black theme */
:root {
  --primary-red: #e11d2c;
  --primary-red-dark: #b0101f;
  --pure-black: #000000;
  --dark-charcoal: #0f0f0f;
  --card-bg: #111111;
  --border-glow: rgba(225, 29, 44, 0.3);
  --text-light: #f5f5f5;
  --text-dim: #c0c0c0;
}

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

section {
  padding: 50px 0;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
h2:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
  border-radius: 2px;
}
.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--primary-red);
  color: var(--text-light);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 40px;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: white;
  box-shadow: 0 4px 14px rgba(225, 29, 44, 0.3);
}

.btn-primary:hover {
  background: var(--primary-red-dark);
  border-color: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(225, 29, 44, 0.4);
}

.btn-outline:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

/* header / navbar */
.navbar {
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(225, 29, 44, 0.3);
  padding: 12px 0;
}

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

/* Logo area with image and text */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 70px;
  padding-left: 50px;
  width: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.logo h1 {
  font-size: 1.9rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo span {
  color: var(--primary-red);
}

/* Desktop navigation */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  font-weight: 600;
  transition: 0.2s;
  font-size: 1rem;
}

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

/* Active link styling (for scroll spy) */
.nav-links a.active {
  color: var(--primary-red);
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 4px;
}

/* Mobile menu button (hamburger) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.2s;
  z-index: 102;
}

.mobile-menu-btn:hover {
  color: var(--primary-red);
}

/* Fullscreen mobile navigation overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000ee;
  backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.close-menu-btn {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
  transition: 0.2s;
}

.close-menu-btn:hover {
  color: var(--primary-red);
  transform: rotate(90deg);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-nav-links li {
  margin: 28px 0;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #eee;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.2s;
}

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

.mobile-nav-links a.active-mobile {
  color: var(--primary-red);
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 5px;
}

/* hero section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.60) 60%, rgba(0,0,0,0.75) 100%), url('images/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left center, rgba(225,29,44,0.35), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(225, 29, 44, 0.15);
  padding: 6px 16px;
  border-radius: 40px;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content .highlight {
  color: var(--primary-red);
}

.hero-tagline {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 30px;
  max-width: 500px;
}

.price-card {
  background: var(--card-bg);
  border-radius: 28px;
  padding: 28px 32px;
  border: 1px solid #232323;
  text-align: center;
  max-width: 320px;
  width: 100%;
  backdrop-filter: blur(4px);
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.5);
}

.price-card .price {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
}

.price-card .price small {
  font-size: 1.2rem;
  font-weight: 500;
}

.price-card .period {
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 20px;
}

.badge-free {
  background: #1d2b1f;
  color: #2ecc71;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 15px;
}

/* features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.feature-card {
  background: var(--card-bg);
  padding: 32px 24px;
  border-radius: 28px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid #1f1f1f;
}

.feature-card i {
  font-size: 2.8rem;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: #aaa;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 25px rgba(225, 29, 44, 0.15);
}

/* GALLERY SECTION - RED GRADIENT UNDER CARD for text pop */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  height: 450px;
  position: relative;
  transition: 0.3s ease;
  border: 1px solid #222;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  /* RED GRADIENT UNDER CARD - creates a glowing backdrop behind the card */
  background: linear-gradient(135deg, #e11d2c 0%, #8a0f1a 100%);
  padding: 3px; /* This creates the gradient border effect */
  background-clip: padding-box;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.9) contrast(1.05);
  display: block;
  border-radius: 21px; /* Slightly smaller radius to show gradient underneath */
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* Enhanced gradient for better text readability - dark to transparent overlay */
  background: linear-gradient(to top, #000000dd 0%, #000000aa 40%, transparent 100%);
  padding: 24px 16px 12px;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
  border-radius: 0 0 21px 21px;
}

/* MACHINES SECTION - categorized by muscle group */
.machines-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 5px solid var(--primary-red);
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-title i {
  color: var(--primary-red);
  font-size: 1.8rem;
}

.machines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.machine-card {
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #222;
  transition: 0.3s ease;
}

.machine-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-red);
  box-shadow: 0 12px 28px rgba(225,29,44,0.2);
}

.machine-img {
  width: 100%;
  height: 200px;
  background-color: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #181818;
}

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

.machine-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 18px 20px 8px;
  color: white;
}

.machine-card p {
  padding: 0 20px 20px;
  color: #aaa;
  font-size: 0.9rem;
}

.machine-img .fallback-icon {
  font-size: 3.5rem;
  color: var(--primary-red);
  opacity: 0.7;
}

/* opening hours section */
.hours-special {
  background: #0b0b0b;
  border-radius: 40px;
  padding: 40px;
  border-left: 5px solid var(--primary-red);
  margin-top: 30px;
}

.hours-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.hours-box {
  background: #111;
  padding: 20px 30px;
  border-radius: 24px;
  flex: 1;
  min-width: 200px;
}

.hours-box i {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.red-accent {
  color: var(--primary-red);
  font-weight: 800;
}

/* Locations grid - twee maps naast elkaar */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #222;
  transition: 0.3s ease;
}

.location-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(225,29,44,0.15);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.location-header h3 {
  font-size: 1.2rem;
  margin: 0;
}
/* FAQ Section */
.faq-container {
  max-width: 820px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid #222;
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-red);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  text-align: left;
  transition: 0.2s ease;
}

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

.faq-question span {
  flex: 1;
}

.faq-icon {
  font-size: 1rem;
  color: var(--primary-red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: #ccc;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  margin: 0;
}

.faq-answer strong {
  color: white;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: 28px;
  border: 1px solid #222;
}

/* Responsive FAQ */
@media (max-width: 600px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 16px 18px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 18px 16px;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
  
  .faq-cta {
    padding: 28px 16px;
  }
}

.location-card .map-container {
  margin: 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #333;
}

.location-card .map-container iframe {
  height: 280px;
  display: block;
}

.location-address,
.location-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #aaa;
  font-size: 0.95rem;
}

.location-address i,
.location-hours i {
  color: var(--primary-red);
  width: 18px;
}

/* Responsive: op mobiel onder elkaar */
@media (max-width: 850px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .location-card .map-container iframe {
    height: 220px;
  }
}

@media (max-width: 550px) {
  .location-card {
    padding: 16px;
  }
  
  .location-card .map-container iframe {
    height: 180px;
  }
}

/* community quote / CTA */
.cta-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0c0e 100%);
  border-radius: 48px;
  padding: 60px 40px;
  text-align: center;
  margin: 40px 0;
}

.cta-section h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-links a {
  color: #ddd;
  font-size: 1.8rem;
  transition: 0.2s;
}

.social-links a:hover {
  color: var(--primary-red);
  transform: scale(1.1);
}

/* footer */
footer {
  background: #030303;
  padding: 40px 0;
  border-top: 1px solid #1f1f1f;
  text-align: center;
}

.footer-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
}

.footer-logo-area h3 {
  font-size: 2rem;
  margin: 0;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #777;
  margin-top: 16px;
}

/* motto strip */
.motto-strip {
  background: var(--primary-red);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 16px 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.5rem;
}

.motto-strip span {
  color: var(--pure-black);
}

.open247 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 29, 44, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
/* Modern Openingstijden */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.hours-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #222;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.hours-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-red);
  box-shadow: 0 20px 40px rgba(225, 29, 44, 0.15);
}

/* Primaire kaart - met rode achtergrond */
.hours-card-primary {
  background: linear-gradient(135deg, #1a0c0e 0%, #0a0a0a 100%);
  border-color: var(--primary-red);
  position: relative;
}

.hours-card-primary .hours-card-bg {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top right, rgba(225, 29, 44, 0.08), transparent 70%);
  pointer-events: none;
}

.hours-card-primary .hours-card-content {
  position: relative;
  z-index: 1;
}

.hours-card-primary h3 {
  color: var(--primary-red);
}

/* Highlight kaart */
.hours-card-highlight {
  border-color: #333;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.hours-card-highlight:hover {
  border-color: var(--primary-red);
}

/* Icon wrapper */
.hours-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(225, 29, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.hours-card:hover .hours-icon-wrapper {
  background: rgba(225, 29, 44, 0.2);
  transform: scale(1.05);
}

.hours-icon-wrapper i {
  font-size: 1.8rem;
  color: var(--primary-red);
}

.hours-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
  margin-bottom: 16px;
}

/* Time display voor 24 uur */
.hours-time-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.hours-number {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  background: linear-gradient(90deg, #e11d2c, #8a0f1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hours-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #888;
  margin-left: 4px;
}

/* Time range voor weekend */
.hours-time-range {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.hours-time {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
}

.hours-arrow {
  color: var(--primary-red);
  font-size: 1.4rem;
  font-weight: 300;
}

/* Status indicator */
.hours-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 4px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  display: inline-block;
}

.status-dot.pulse {
  background: #2ecc71;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Tags */
.hours-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 4px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid #333;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.5px;
}

.hours-tag i {
  font-size: 0.7rem;
}

/* Features in highlight card */
.hours-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ccc;
  font-size: 0.95rem;
  padding: 4px 0;
}

.hours-feature i {
  color: var(--primary-red);
  width: 20px;
  font-size: 0.9rem;
}

/* Live status bar */
.live-status {
  margin-top: 40px;
  background: var(--card-bg);
  border: 1px solid #222;
  border-radius: 60px;
  padding: 16px 2px;
  text-align: center;
}

.live-status-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #ccc;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

.live-text strong {
  color: #2ecc71;
}

.live-separator {
  color: #444;
}

.live-time {
  color: white;
  font-weight: 600;
}

.live-emoji {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hours-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hours-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .hours-card:last-child {
    max-width: 100%;
  }
  
  .hours-card {
    padding: 24px 16px;
  }
  
  .hours-number {
    font-size: 3rem;
  }
  
  .hours-time {
    font-size: 1.8rem;
  }
  
  .hours-icon-wrapper {
    width: 52px;
    height: 52px;
  }
  
  .hours-icon-wrapper i {
    font-size: 1.4rem;
  }
  
  .live-status {
    padding: 12px 16px;
    border-radius: 30px;
  }
  
  .live-status-content {
    font-size: 0.85rem;
    gap: 8px;
  }
  
  .section-badge {
    font-size: 0.75rem;
  }
}

/* Section badge */
.section-badge {
  display: inline-block;
  background: rgba(225, 29, 44, 0.12);
  color: var(--primary-red);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-badge i {
  margin-right: 6px;
}

/* fallback */
.fallback-icon {
  font-size: 3rem;
  color: var(--primary-red);
}
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}
/* CONTACT SECTION */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid #222;
    border-radius: 28px;
    padding: 40px 25px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(225,29,44,0.15),
        transparent 70%
    );
    opacity: 0;
    transition: 0.3s ease;
}

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

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(225,29,44,0.25);
}

.contact-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.contact-card p {
    color: #aaa;
    font-size: 1rem;
}
.contact-card:nth-child(2) {
    border: 2px solid var(--primary-red);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37,211,102,0.5);
}
/* responsive fixes + mobile navbar middle logo */
@media (max-width: 850px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-grid {
    flex-direction: column;
  }
  section {
    padding: 60px 0;
  }
  h2 {
    font-size: 2rem;
  }
  .cta-section h3 {
    font-size: 1.7rem;
  }
  .hours-flex {
    flex-direction: column;
  }
  .map-container iframe {
    height: 300px;
  }
  .category-title {
    font-size: 1.5rem;
  }

  /* Mobile navbar adjustments: logo + middle alignment */
  .nav-container {
    position: relative;
    justify-content: space-between;
  }
  .logo {
    flex: 1;
  }
  .mobile-menu-btn {
    order: 2;
  }
}

/* Enhanced mobile navbar: center logo exactly in middle while keeping hamburger on right */
@media (max-width: 850px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .logo {
    position: relative;
    left: 0;
    transform: none;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex: 0 0 auto;
    pointer-events: auto;
  }
  
  .mobile-menu-btn {
    margin-left: auto;
    position: relative;
    z-index: 105;
    flex: 0 0 auto;
  }
  
  /* ensure the logo img and text are visible and left-aligned */
  .logo h1 {
    font-size: 1.4rem;
  }
  
  .logo-img {
    height: 45px;
    padding-left: 0;
  }
  
  .logo {
    background: transparent;
    padding: 0;
    white-space: nowrap;
  }
}

@media (max-width: 550px) {
  .btn {
    padding: 10px 22px;
  }
  .mobile-nav-links a {
    font-size: 1.4rem;
  }
  .logo h1 {
    font-size: 1.2rem;
  }
  .logo-img {
    height: 45px;
    align-items: left;
    padding-left: 0;
  }
}