:root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-primary: #f43f5e;
    --accent-secondary: #fb923c;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 80px;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  background-color: #000000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 0;
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 3%;
}

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

.navbar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

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

.navbar-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .navbar-menu {
    display: none;
  }
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-primary);
  transition: width 0.3s ease;
}

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

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

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

.navbar-cta {
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .navbar-cta {
    display: none !important;
  }
}

.navbar-cta:hover {
  background: rgba(244, 63, 94, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 63, 94, 0.2);
}

.mobile-menu-btn {
  display: none;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .mobile-menu-btn {
    display: flex;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 0 0 1.5rem 0;
  background-color: rgba(15, 23, 42, 0.98);
  border-top: 1px solid var(--glass-border);
}

.mobile-menu.hidden {
  display: none;
}

.mobile-menu-link {
  padding: 1rem 0;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--glass-border);
  text-decoration: none;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--accent-primary);
  padding-left: 0.5rem;
}

.mobile-menu-cta {
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Buttons */
button, .btn-primary, .btn-secondary {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 63, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 90vh;
    padding: 0 5%;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

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

.hero-image {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(244, 63, 94, 0.4));
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: pulse 8s infinite alternate;
}

.stats-card {
    position: absolute;
    padding: 1.5rem;
    min-width: 180px;
}

.stats-card:nth-child(2) {
    top: 20%;
    left: 10%;
}

.stats-card:nth-child(3) {
    bottom: 20%;
    right: 10%;
}

.stats-card h3 {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stats-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Programs Section */
.programs {
    padding: 5rem 5%;
    background-color: var(--bg-secondary);
}

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

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.program-card {
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.program-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.program-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--accent-secondary);
}

/* Equipment Section */
.equipment-section {
    padding: 5rem 5%;
    background-color: var(--bg-primary);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.6);
}

.equipment-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.2rem;
}

.equipment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.equipment-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Fees Structure Table */
.pricing-section {
    padding: 5rem 5%;
    background-color: var(--bg-secondary);
}

.fees-section {
    padding: 2rem 5% 5rem 5%;
    background-color: var(--bg-secondary);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--glass-bg);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--glass-border);
}

.pricing-card.pro {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(244, 63, 94, 0.4);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: var(--accent-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.plan-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-card.pro .plan-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-card.pro h3 {
    color: #fff;
}

.plan-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-card.pro p {
    color: rgba(255, 255, 255, 0.9);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 1rem;
    color: var(--accent-secondary);
    display: flex;
    align-items: baseline;
}

.pricing-card.pro .price {
    color: #fff;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 5px;
}

.pricing-card.pro .price span {
    color: rgba(255, 255, 255, 0.8);
}

.features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.8rem;
}

.pricing-card.pro .features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 500;
}

.features li.disabled {
    color: var(--text-secondary);
    opacity: 0.5;
}

.icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.icon.check {
    background-color: var(--accent-secondary);
    color: #fff;
}

.icon.minus {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.icon.check-pro {
    background-color: #fff;
    color: var(--accent-primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-secondary);
    color: var(--accent-secondary);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 800;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(251, 146, 60, 0.1);
}

.btn-solid {
    background: #fff;
    border: 2px solid #fff;
    color: var(--accent-primary);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 800;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    background: #f8fafc;
}

.table-container {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    overflow-x: auto;
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    min-width: 800px;
}

.fees-table th, .fees-table td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 0.5rem;
}

.fees-table th {
    color: #fca311;
    font-weight: 800;
    text-transform: uppercase;
}

.fees-table th span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 0.3rem;
    color: #ccc;
}

.fees-table td:first-child {
    font-weight: 800;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fca311;
}

.extra-fees {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #ccc;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 500;
}

.admission-banner {
    background-color: #fca311;
    color: #000;
    text-align: center;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(252, 163, 17, 0.2);
}

.admission-banner h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #000;
}

.banner-highlight {
    color: #d00000;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.admission-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 2px;
}

/* About Section */
.about-section {
    padding: 5rem 5%;
    background-color: var(--bg-primary);
}

.about-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.feature-box {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
}

.feature-icon {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Custom Gallery Grid */
.gallery-section {
    padding: 5rem 5%;
    background-color: var(--bg-primary);
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(100, 255, 255, 0.4);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.gallery-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.custom-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.gallery-item.large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 5%;
    background-color: var(--bg-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.reviewer-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
}

/* Policies Section */
.policies-section {
    padding: 5rem 5%;
    background-color: var(--bg-secondary);
}

.policies-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-card {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.policy-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.policy-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.policy-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.policy-toggle {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.policy-card.active .policy-toggle {
    transform: rotate(180deg);
}

.policy-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.policy-card.active .policy-content {
    max-height: 300px;
    padding: 1.5rem;
}

.policy-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background-color: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--accent-primary);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.3);
    background: rgba(244, 63, 94, 0.05);
}

.contact-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    text-shadow: none;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
    font-weight: 900;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(244, 63, 94, 0.6);
}

.contact-info {
    background-color: rgba(15, 15, 15, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--accent-primary);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-info-item {
    margin-bottom: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(244, 63, 94, 0.2);
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.info-value a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: var(--accent-secondary);
}

/* Expanded Footer */
.footer {
    background-color: var(--bg-primary);
    padding: 5rem 0 0;
    border-top: 1px solid var(--accent-primary);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-bottom {
    padding: 2rem 0 2rem;
}

.footer-bottom-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.05em;
}

.footer-tagline {
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.footer-link {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent-primary);
}

.footer-link-text {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-icons {
    font-size: 18px;
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--accent-primary);
    border-radius: 8px;
    color: var(--accent-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-4px);
}

.footer-divider {
    height: 1px;
    background-color: var(--accent-primary);
    margin: 2rem 0;
}

.footer-credits {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

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

.floating {
    animation: float 6s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 2s;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .program-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .stats-card {
        padding: 1rem;
        min-width: 150px;
    }
    
    .stats-card h3 {
        font-size: 2rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Base spacing reduction */
    .hero,
    .programs,
    .equipment-gallery,
    .pricing,
    .about-section,
    .reviews-section,
    .policies-section,
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        margin: 0 auto 2rem auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }
    
    .hero-image {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Move stats cards to a flex row instead of floating over the image */
    .stats-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        display: inline-block;
        margin: 0.5rem;
    }
    
    .glow-orb {
        width: 300px;
        height: 300px;
    }

    /* Grids to Single Column */
    .program-grid,
    .pricing-grid,
    .reviews-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Gallery */
    .custom-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    /* About */
    .about-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-bottom-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo-section {
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}
