/* =============================================
   Plus Fitness Style - Premium Gym Website
   Main Stylesheet
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #FF4D00;
  --primary-dark: #E04400;
  --primary-light: #FF6B35;
  --secondary: #FFD700;
  --dark: #0A0A0A;
  --dark-2: #141414;
  --dark-3: #1E1E1E;
  --dark-4: #2A2A2A;
  --text: #FFFFFF;
  --text-muted: #B0B0B0;
  --text-dark: #333333;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1E1E1E 100%);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-primary: 0 10px 30px rgba(255, 77, 0, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

ul { list-style: none; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Bootstrap Dark Theme Overrides ---------- */
.text-muted {
  color: var(--text-muted) !important;
}

.form-label {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  background-color: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: var(--text);
}

.form-control:focus,
.form-select:focus {
  background-color: var(--dark-3);
  border-color: var(--primary);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

.form-select option {
  background-color: var(--dark-2);
  color: var(--text);
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--dark-3) inset;
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  border-color: var(--dark-4);
}

.modal-custom .modal-title {
  color: var(--text);
}

.legal-content strong {
  color: var(--text);
}

.error-page p,
.thank-you-page p {
  color: var(--text-muted);
}

.share-buttons > span {
  color: var(--text-muted);
}

.bmi-result > p {
  color: var(--text-muted);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  margin-bottom: 20px;
  line-height: 0;
}

.preloader-logo .site-logo {
  width: 280px;
  height: auto;
  max-width: 90vw;
  display: block;
  object-fit: contain;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-4);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
  border-radius: 3px;
  animation: preloadFill 1.5s ease forwards;
}

@keyframes preloadFill {
  to { width: 100%; }
}

/* ---------- Typography Utilities ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
  color: #fff;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-sm-custom {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ---------- Navigation ---------- */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar-custom.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand-custom {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  line-height: 0;
  margin-right: 12px;
}

.navbar-brand-custom .site-logo {
  width: 190px;
  height: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}

.navbar-custom.scrolled .site-logo {
  width: 160px;
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary) !important;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 60%;
}

.navbar-toggler-custom {
  border: none;
  padding: 4px;
}

.navbar-toggler-custom:focus {
  box-shadow: none;
}

.navbar-toggler-icon-custom {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler-icon-custom span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Dropdown */
.dropdown-menu-custom {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  padding: 12px 0;
  margin-top: 8px;
  box-shadow: var(--shadow);
}

.dropdown-menu-custom .dropdown-item {
  color: var(--text-muted);
  padding: 10px 24px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.dropdown-menu-custom .dropdown-item:hover {
  background: var(--dark-3);
  color: var(--primary);
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(255, 77, 0, 0.15) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 8s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-100px) scale(1.5); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .typing-text {
  color: var(--primary);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-stat-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  animation: bounceScroll 2s infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.scroll-indicator i {
  color: var(--primary);
  font-size: 1.2rem;
}

@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Section Spacing ---------- */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.bg-dark-2 { background: var(--dark-2); }
.bg-dark-3 { background: var(--dark-3); }

/* ---------- Why Choose Us Cards ---------- */
.feature-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 77, 0, 0.3);
  box-shadow: var(--shadow-primary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 0, 0.1);
  border-radius: 50%;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.1);
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Pricing Cards ---------- */
.pricing-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-primary);
}

.pricing-card.featured .pricing-badge {
  display: block;
}

.pricing-badge {
  display: none;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 77, 0, 0.5);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-plan {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--dark-4);
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--primary);
  font-size: 0.85rem;
}

/* ---------- Service Cards ---------- */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(255, 77, 0, 0.9) 0%, rgba(255, 77, 0, 0.4) 100%);
}

.service-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-overlay p {
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.service-card:hover .service-overlay p {
  opacity: 1;
  transform: translateY(0);
  color: rgba(255, 255, 255, 0.9);
}

.service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ---------- Trainer Cards ---------- */
.trainer-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--dark-4);
}

.trainer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
  border-color: rgba(255, 77, 0, 0.3);
}

.trainer-image {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.trainer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.trainer-card:hover .trainer-image img {
  transform: scale(1.05);
}

.trainer-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: rgba(10, 10, 10, 0.9);
  transition: var(--transition);
}

.trainer-card:hover .trainer-social {
  bottom: 0;
}

.trainer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-4);
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  transition: var(--transition);
}

.trainer-social a:hover {
  background: var(--primary);
}

.trainer-info {
  padding: 24px;
}

.trainer-info h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.trainer-info .trainer-role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.trainer-info .trainer-exp {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ---------- BMI Calculator ---------- */
.bmi-calculator {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.bmi-calculator .form-label {
  color: rgba(255, 255, 255, 0.92);
}

.bmi-calculator .form-control,
.bmi-calculator .form-select {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
}

.bmi-calculator .form-control:focus,
.bmi-calculator .form-select:focus {
  background: var(--dark-3);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}

.bmi-result {
  text-align: center;
  padding: 30px;
  background: var(--dark-3);
  border-radius: var(--radius);
  margin-top: 24px;
  display: none;
}

.bmi-result.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.bmi-result-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.bmi-result-category {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 8px;
}

.bmi-progress {
  height: 8px;
  background: var(--dark-4);
  border-radius: 4px;
  margin-top: 20px;
  overflow: hidden;
}

.bmi-progress-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 10px;
}

.testimonial-stars {
  color: var(--secondary);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-author h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Owl Carousel Custom */
.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background: var(--dark-3) !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  transition: var(--transition);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-carousel .owl-nav button:hover {
  background: var(--primary) !important;
}

.owl-carousel .owl-nav .owl-prev { left: -25px; }
.owl-carousel .owl-nav .owl-next { right: -25px; }

.owl-carousel .owl-dots .owl-dot span {
  background: var(--dark-4) !important;
  width: 10px;
  height: 10px;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--primary) !important;
  width: 30px;
  border-radius: 5px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item:nth-child(1) { grid-row: span 2; grid-column: span 2; aspect-ratio: auto; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 77, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary);
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-4);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 77, 0, 0.3);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-body h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.blog-card:hover h4 {
  color: var(--primary);
}

.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  gap: 10px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ---------- FAQ Accordion ---------- */
.accordion-custom .accordion-item {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-custom .accordion-button {
  background: var(--dark-2);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 24px;
  box-shadow: none !important;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: var(--dark-3);
  color: var(--primary);
}

.accordion-custom .accordion-button::after {
  filter: invert(1);
}

.accordion-custom .accordion-body {
  background: var(--dark-2);
  color: var(--text-muted);
  padding: 0 24px 20px;
}

/* ---------- Newsletter ---------- */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  white-space: nowrap;
}

.newsletter-success {
  display: none;
  color: #4CAF50;
  margin-top: 12px;
  font-size: 0.9rem;
}

.newsletter-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* ---------- Map ---------- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--dark-4);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) contrast(1.1);
  transition: var(--transition);
}

.map-container iframe:hover {
  filter: grayscale(0%);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-2);
  padding: 80px 0 0;
  border-top: 1px solid var(--dark-4);
}

.footer-brand {
  line-height: 0;
  margin-bottom: 16px;
}

.footer-brand .site-logo {
  width: 220px;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-4);
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid var(--dark-4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ---------- Floating Buttons ---------- */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.call { background: var(--primary); }
.float-btn.consultation { background: var(--secondary); color: var(--dark); }
.float-btn.back-top {
  background: var(--dark-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-btn.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- Modal ---------- */
.modal-custom .modal-content {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  color: #fff;
}

.modal-custom .modal-header {
  border-bottom: 1px solid var(--dark-4);
  padding: 24px 30px;
}

.modal-custom .modal-body {
  padding: 30px;
}

.modal-custom .btn-close {
  filter: invert(1);
}

.modal-custom .form-control,
.modal-custom .form-select {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius);
}

.modal-custom .form-control:focus,
.modal-custom .form-select:focus {
  background: var(--dark-3);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}

.modal-custom .form-label {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  margin-bottom: 6px;
}

.form-error {
  color: #ff4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-error.show { display: block; }

.form-success-msg {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success-msg.show { display: block; }

.form-success-msg i {
  font-size: 4rem;
  color: #4CAF50;
  margin-bottom: 20px;
}

/* ---------- Page Header / Breadcrumb ---------- */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  background: var(--gradient-dark);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80') center/cover;
  opacity: 0.15;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.breadcrumb-custom {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb-custom a {
  color: var(--text-muted);
}

.breadcrumb-custom a:hover {
  color: var(--primary);
}

.breadcrumb-custom .separator {
  color: var(--text-muted);
}

.breadcrumb-custom .current {
  color: var(--primary);
}

/* ---------- About Page ---------- */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--dark-4);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
  width: 50%;
  position: relative;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  right: -8px;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--dark);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -8px;
}

.timeline-content {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 400px;
  margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: 0;
  margin-left: 40px;
}

.timeline-year {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.stat-box {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.stat-box h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.achievement-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.achievement-card p {
  color: var(--text-muted);
}

.achievement-card h5 {
  color: var(--text);
}

.achievement-card:hover {
  border-color: var(--primary);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 77, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ---------- Contact Page ---------- */
.contact-info-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.contact-info-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-info-card h5 {
  margin-bottom: 8px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.contact-info-card a {
  color: var(--primary-light);
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-form .form-label {
  color: rgba(255, 255, 255, 0.92);
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
}

.contact-form .form-control:focus {
  background: var(--dark-3);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* ---------- Blog Page Sidebar ---------- */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h5 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.search-form {
  display: flex;
  gap: 8px;
}

.search-form input {
  flex: 1;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  outline: none;
}

.search-form button {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-4);
  font-size: 0.95rem;
}

.category-list a:hover {
  color: var(--primary);
}

.category-list span {
  background: var(--dark-3);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
}

.recent-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-4);
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post h6 {
  font-size: 0.9rem;
  margin-bottom: 4px;
  line-height: 1.4;
}

.recent-post h6 a:hover {
  color: var(--primary);
}

.recent-post span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  background: var(--dark-3);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.tag-cloud a:hover {
  background: var(--primary);
  color: #fff;
}

/* Pagination */
.pagination-custom {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.pagination-custom a,
.pagination-custom span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

.pagination-custom a:hover,
.pagination-custom span.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ---------- Blog Detail ---------- */
.blog-detail-content {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-4);
}

.blog-detail-image {
  height: 450px;
  overflow: hidden;
}

.blog-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-body {
  padding: 40px;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--dark-4);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-detail-meta i {
  color: var(--primary);
  margin-right: 6px;
}

.blog-detail-body h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 24px;
  color: var(--text);
}

.blog-detail-body h2 {
  font-size: 1.5rem;
  margin: 28px 0 14px;
  color: var(--text);
}

.blog-detail-body h3 {
  font-size: 1.25rem;
  margin: 24px 0 12px;
  color: var(--text);
}

.blog-detail-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.share-buttons {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-4);
}

.share-buttons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
}

.share-buttons a:hover {
  background: var(--primary);
}

.comment-section {
  margin-top: 40px;
}

.comment-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--dark-4);
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-body h6 {
  margin-bottom: 4px;
}

.comment-body span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.comment-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ---------- Trainers Page Filters ---------- */
.filter-bar {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
}

.filter-bar .form-label {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.filter-bar .form-control,
.filter-bar .form-select {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: #fff;
}

.filter-bar .form-control:focus,
.filter-bar .form-select:focus {
  background: var(--dark-3);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}

.preloader-logo span {
  color: #fff;
}

.trainer-card-full {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.trainer-card-full:hover {
  border-color: rgba(255, 77, 0, 0.3);
  box-shadow: var(--shadow-primary);
}

.trainer-card-full .trainer-image {
  height: 280px;
}

.trainer-rating {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.trainer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.trainer-certs span {
  background: var(--dark-3);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trainer-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #4CAF50;
  margin-bottom: 16px;
}

.trainer-availability .dot {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
}

.trainer-actions {
  display: flex;
  gap: 10px;
}

/* ---------- Legal Pages ---------- */
.legal-content {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  color: var(--primary);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--dark-4);
}

/* ---------- 404 Page ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-page h2 {
  font-size: 2rem;
  margin: 16px 0;
}

.error-page p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ---------- Thank You Page ---------- */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: rgba(76, 175, 80, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: scaleIn 0.6s ease;
}

.thank-you-icon i {
  font-size: 3rem;
  color: #4CAF50;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item:nth-child(1) {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }
}

@media (max-width: 991px) {
  .navbar-brand-custom .site-logo { width: 165px; }
  .navbar-custom.scrolled .site-logo { width: 145px; }
  .section-padding { padding: 70px 0; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-10px); }
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    padding-left: 50px;
  }
  .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 12px;
    right: auto;
  }
  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
    max-width: 100%;
  }
  .owl-carousel .owl-nav .owl-prev { left: 10px; }
  .owl-carousel .owl-nav .owl-next { right: 10px; }
  .blog-sidebar { position: static; margin-top: 40px; }
}

@media (max-width: 767px) {
  .navbar-brand-custom .site-logo { width: 145px; }
  .navbar-custom.scrolled .site-logo { width: 130px; }
  .preloader-logo .site-logo { width: 220px; }
  .footer-brand .site-logo { width: 180px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-outline-custom { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-buttons { bottom: 20px; right: 20px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.1rem; }
  .legal-content { padding: 24px; }
  .blog-detail-body { padding: 24px; }
  .blog-detail-image { height: 250px; }
  .trainer-actions { flex-direction: column; }
}

@media (max-width: 575px) {
  .navbar-brand-custom .site-logo { width: 125px; }
  .navbar-custom.scrolled .site-logo { width: 115px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stat-item h3 { font-size: 2rem; }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero-section { min-height: auto; padding: 100px 0 60px; }
  .scroll-indicator { display: none; }
}

/* ---------- Utility Classes ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-load.loaded {
  opacity: 1;
}
