/* ===========================
   Legacy Fitness Solutions
   Main Stylesheet — matched to original WP/Elementor
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,400&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --primary: #E13B3B;
  --primary-dark: #A7112E;
  --dark: #1e293b;
  --text: #334155;
  --light-bg: #F0F5FA;
  --white: #FFFFFF;
  --border: #D1D5DB;
  --black: #111111;
  --red: #b10f2c;
  --font-heading: 'Teko', sans-serif;
  --font-body: 'Ubuntu', sans-serif;
  --font-accent: 'DM Serif Display', serif;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
}

ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(82deg, #E13B3B 0%, #A7112E 100%);
  border-color: var(--primary);
  color: var(--white);
}

.btn-solid {
  background: linear-gradient(82deg, #E13B3B 0%, #A7112E 100%);
  color: var(--white);
  border-color: var(--primary);
}

.btn-solid:hover {
  background: linear-gradient(82deg, #A7112E 0%, #E13B3B 100%);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* --- Header & Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.92);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo img { height: 60px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover { color: var(--primary); }

.nav-cta .btn {
  padding: 10px 28px;
  font-size: 18px;
  font-weight: 300;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  text-align: left;
  background: url('../images/offerings-hero.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 0 0 185px 0;
  overflow: hidden;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 13px;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 185px;
  font-weight: 700;
  color: var(--white);
  line-height: 0.85;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  font-family: var(--font-accent);
  font-size: 50px;
  font-weight: 400;
  text-transform: none;
  font-style: italic;
  margin-top: 10px;
}

.hero .btn { margin-top: 30px; }

.hero-social {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-social a {
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0.7;
  transition: var(--transition);
}

.hero-social a:hover { opacity: 1; color: var(--primary); }

/* --- Section Styles --- */
.section { padding: 128px 0 130px; }

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light { background: var(--light-bg); }

.section-label {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 7.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-dark .section-label { color: var(--primary); }

.section-title {
  font-family: var(--font-heading);
  font-size: 65px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--black);
}

.section-dark .section-title { color: var(--white); }

.section-text {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.5;
}

.text-center { text-align: center; }
.text-center .section-text { margin: 0 auto; }

/* --- Feature Cards (Why Choose Us) --- */
.features-wrapper {
  position: relative;
  padding: 40px 0;
}

.features-wrapper .circle-deco {
  position: absolute;
  width: 263px;
  height: 263px;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.features-wrapper .circle-deco.top-left { top: 60px; left: -60px; }
.features-wrapper .circle-deco.bottom-right { bottom: -80px; right: -70px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
}

.feature-card {
  background: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0px 0px 40px 3px rgba(0,0,0,0.03);
  padding: 55px 20px 45px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0px 0px 40px 10px rgba(223, 11, 11, 0.03);
}

.feature-card img {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.feature-card:hover img { animation: float 2s ease-in-out infinite; }

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

.feature-card h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.feature-card .read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
}

.feature-card .read-more:hover { text-decoration: underline; }

.section-dark .feature-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.section-dark .feature-card h3 { color: var(--white); }
.section-dark .feature-card p { color: rgba(255,255,255,0.7); }
.section-dark .feature-card:hover { border-color: var(--primary); }

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 0;
  align-items: stretch;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 650px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-content {
  padding: 80px 50px;
}

.about-content .section-text {
  margin-bottom: 30px;
  font-size: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  text-align: left;
  padding: 15px 10px;
  background: transparent;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 65px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 0;
}

/* --- Services Section --- */
.services-header {
  background: linear-gradient(82deg, #E13B3B 0%, #A7112E 100%);
  padding: 132px 0 345px;
  margin-bottom: -350px;
  position: relative;
  text-align: center;
}

.services-header .section-label,
.services-header .section-title { color: var(--white); }

.services-cards { padding: 0 0 132px; position: relative; z-index: 2; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover::before {
  background: linear-gradient(180deg, var(--primary) 0%, var(--black) 100%);
  opacity: 0.85;
}

.service-card img.service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: var(--white);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.service-card h3 {
  color: var(--white);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 15px;
}

.service-card .btn { padding: 10px 24px; font-size: 16px; }

/* --- Testimonials --- */
.testimonials-section {
  background: url('../images/offerings-hero.jpg') center/cover no-repeat;
  padding: 145px 0 142px;
  color: var(--white);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.testimonials-section > .container { position: relative; z-index: 2; }
.testimonials-section .section-label { color: var(--primary); }
.testimonials-section .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(180deg, #E13B3B 0%, #A7112E 100%);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 15px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
}

/* --- Team Section --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 50px auto 0;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  color: inherit;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.team-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-card-image img { transform: scale(1.05); }

.team-card-info { padding: 25px; }

.team-card h3 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.team-card .role {
  font-size: 16px;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a, .team-social span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.team-social a:hover { background: var(--primary); color: var(--white); }

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/photo-7-1.jpg') center/cover no-repeat fixed;
  color: var(--white);
}

.cta-banner .section-title { color: var(--white); }
.cta-banner .btn { margin-top: 20px; }

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 70px; width: auto; margin-bottom: 15px; }

.footer-brand p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover { background: var(--primary); }

.footer h4 {
  color: var(--white);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  padding: 5px 0;
}

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

.footer-contact p { font-size: 16px; opacity: 0.8; padding: 5px 0; }
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-contact a:hover { color: var(--primary); }

.footer-legal {
  text-align: center;
  padding: 16px 0 4px;
  font-size: 13px;
  opacity: 0.75;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-legal a {
  color: rgba(255,255,255,0.85);
  margin: 0 6px;
}
.footer-legal a:hover { color: var(--primary); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  opacity: 0.6;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 160px 20px 80px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../images/offerings-hero.jpg') center/cover no-repeat;
  color: var(--white);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 65px;
  text-transform: uppercase;
}

.page-hero .breadcrumb {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.7;
}

.page-hero .breadcrumb a { color: var(--white); opacity: 0.8; }

/* --- Content Section (inner pages) --- */
.content-section { padding: 80px 0; }

.content-section .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-section .content-grid.reverse { direction: rtl; }
.content-section .content-grid.reverse > * { direction: ltr; }

.content-section .content-text h2 { margin-bottom: 20px; }

.content-section .content-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 18px;
}

.content-section .content-text blockquote {
  font-family: var(--font-accent);
  font-size: 22px;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 25px 0;
}

.content-image img { border-radius: 8px; width: 100%; }

/* --- Skills / Progress Bars --- */
.skills-list { margin-top: 20px; }

.skill-item { margin-bottom: 20px; }

.skill-item .skill-name {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 16px;
}

.skill-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(82deg, #E13B3B 0%, #A7112E 100%);
  border-radius: 4px;
  transition: width 1s ease;
}

/* --- Schedule Table --- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.schedule-table th, .schedule-table td {
  padding: 15px 20px;
  text-align: center;
  border: 1px solid var(--border);
}

.schedule-table th {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.schedule-table td { font-size: 16px; }
.schedule-table tr:nth-child(even) { background: var(--light-bg); }

/* --- Product/Shop Cards --- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card-image img { width: 100%; height: 100%; object-fit: cover; }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
}

.product-card { display: flex; flex-direction: column; }
.product-card-info { padding: 28px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.product-card-info .btn { margin-top: auto; }
.product-card h3 { font-size: 30px; margin-bottom: 10px; }

.product-card .price {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 14px;
}

.product-card .category {
  font-size: 18px;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 18px;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 8px;
  margin-bottom: 15px;
}

.contact-info-card img { width: 40px; height: 40px; }
.contact-info-card h4 { font-size: 20px; margin-bottom: 3px; }
.contact-info-card p, .contact-info-card a { font-size: 16px; color: var(--text); }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225,59,59,0.1);
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- Policy / Text Pages --- */
.policy-content { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.policy-content h2 { font-size: 36px; margin: 30px 0 10px; }
.policy-content h3 { font-size: 28px; margin: 25px 0 10px; }
.policy-content p { margin-bottom: 15px; line-height: 1.8; }
.policy-content ul { list-style: disc; padding-left: 20px; margin-bottom: 15px; }
.policy-content li { margin-bottom: 8px; line-height: 1.6; }

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: var(--transition);
}

.scroll-top:hover { background: var(--primary-dark); }
.scroll-top.visible { display: flex; }

/* --- Utility --- */
.mb-0 { margin-bottom: 0; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 120px; }
  .hero-subtitle { font-size: 36px; letter-spacing: 8px; }
  .section-title { font-size: 50px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    padding: 20px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu.active a { padding: 12px 20px; display: block; }
  .nav-menu.active .nav-cta-mobile { display: block; padding: 12px 20px; }

  .hero { min-height: 60vh; padding: 0 0 80px; }
  .hero h1 { font-size: 60px; }
  .hero h1 span { font-size: 30px; }
  .hero-subtitle { font-size: 24px; letter-spacing: 6px; }
  .hero-social { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 400px; }
  .about-content { padding: 40px 20px; }

  .content-section .content-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .content-section .content-grid.reverse { direction: ltr; }

  .services-header { padding: 80px 0 200px; margin-bottom: -200px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; }
  .features-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .section-title { font-size: 40px; }
  .section-label { font-size: 22px; letter-spacing: 5px; }
  .page-hero h1 { font-size: 40px; }
  .page-hero { padding: 120px 20px 40px; min-height: 35vh; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 44px; }
  .hero h1 span { font-size: 22px; }
  .hero-subtitle { font-size: 18px; letter-spacing: 4px; }
  .stat-number { font-size: 40px; }
  .stat-label { font-size: 18px; }
}
