/*
Theme Name: RODA - Rank One Digital Apex (Dark Theme)
Theme URI: https://rankonedigital.io/
Author: RODA / Rank One Digital Apex Pvt Ltd
Author URI: https://rankonedigital.io/
Description: Custom high-performance dark theme for Rank One Digital Apex featuring neon styles, dynamic courses, studio booking, and mobile-responsive layouts.
Version: 2.0.0
License: Proprietary
Text Domain: roda-theme
Tags: dark-mode, neon, personal-branding, digital-marketing, academy
*/

/* ============================================================
   DESIGN SYSTEM & VARIABLES
   ============================================================ */
:root {
  --navy: #1a2a5e;
  --navy-deep: #0d1a3e;
  --navy-mid: #243570;
  --cyan: #00b4d8;
  --cyan-light: #48cae4;
  --silver: #b0b8c8;
  --white: #f0f4ff;
  --bg: #080e20;
  --bg2: #0d1628;
  --gold: #f0b429;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--cyan-light);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5vw;
  background: rgba(8, 14, 32, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.15;
}

.nav-brand span {
  color: var(--cyan);
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--cyan) !important;
  color: var(--navy-deep) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: all 0.2s ease-in-out;
}

.nav-cta:hover {
  background: var(--cyan-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 7.5rem 5vw 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}
.breadcrumb a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--cyan);
}
.breadcrumb .sep {
  color: rgba(176, 184, 200, 0.35);
}
.breadcrumb .current {
  color: var(--cyan);
}

/* ============================================================
   COMMON SECTIONS & BUTTONS
   ============================================================ */
section {
  padding: 6rem 5vw;
  position: relative;
}

.section-tag, .page-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-tag::before, .page-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--cyan);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.section-sub, .page-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  max-width: 500px;
}

.cyan-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--cyan), var(--navy));
  opacity: 0.4;
}

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 0.9rem 2.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
}

.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.25rem;
  border: 1.5px solid rgba(240, 244, 255, 0.25);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ============================================================
   HOMEPAGE SPECIFICS
   ============================================================ */

/* HERO */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 5vw 4rem;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: 5%;
  left: -10%;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 42, 94, 0.55) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  top: 30%;
  right: -15%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--cyan);
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero-title .line2 {
  color: var(--cyan);
}
.hero-title .line3 {
  -webkit-text-stroke: 1.5px rgba(240, 244, 255, 0.25);
  color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.45s ease both;
}
.hero-stats {
  position: absolute;
  right: 5vw;
  bottom: 10%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fadeUp 0.7s 0.6s ease both;
}
.stat {
  text-align: right;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
}
.stat-num span {
  color: var(--cyan);
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ABOUT */
#about {
  background: var(--bg2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}
.about-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 380px;
  width: 100%;
}
.about-hex-bg {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, var(--navy-deep), var(--navy-mid), var(--navy-deep));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.5;
}
.about-hex-ring {
  position: absolute;
  inset: -5px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, var(--cyan), transparent, var(--navy));
  opacity: 0.35;
}
.about-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.about-inner .big {
  font-size: 5rem;
  line-height: 1;
  color: var(--cyan);
  display: block;
}
.about-text .mission {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 2rem;
  border-left: 3px solid var(--cyan);
  padding-left: 1.25rem;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 2px;
  color: var(--cyan);
}

/* COURSES & ACADEMY */
#courses {
  background: var(--bg);
}
.courses-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.course-card {
  background: var(--bg2);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.course-card:hover::before {
  transform: scaleX(1);
}
.course-card:hover {
  background: #111d35;
}
.course-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(0, 180, 216, 0.1);
  margin-bottom: 1.5rem;
  display: block;
}
.course-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.course-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.course-desc {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.course-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.course-card:hover .course-link {
  gap: 0.85rem;
}

/* INNER ACADEMY PAGE SPECIFICS */
.filter-bar {
  padding: 0 5vw 3rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--silver);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy-deep);
}
.courses-section {
  padding: 0 5vw 6rem;
}
.course-card-top {
  padding: 2.5rem 2rem 1.5rem;
  flex: 1;
}
.course-card-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.badge-beginner {
  background: rgba(0, 180, 216, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(0, 180, 216, 0.25);
}
.badge-intermediate {
  background: rgba(240, 180, 41, 0.1);
  color: #f0b429;
  border: 1px solid rgba(240, 180, 41, 0.25);
}
.badge-advanced {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.course-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.course-meta-item {
  font-size: 0.8rem;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.course-topics {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.course-topic {
  font-size: 0.85rem;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.course-topic::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.course-card-bottom {
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}
.course-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--silver);
  font-family: 'Barlow', sans-serif;
  display: block;
  line-height: 1;
}
.enroll-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 0.55rem 1.25rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.enroll-btn:hover {
  background: var(--cyan-light);
  transform: translateY(-1px);
}
.course-card-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.course-card:hover .course-card-bar {
  transform: scaleX(1);
}
.mentor-strip {
  margin: 0 5vw 6rem;
  padding: 2.5rem 3rem;
  background: var(--bg2);
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.mentor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--cyan));
  display: grid;
  place-items: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.mentor-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}
.mentor-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.mentor-bio {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.5;
  max-width: 500px;
}
.mentor-certs {
  display: flex;
  gap: 0.75rem;
  margin-left: auto;
  flex-wrap: wrap;
}
.cert-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 2px;
  color: var(--cyan);
}
.cta-banner {
  margin: 0 5vw 6rem;
  padding: 3.5rem 4rem;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
}
.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cta-text p {
  font-size: 0.95rem;
  color: var(--silver);
  max-width: 420px;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* STUDIO & BOOKING */
#studio {
  background: var(--navy-deep);
  overflow: hidden;
}
.studio-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.studio-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.studio-feat {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition: border-color 0.2s;
}
.studio-feat:hover {
  border-color: rgba(0, 180, 216, 0.3);
}
.studio-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: rgba(0, 180, 216, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.studio-feat-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.studio-feat-desc {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.5;
}
.booking-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 8px;
  padding: 2.5rem;
}
.booking-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.booking-form > p {
  font-size: 0.88rem;
  color: var(--silver);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--cyan);
}
.form-group select option {
  background: #0d1628;
  color: #f0f4ff;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* INNER STUDIO PAGE SPECIFICS */
.studio-hero {
  padding: 2.5rem 5vw 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}
.studio-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 180, 216, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 0.025) 1px, transparent 1px);
  background-size: 55px 55px;
}
.studio-hero-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 42, 94, 0.45) 0%, transparent 65%);
  pointer-events: none;
}
.studio-hero-left {
  position: relative;
  z-index: 2;
}
.studio-visual {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.7s 0.2s ease both;
}
.studio-room {
  background: var(--bg2);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.studio-room::before {
  content: 'LIVE';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  background: #ef4444;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  animation: pulse 2s infinite;
}
.studio-room-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.5rem;
}
.studio-eq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.eq-item {
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
}
.eq-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.eq-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}
.studio-availability {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.avail-slot {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.slot-free {
  background: rgba(0, 180, 216, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 180, 216, 0.2);
}
.slot-booked {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.packages-section {
  padding: 4rem 5vw;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.package-card {
  background: var(--bg2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
  border-top: 3px solid transparent;
}
.package-card.featured {
  border-top-color: var(--cyan);
  background: #0f1d35;
}
.package-card:hover {
  background: #111e36;
}
.pkg-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.pkg-popular {
  background: var(--cyan);
  color: var(--navy-deep);
}
.pkg-standard {
  background: rgba(176, 184, 200, 0.1);
  color: var(--silver);
}
.pkg-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.pkg-duration {
  font-size: 0.88rem;
  color: var(--silver);
  margin-bottom: 1.5rem;
}
.pkg-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 1.75rem;
}
.pkg-price small {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
  color: var(--silver);
}
.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.pkg-feat {
  font-size: 0.88rem;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pkg-feat.included {
  color: var(--white);
}
.pkg-feat::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}
.pkg-feat.excluded::before {
  content: '✗';
  color: rgba(176, 184, 200, 0.3);
}
.pkg-feat.excluded {
  color: rgba(176, 184, 200, 0.3);
}
.pkg-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 100%;
  padding: 0.85rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
}
.pkg-btn-primary {
  background: var(--cyan);
  color: var(--navy-deep);
}
.pkg-btn-primary:hover {
  background: var(--cyan-light);
}
.pkg-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.pkg-btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.booking-section {
  padding: 0 5vw 6rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  display: grid;
  place-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cyan);
  flex-shrink: 0;
}
.step-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.5;
}
.booking-contact {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(0, 180, 216, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: 6px;
}
.booking-contact p {
  font-size: 0.88rem;
  color: var(--silver);
  margin-bottom: 0.5rem;
}
.booking-contact a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 500;
}
.booking-form-wrap {
  background: var(--bg2);
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: 10px;
  padding: 3rem;
  position: sticky;
  top: 90px;
}
.booking-form-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.booking-form-wrap > p {
  font-size: 0.88rem;
  color: var(--silver);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.session-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.session-type-btn {
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.session-type-btn.active, .session-type-btn:hover {
  background: rgba(0, 180, 216, 0.08);
  border-color: rgba(0, 180, 216, 0.3);
  color: var(--cyan);
}
.form-group-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.6rem;
  display: block;
}
.btn-primary-full {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
  margin-top: 0.5rem;
  text-align: center;
}
.btn-primary-full:hover {
  background: var(--cyan-light);
}
.equipment-section {
  padding: 0 5vw 6rem;
}
.eq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.eq-card {
  padding: 1.75rem 1.5rem;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: border-color 0.2s;
}
.eq-card:hover {
  border-color: rgba(0, 180, 216, 0.2);
}
.eq-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.eq-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.eq-card-detail {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.5;
}

/* SERVICES */
#services {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--bg2), rgba(26, 42, 94, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 216, 0.2);
}
.service-card:hover::after {
  opacity: 1;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(26, 42, 94, 0.8), rgba(0, 180, 216, 0.12));
  border: 1px solid rgba(0, 180, 216, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.65;
  flex-grow: 1;
}

/* PORTFOLIO */
#portfolio {
  background: var(--bg2);
}
.portfolio-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 3rem 0 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 3px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--silver);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy-deep);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.portfolio-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item:nth-child(odd) {
  background: #0e1830;
}
.portfolio-item:nth-child(even) {
  background: #111e38;
}
.portfolio-item-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
}
.portfolio-item-icon {
  font-size: 2.5rem;
}
.portfolio-item-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 180, 216, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}
.portfolio-item-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy-deep);
}

/* CONTACT */
#contact {
  background: var(--navy-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  margin-top: 4rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  flex-shrink: 0;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.contact-item-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}
.contact-item-value a {
  color: var(--white);
  text-decoration: none;
}
.contact-item-value a:hover {
  color: var(--cyan);
}
.emails-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.emails-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--cyan);
}
.contact-emails {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.email-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--silver);
  transition: border-color 0.2s;
}
.email-chip:hover {
  border-color: rgba(0, 180, 216, 0.3);
  color: var(--white);
}
.email-chip::before {
  content: '✉';
  font-size: 0.85rem;
  color: var(--cyan);
}
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: 8px;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #04080f;
  padding: 3rem 5vw 2rem;
  border-top: 1px solid rgba(0, 180, 216, 0.1);
  position: relative;
  z-index: 10;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.footer-brand-name span {
  color: var(--cyan);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--silver);
  margin-top: 0.5rem;
  max-width: 250px;
  line-height: 1.5;
}
.footer-links-group h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.footer-links-group a {
  display: block;
  color: var(--silver);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-links-group a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(176, 184, 200, 0.5);
}

.footer-mini {
  background: #04080f;
  padding: 2rem 5vw;
  border-top: 1px solid rgba(0, 180, 216, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(176, 184, 200, 0.45);
}
.footer-mini a {
  color: rgba(176, 184, 200, 0.45);
  text-decoration: none;
}
.footer-mini a:hover {
  color: var(--cyan);
}

/* ============================================================
   ANIMATIONS & TRANSITIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVENESS (MOBILE-FRIENDLY)
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  nav {
    padding: 1rem 5vw;
  }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 100%;
    right: 0;
    bottom: 0;
    height: calc(100vh - 68px);
    width: 100%;
    background: rgba(8, 14, 32, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: left 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    border-top: 1px solid rgba(0, 180, 216, 0.1);
  }
  .nav-links.active {
    left: 0;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .about-grid, .studio-wrap, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-stats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
  }
  .stat {
    text-align: left;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .studio-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .booking-section {
    grid-template-columns: 1fr;
  }
  .booking-form-wrap {
    position: static;
    padding: 2rem 1.5rem;
  }
  .eq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  section {
    padding: 4rem 5vw;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .session-types {
    grid-template-columns: 1fr 1fr;
  }
  .eq-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 1.5rem;
  }
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============================================================
   WORDPRESS STANDARD FALLBACKS & ALIGNS
   ============================================================ */
.aligncenter {
  display: block;
  margin: 1.5rem auto;
}
.alignleft {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}
.alignright {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}
.wp-caption {
  max-width: 100%;
  text-align: center;
  background: var(--bg2);
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
.wp-caption-text {
  font-size: 0.8rem;
  color: var(--silver);
  margin-top: 5px;
}
.gallery-caption {
  font-size: 0.8rem;
  color: var(--silver);
}
.sticky {
  background: rgba(0, 180, 216, 0.05);
  border: 1px dashed var(--cyan);
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
