/* FreeGYM - Grand Luxury Modern Design System */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,900,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --bg-dark: #07080c;
  --bg-card: #10131d;
  --bg-card-hover: #171c2b;
  --bg-glass: rgba(16, 19, 29, 0.75);
  
  --gold-primary: #f39c12;
  --gold-secondary: #f1c40f;
  --gold-dark: #b7791f;
  --gold-gradient: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #f1c40f 100%);
  --gold-glow: 0 0 25px rgba(243, 156, 18, 0.45);

  --cyan-accent: #00f2fe;
  --cyan-glow: 0 0 20px rgba(0, 242, 254, 0.4);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(243, 156, 18, 0.3);

  --font-heading: 'Satoshi', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #07080c;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold-primary));
  border-radius: 5px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
  color: #ffffff;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.text-cyan {
  color: var(--cyan-accent);
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title span.subtitle,
.subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: break-word;
}

.page-banner-title {
  display: block; /* .text-gold display:inline'i ezmeli, yoksa baslik ust etiketle yan yana gelir */
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-top: 0.5rem;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Grand Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #07080c;
  box-shadow: var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(243, 156, 18, 0.7);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid var(--border-gold);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(243, 156, 18, 0.15);
  box-shadow: var(--gold-glow);
  color: var(--gold-secondary);
}

/* Glass Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 3%;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.7rem 3%;
  background: rgba(7, 8, 12, 0.95);
  border-bottom-color: var(--border-gold);
}

.nav-container {
  max-width: 1550px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #07080c;
  box-shadow: var(--gold-glow);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

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

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.4rem 0;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.nav-btn {
  padding: 0.55rem 1.2rem !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
}

.mobile-toggle-btn {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.mobile-toggle-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-card);
  border-right: 1px solid var(--border-gold);
  z-index: 2600;
  padding: 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  left: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition-smooth);
}

.mobile-nav-links a i {
  color: var(--gold-primary);
  width: 20px;
}

.mobile-nav-links a:hover {
  color: var(--gold-primary);
  transform: translateX(5px);
}

.cart-icon-btn {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cart-icon-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 4% 4rem;
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.45) 0%, rgba(7, 8, 12, 0.95) 100%), url('../images/hero.webp') center/cover no-repeat;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(243, 156, 18, 0.15);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: var(--bg-glass);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Live Open Hours Card in Hero Right */
.hero-card-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
}

.hero-card-widget::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gold-gradient);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
}

.widget-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2ecc71;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 10px #2ecc71;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* Sections Styling */
.section {
  padding: 6rem 4%;
  position: relative;
}

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

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

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

/* Programs / Classes Cards */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.class-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.class-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Gorseller 4:5 dikey (Instagram 960x1200). Kutu da ayni orana sabitlenince
   ust kisimdaki yazilar kirpilmiyor. */
.class-img-box {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.class-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.class-card:hover .class-img-box img {
  transform: scale(1.08);
}

.class-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold-gradient);
  color: #07080c;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.class-info {
  padding: 1.8rem;
}

.class-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.class-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.class-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Calculator Section */
.calc-container {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.calc-container > div {
  min-width: 0;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: #07080c;
  border: 1px solid var(--border-color);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}

.gauge-box {
  background: #07080c;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gauge-val {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold-primary);
}

.gauge-status {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0.5rem 0 1.5rem;
  color: var(--cyan-accent);
}

/* Modals & Drawers */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  width: 90%;
  max-width: 550px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.8);
  transition: var(--transition-smooth);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--gold-primary);
}

/* Footer */
footer {
  background: #040508;
  border-top: 1px solid var(--border-color);
  padding: 5rem 4% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 1.2rem 0;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Tiklanabilir iletisim satirlari (WhatsApp / Maps / Instagram) */
.contact-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: flex-start;
  gap: 0.1rem;
  overflow-wrap: anywhere;
}

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

.map-card {
  background: #07080c;
  min-height: 200px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.map-card:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  box-shadow: var(--gold-glow);
}

/* Calisma Saatleri Listesi */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.2rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 700;
  color: var(--text-main);
}

.hours-time {
  color: var(--gold-primary);
  font-weight: 700;
  white-space: nowrap;
}

.hours-row.is-closed .hours-day,
.hours-row.is-closed .hours-time {
  color: var(--text-muted);
  font-weight: 600;
}

.hours-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

/* Genel Panel Karti */
.card-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.2rem;
}

/* Bilgi Kartlari (fitness rehberi vb.) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition-smooth);
}

.info-card:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.info-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid var(--border-gold);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
}

/* Galeri Izgarasi */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Kategori rozeti gorselin uzerinde degil alt satirda dursun;
   gorsellerin kendi yazilariyla cakisiyordu. */
.gallery-caption {
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.gallery-caption h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
}

.gallery-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid var(--border-gold);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
}

/* Contact / Location Split */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
  .nav-links { display: none; }
  .mobile-toggle-btn { display: flex; }
}

@media (max-width: 992px) {
  .hero { padding-top: 7rem; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .calc-container { grid-template-columns: 1fr; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-btn { display: none; }
}

@media (max-width: 768px) {
  .hero { padding: 6.5rem 1rem 3rem; }
  .section { padding: 3rem 1rem; }
  .hero-badge { font-size: 0.72rem; padding: 0.35rem 0.8rem; letter-spacing: 0.5px; max-width: 100%; white-space: normal; }
  .hero-title { font-size: clamp(1.7rem, 6.5vw, 2.5rem); letter-spacing: -0.5px; }
  .section-title h2 { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .page-banner-title { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .hero-card-widget { padding: 1.2rem; }
  .calc-container { padding: 1.2rem; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hours-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .card-panel { padding: 1.4rem; }
  .info-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .gallery-caption { padding: 0.7rem 0.8rem; }
  .gallery-caption h4 { font-size: 0.8rem; margin-bottom: 0.3rem; }
  .gallery-tag { font-size: 0.62rem; padding: 0.1rem 0.5rem; }
  .gallery-caption > i { display: none; }
  .stat-item h3 { font-size: 1.6rem; }
}

@media (max-width: 576px) {
  .hero { padding: 5.8rem 0.8rem 2.5rem; }
  .container { padding-left: 0.4rem; padding-right: 0.4rem; }
  .hero-title { font-size: clamp(1.45rem, 7.5vw, 2rem) !important; line-height: 1.2; word-break: break-word; }
  .hero-subtitle { font-size: 0.92rem; margin-bottom: 1.8rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; padding: 0.8rem; }
  .stat-item h3 { font-size: 1.4rem; }
  .stat-item p { font-size: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .classes-grid { grid-template-columns: 1fr; }
  .nav-container { gap: 0.6rem; }
  .logo-icon { width: 36px; height: 36px; font-size: 1.05rem; }
  .logo-text { font-size: 1.3rem; }
  .nav-actions { gap: 0.5rem; }
  .cart-icon-btn, .mobile-toggle-btn { width: 38px; height: 38px; }
}
