/* ═══════════════════════════════════════════
   Project Dance GC — Main Stylesheet
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --primary: #01c8dd;
  --primary-dark: #00aab9;
  --primary-light: #e0f9fc;
  --dark: #111827;
  --dark-2: #1f2937;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light: #f1f5f9;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-muted: #64748b;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

address { font-style: normal; }

button { cursor: pointer; font-family: inherit; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

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

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover { background: rgba(255,255,255,0.9); }

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

.btn-full { width: 100%; }

/* ── Section base ── */
.section { padding: 5rem 0; }

.section-white { background: var(--white); }
.section-light { background: var(--light); }
.section-teal { background: var(--primary); }
.section-teal-alt { background: var(--primary-dark); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-header-light h2 { color: var(--white); }
.section-header-light p { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.navbar.scrolled .nav-logo {
  opacity: 1;
  pointer-events: auto;
}

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

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.navbar.scrolled .nav-links { display: flex; }

.nav-links li a {
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.15s ease;
}

.nav-links li a:hover { color: var(--text); }

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 0.25rem;
}

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.navbar.scrolled .nav-hamburger { display: flex; }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

@media (min-width: 900px) {
  .nav-hamburger { display: none !important; }
  .navbar.scrolled .nav-links { display: flex !important; }
}

@media (max-width: 899px) {
  .navbar.scrolled .nav-links { display: none; }
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--text);
  line-height: 1;
  padding: 0.25rem;
}

.mobile-logo { height: 120px; width: auto; margin-bottom: 1rem; }

.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }

.mobile-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.4rem 1rem;
  display: block;
  transition: color 0.15s ease;
}
.mobile-link:hover { color: var(--primary); }

.mobile-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 0.5rem auto;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0,0,0,0.4);
  display: none;
}
.mobile-overlay.open { display: block; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
}

.hero-logo {
  width: min(360px, 80vw);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}

.hero-h1 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin: 0;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--white); }

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

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(1, 200, 221, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   CLASSES
   ═══════════════════════════════════════════ */
.classes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .classes-grid { grid-template-columns: repeat(4, 1fr); }
}

.class-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.class-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.class-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.class-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   TIMETABLE
   ═══════════════════════════════════════════ */
.timetable-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .timetable-layout { grid-template-columns: 1fr 320px; align-items: start; }
}

.timetable-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.timetable-sub {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.timetable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.timetable thead tr {
  border-bottom: 2px solid var(--border);
}

.timetable th {
  padding: 0.6rem 0.75rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  white-space: nowrap;
}

.timetable td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}

.timetable tbody tr:last-child td { border-bottom: none; }

.timetable tbody tr:nth-child(odd) td { background: rgba(1,200,221,0.04); }

.time-cell {
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.timetable-info {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  color: var(--white);
}

.timetable-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.timetable-info ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.timetable-info li {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.timetable-info p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.timetable-info a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════
   TEACHERS
   ═══════════════════════════════════════════ */
.teachers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
}

.teacher-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.teacher-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 480px) {
  .teacher-card { flex-direction: row; align-items: flex-start; }
}

.teacher-photo-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.teacher-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(1,200,221,0.2);
}

.teacher-info { flex: 1; }

.teacher-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.teacher-role {
  display: inline-block;
  background: var(--light);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}

.teacher-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(1,200,221,0.1);
  color: var(--primary-dark);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(1,200,221,0.2);
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */

/* Mobile carousel */
.gallery-carousel {
  position: relative;
  display: block;
}

@media (min-width: 640px) {
  .gallery-carousel { display: none; }
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  border-radius: var(--radius);
  overflow: hidden;
}

.carousel-slide {
  flex: 0 0 100%;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 5;
  transition: background 0.15s;
  color: var(--text);
}
.carousel-btn:hover { background: var(--white); }
.carousel-prev { left: -16px; }
.carousel-next { right: -16px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.dot-active { background: var(--primary); }

/* Desktop grid */
.gallery-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid { display: grid; }
}

@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

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

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,200,221,0.12);
}

.form-message {
  font-size: 0.875rem;
  padding: 0.6rem 0;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  min-height: 1.5rem;
}

.form-message.success { color: #16a34a; }
.form-message.error { color: #dc2626; }

.form-message-light { color: rgba(255,255,255,0.9); }
.form-message-light.success { color: rgba(255,255,255,0.95); font-weight: 500; }
.form-message-light.error { color: rgba(255,255,255,0.8); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(1,200,221,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-detail address,
.contact-detail a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.contact-detail a:hover { color: var(--primary); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-social h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.social-links { display: flex; gap: 0.6rem; }

.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

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

/* ═══════════════════════════════════════════
   PROSPECTUS CTA
   ═══════════════════════════════════════════ */
.cta-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-icon {
  color: rgba(255,255,255,0.7);
}

.cta-block h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.cta-block p {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 540px;
}

/* ═══════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════ */
.newsletter-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.newsletter-block h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
}

.newsletter-block > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}

.newsletter-form { width: 100%; }

.newsletter-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 540px) {
  .newsletter-inputs {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.newsletter-inputs input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  outline: none;
  transition: background 0.15s, box-shadow 0.15s;
}

.newsletter-inputs input:focus {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 2rem;
}

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

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
}

.footer-brand .footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4,
.footer-connect h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--white); }

.footer-socials { margin-bottom: 1rem; }

.footer-socials .social-btn {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}
.footer-socials .social-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-email {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
  display: block;
  margin-top: 0.5rem;
}
.footer-email:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════
   TIMETABLE DAY CARDS (mobile only)
   ═══════════════════════════════════════════ */
.timetable-cards { display: none; }

@media (max-width: 700px) {
  .table-scroll { display: none; }
  .timetable-cards {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 0.25rem;
  }
  .day-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
  }
  .day-card-title {
    background: var(--primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    margin: 0;
    letter-spacing: 0.02em;
  }
  .day-card-table {
    width: 100%;
    border-collapse: collapse;
  }
  .day-card-table th {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    background: rgba(1,200,221,0.07);
    border-bottom: 1px solid var(--border);
  }
  .day-card-table td {
    padding: 0.45rem 0.6rem;
    font-size: 0.78rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: top;
    line-height: 1.35;
  }
  .day-card-table tbody tr:last-child td { border-bottom: none; }
  .day-card-table tbody tr:nth-child(odd) td { background: rgba(1,200,221,0.03); }
  .day-card-table .time-cell {
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    width: 3rem;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE TWEAKS
   ═══════════════════════════════════════════ */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .timetable th, .timetable td { font-size: 0.75rem; padding: 0.4rem 0.5rem; }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
}

/* Hero CTA buttons — stack vertically on mobile */
@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
