@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

:root {
  --bg-primary: #08080a;
  --bg-secondary: #0f0f13;
  --bg-card: rgba(18, 18, 24, 0.8);
  --bg-card-hover: rgba(26, 26, 34, 0.95);
  
  --color-primary: #ffffff;
  --color-secondary: #9fa2a6;
  --color-accent: #bbf200; /* Gympact Electric Lime/Neon */
  --color-accent-dark: #8cb600;
  --color-accent-gold: #d4af37;
  --color-glow: rgba(187, 242, 0, 0.25);
  --color-glow-gold: rgba(212, 175, 55, 0.25);
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(187, 242, 0, 0.4);
  --border-gold-hover: rgba(212, 175, 55, 0.4);

  --font-title: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--color-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #22222a;
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 40%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.bg-blur {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.section-header.active {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.8rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
}

.section-header p {
  color: var(--color-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 1rem auto 0 auto;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

/* Navbar Topbar (Gympact Style) */
.topbar {
  background: #050507;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  padding: 0.6rem 0;
  color: var(--color-secondary);
}

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

.topbar-info {
  display: flex;
  gap: 2rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  background: rgba(8, 8, 10, 0.8);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(8, 8, 10, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1rem;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  color: var(--color-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-normal);
}

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

.nav-cta {
  background: var(--color-accent);
  color: #000;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-family: var(--font-title);
  box-shadow: 0 0 15px var(--color-glow);
}

.nav-cta:hover {
  background: white;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 75% 35%, rgba(187, 242, 0, 0.1) 0%, rgba(8, 8, 10, 0) 65%),
              radial-gradient(circle at 15% 75%, rgba(212, 175, 55, 0.05) 0%, rgba(8, 8, 10, 0) 50%),
              var(--bg-primary);
  padding: 80px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

.hero-content {
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(187, 242, 0, 0.1);
  border: 1px solid rgba(187, 242, 0, 0.25);
  color: var(--color-accent);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.8rem;
  font-family: var(--font-title);
}

.hero-title {
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  font-family: var(--font-title);
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-family: var(--font-body);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: var(--font-title);
  transition: var(--transition-normal);
}

.btn-primary {
  background: var(--color-accent);
  color: #000;
  box-shadow: 0 10px 25px var(--color-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: white;
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-ring {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 242, 0, 0.12) 0%, rgba(212, 175, 55, 0.03) 50%, rgba(0,0,0,0) 70%);
  filter: blur(20px);
  animation: rotateGlow 20s linear infinite;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
  z-index: 5;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: var(--transition-normal);
}

.hero-image-container:hover::after {
  border-color: var(--color-accent);
}

/* Info Stats Strip */
.stats-strip {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
  letter-spacing: -1px;
}

.stat-item p {
  color: var(--color-secondary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-title);
  font-weight: 500;
}

/* Sections General */
.section-padding {
  padding: 8rem 0;
}

/* Arm Wrestling Tab Details */
.armwrestling-showcase {
  position: relative;
  background: radial-gradient(circle at 10% 30%, rgba(187, 242, 0, 0.05) 0%, rgba(8, 8, 10, 0) 50%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.showcase-visual {
  position: relative;
}

.showcase-img-placeholder {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  background: linear-gradient(135deg, #18181f 0%, #0c0c0e 100%);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.15);
  gap: 1rem;
}

.showcase-img-placeholder svg {
  width: 70px;
  height: 70px;
  fill: currentColor;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.feature-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(187, 242, 0, 0.05);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(187, 242, 0, 0.1);
  border: 1px solid rgba(187, 242, 0, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.feature-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-details p {
  color: var(--color-secondary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

/* Champions Wall */
.champions-wall {
  background: var(--bg-secondary);
}

.champions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.champion-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.champion-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px var(--color-glow);
}

.champ-img-container {
  position: relative;
  width: 100%;
  height: 340px;
  background: linear-gradient(180deg, #18181f 0%, #0c0c0e 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid var(--border-color);
}

.champ-img-container svg {
  width: 60px;
  height: 60px;
  fill: currentColor;
  margin-bottom: 1rem;
}

.champ-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--color-accent);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  font-family: var(--font-title);
  box-shadow: 0 4px 10px rgba(187, 242, 0, 0.3);
}

.champ-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.champ-name {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.champ-title {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.champ-stats {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
}

.champ-stat {
  font-size: 0.85rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
}

.champ-stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--color-primary);
  font-family: var(--font-title);
}

/* Calculator Section */
.calculator-section {
  position: relative;
  background: radial-gradient(circle at 90% 80%, rgba(187, 242, 0, 0.05) 0%, rgba(8, 8, 10, 0) 50%);
}

.calc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.calc-info h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.calc-info p {
  color: var(--color-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  font-family: var(--font-body);
}

.calc-highlight {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 4px 4px 0;
  margin-bottom: 2rem;
}

.calc-highlight svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

.calc-highlight span {
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.calc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent);
}

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

.form-group label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-family: var(--font-title);
  letter-spacing: 0.05em;
}

.form-group label span {
  color: var(--color-accent);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #22222a;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  box-shadow: 0 0 10px var(--color-glow);
  transition: var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: white;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.calc-btn {
  width: 100%;
  border: none;
  background: var(--color-accent);
  color: #000;
  padding: 1.1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-title);
  box-shadow: 0 10px 20px var(--color-glow);
  transition: var(--transition-normal);
}

.calc-btn:hover {
  transform: translateY(-2px);
  background: white;
  box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2);
}

.calc-result {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.result-rank {
  font-size: 1.8rem;
  font-family: var(--font-title);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.result-desc {
  color: var(--color-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* Normal Gym Facilities & Programs */
.programs-section {
  background: var(--bg-secondary);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--transition-normal);
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.program-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(187, 242, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1.8rem;
}

.program-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.program-card p {
  color: var(--color-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-family: var(--font-title);
}

.program-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: var(--transition-fast);
}

.program-link:hover svg {
  transform: translateX(5px);
}

/* Contact / Join Section */
.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--color-secondary);
  margin-bottom: 3rem;
  font-family: var(--font-body);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-item-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-item-text p {
  color: var(--color-secondary);
  font-size: 0.95rem;
  margin: 0;
  font-family: var(--font-body);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.input-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1rem 1.2rem;
  border-radius: 4px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.input-field:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 15px rgba(187, 242, 0, 0.1);
}

textarea.input-field {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-normal);
}

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

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.faq-question svg {
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--color-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  background: #050507;
  padding: 5rem 0 2.5rem 0;
}

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

.footer-brand p {
  color: var(--color-secondary);
  margin-top: 1.2rem;
  max-width: 320px;
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--color-secondary);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-secondary);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

/* Animations */
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation utilities for scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-grid {
    gap: 2rem;
  }
  .showcase-grid {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge {
    justify-content: center;
  }
  .hero-desc {
    margin: 0 auto 2.5rem auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-image-container {
    height: 400px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .calc-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .menu-toggle {
    display: flex;
    z-index: 1100;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #0c0c0f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: 0.4s ease-in-out;
    border-left: 1px solid var(--border-color);
    z-index: 1050;
  }
  .nav-menu.active {
    right: 0;
  }
  .navbar.active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .navbar.active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .navbar.active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
