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

:root {
  --bg-color: #050505;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;
  --accent-red: #E61E2A;
  --accent-red-hover: #C5131E;
  --accent-red-glow: rgba(230, 30, 42, 0.15);
  --border-color: #222222;
  --border-color-hover: #333333;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  
  --br-sm: 8px;
  --br-md: 16px;
  --br-lg: 28px;
  --br-full: 9999px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base resets & document settings */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #1F1F1F;
  border-radius: var(--br-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

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

/* Structural utility classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

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

/* Dynamic design background blobs */
.blob-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: var(--br-full);
  filter: blur(100px);
  opacity: 0.12;
  transition: var(--transition-smooth);
}

.blob-red {
  background: var(--accent-red);
  width: 40vw;
  height: 40vw;
  top: 10%;
  right: -10%;
}

.blob-white {
  background: #FFFFFF;
  width: 35vw;
  height: 35vw;
  bottom: 15%;
  left: -10%;
}

/* Fixed Glassmorphic Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 90px;
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: rgba(230, 30, 42, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--text-primary);
}

.logo-image {
  height: 66px;
  max-width: 180px;
  object-fit: contain;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .logo-image {
  height: 52px;
}

.logo-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #A0A0A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

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

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

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

.nav-cta {
  background: var(--accent-red);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--br-full);
  font-weight: 600;
  font-size: 12.5px;
  box-shadow: 0 4px 15px var(--accent-red-glow);
}

.nav-cta:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 30, 42, 0.3);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--br-full);
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0A0A0A;
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    z-index: 999;
    transition: var(--transition-smooth);
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* Common Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--br-full);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-red);
  color: #FFFFFF;
  box-shadow: 0 8px 24px var(--accent-red-glow);
}

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(230, 30, 42, 0.35);
}

.btn-secondary {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(rgba(5, 5, 5, 0.45), rgba(5, 5, 5, 0.85)), url('../img/hero_studio.jpg') no-repeat center center/cover;
  background-attachment: fixed;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.hero-headline {
  font-size: 72px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(to right, #FFFFFF, #F0F0F0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
  .hero-headline {
    font-size: 52px;
  }
}

@media (max-width: 576px) {
  .hero-headline {
    font-size: 38px;
  }
}

.hero-subheadline {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
  .hero-subheadline {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Problema Section */
.problema-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-color) 0%, #0A0A0A 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.problema-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.problema-tag {
  color: var(--accent-red);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: inline-block;
}

.problema-text {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .problema-text {
    font-size: 20px;
  }
}

/* Diferencial "Todo en un solo lugar" */
.diferencial-section {
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 44px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
}

.diferencial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.diferencial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--br-md);
  padding: 40px 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.diferencial-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(230, 30, 42, 0.05);
}

.diferencial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(230, 30, 42, 0.05), transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.diferencial-card:hover::before {
  opacity: 1;
}

.diferencial-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--br-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.diferencial-card:hover .diferencial-icon {
  background: rgba(230, 30, 42, 0.1);
  border-color: rgba(230, 30, 42, 0.2);
}

.diferencial-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.diferencial-card p {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 300;
}

/* Servicios Grid */
.servicios-section {
  background: #090909;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

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

.servicio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--br-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  transition: var(--transition-smooth);
}

.servicio-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.servicio-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 30, 42, 0.08);
  border: 1px solid rgba(230, 30, 42, 0.18);
  border-radius: var(--br-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.servicio-card:hover .servicio-icon {
  background: rgba(230, 30, 42, 0.15);
  border-color: rgba(230, 30, 42, 0.35);
  box-shadow: 0 0 15px rgba(230, 30, 42, 0.15);
}

.servicio-header h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.servicio-desc {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 30px;
  font-weight: 300;
}

.servicio-footer {
  margin-top: auto;
}

.servicio-price {
  font-size: 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.servicio-price span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
}

.btn-servicio {
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
}

/* Cursos Section */
.cursos-section {
  position: relative;
}

.cursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

@media (max-width: 768px) {
  .cursos-grid {
    grid-template-columns: 1fr;
  }
}

.curso-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--br-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}

.curso-card:hover {
  border-color: rgba(230, 30, 42, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.curso-img-container {
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

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

.curso-card:hover .curso-card-img {
  transform: scale(1.04);
}

.curso-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.curso-header {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.curso-badge {
  align-self: flex-start;
  background: rgba(230, 30, 42, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(230, 30, 42, 0.2);
  padding: 4px 12px;
  border-radius: var(--br-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.curso-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.curso-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.5;
}

.curso-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.curso-price {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-heading);
}

/* Testimonios Section */
.testimonios-section {
  background: #090909;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.testimonio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--br-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonio-stars {
  color: var(--accent-red);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonio-text {
  font-style: italic;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6;
}

.testimonio-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonio-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--br-full);
  background: #222;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 16px;
}

.testimonio-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonio-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Misión & Visión Section */
.mision-section {
  position: relative;
  background: linear-gradient(rgba(5, 5, 5, 0.75), rgba(5, 5, 5, 0.75)), url('../img/studio_mic.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  padding: 120px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.mision-box {
  background: rgba(17, 17, 17, 0.60);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--br-lg);
  padding: 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .mision-section {
    padding: 80px 0;
    background-attachment: scroll;
  }
  .mision-box {
    padding: 40px 24px;
  }
}

.mision-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.mision-text {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mision-text {
    font-size: 16px;
  }
}

/* FAQ (Accordion) */
.faq-section {
  background: #090909;
  border-top: 1px solid var(--border-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(0, 0, 0, 0.1);
}

.faq-answer-inner {
  padding: 0 32px 24px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 300;
}

/* Active FAQ Item state */
.faq-item.active {
  border-color: rgba(230, 30, 42, 0.3);
}

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

.faq-item.active .faq-answer {
  max-height: 300px; /* arbitrary height to slide down */
}

/* Contact CTA Block (Home page) */
.contact-cta-section {
  position: relative;
}

.contact-cta-box {
  background: linear-gradient(135deg, #111111 0%, #060606 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--br-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.contact-cta-text {
  padding: 80px;
}

.contact-cta-box h2 {
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact-cta-box p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-cta-img-wrapper {
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.contact-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.contact-cta-box:hover .contact-cta-img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .contact-cta-text {
    padding: 50px;
  }
  .contact-cta-box h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .contact-cta-box {
    grid-template-columns: 1fr;
  }
  .contact-cta-text {
    padding: 40px 24px;
    text-align: center;
  }
  .contact-cta-img-wrapper {
    min-height: 280px;
  }
}

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

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 30, 42, 0.1);
  border: 1px solid rgba(230, 30, 42, 0.2);
  border-radius: var(--br-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  flex-shrink: 0;
}

.contact-info-details h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-info-details p, .contact-info-details a {
  color: var(--text-secondary);
  font-size: 15px;
}

.contact-info-details a:hover {
  color: var(--accent-red);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--br-lg);
  padding: 48px;
}

@media (max-width: 480px) {
  .contact-form {
    padding: 24px;
  }
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background: #070707;
  border: 1px solid var(--border-color);
  border-radius: var(--br-sm);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 10px rgba(230, 30, 42, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Booking Modal Dialog */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--br-lg);
  width: 100%;
  max-width: 520px;
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  color: var(--text-secondary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--br-full);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.modal-title {
  font-size: 28px;
  margin-bottom: 12px;
  padding-right: 32px;
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
}

/* Time Slot selection grids */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.time-slot-btn {
  background: #0D0D0D;
  border: 1px solid var(--border-color);
  padding: 10px;
  font-size: 14px;
  border-radius: var(--br-sm);
  text-align: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.time-slot-btn:hover {
  border-color: var(--accent-red);
  background: rgba(230, 30, 42, 0.05);
}

.time-slot-btn.selected {
  background: var(--accent-red);
  color: #FFFFFF;
  border-color: var(--accent-red);
  box-shadow: 0 4px 10px var(--accent-red-glow);
}

/* Fixed WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-red);
  border-radius: var(--br-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
  box-shadow: 0 8px 30px rgba(230, 30, 42, 0.4);
  z-index: 1500;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(230, 30, 42, 0.6);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Footer styling */
.footer {
  background: var(--accent-red);
  border-top: none;
  padding: 80px 0;
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-about h3 {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.80);
}

.footer-links-col h4 {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.90);
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.90);
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #FFFFFF;
}

/* ----------------------------------------- */
/* ADMIN DASHBOARD SPECIFIC STYLES            */
/* ----------------------------------------- */
.admin-login-body {
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--br-lg);
  padding: 48px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.login-logo {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.login-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
}

.admin-header {
  border-bottom: 1px solid var(--border-color);
  background: #080808;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}

.admin-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-title {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-title span {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: var(--br-full);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.admin-nav {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
  padding-top: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.admin-nav::-webkit-scrollbar {
  display: none;
}

.admin-tab-btn {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
}

.admin-tab-btn:hover {
  color: var(--text-primary);
}

.admin-tab-btn.active {
  color: var(--accent-red);
  border-bottom-color: var(--accent-red);
}

.admin-tab-content {
  display: none;
  padding-top: 40px;
}

.admin-tab-content.active {
  display: block;
}

.admin-form-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--br-md);
  padding: 32px;
  margin-bottom: 32px;
}

.admin-form-section h3 {
  font-size: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.admin-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.admin-preview-logo {
  max-height: 50px;
  background: #1a1a1a;
  padding: 10px;
  border-radius: var(--br-sm);
  display: inline-block;
  margin-top: 10px;
}

.admin-card-manager {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-manager-item {
  background: #080808;
  border: 1px solid var(--border-color);
  border-radius: var(--br-sm);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 600px) {
  .admin-manager-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.admin-item-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.admin-item-info p {
  font-size: 13px;
  color: var(--text-secondary);
}

.admin-item-actions {
  display: flex;
  gap: 8px;
}

.btn-icon {
  width: 36px;
  height: 36px;
  background: #111;
  border: 1px solid var(--border-color);
  border-radius: var(--br-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-icon:hover {
  background: #222;
  color: var(--text-primary);
}

.btn-icon-delete:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #FFFFFF;
}

/* Toast/Alert notification banner */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #161616;
  border: 1px solid var(--accent-red);
  padding: 16px 32px;
  border-radius: var(--br-full);
  z-index: 3000;
  opacity: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(230, 30, 42, 0.1);
  transition: var(--transition-smooth);
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* File upload custom button */
.file-upload-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.file-upload-btn {
  display: block;
  text-align: center;
  background: #080808;
  border: 1px dashed var(--border-color);
  padding: 24px;
  border-radius: var(--br-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-secondary);
}

.file-upload-btn:hover {
  border-color: var(--accent-red);
  color: var(--text-primary);
}

.file-upload-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Native Dialog Styling */
dialog {
  border: none;
  background: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

dialog[open] .modal-content {
  transform: scale(1) translateY(0);
}

/* ----------------------------------------- */
/* MODERN SCROLL REVEAL ANIMATIONS           */
/* ----------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    
    @keyframes reveal-up {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .scroll-reveal {
      animation: reveal-up auto linear forwards;
      animation-timeline: view();
      animation-range: entry 5% entry 40%;
    }
    
    .scroll-reveal-slow {
      animation: reveal-up auto linear forwards;
      animation-timeline: view();
      animation-range: entry 1% entry 25%;
    }
  }
}

/* Fallback class for IntersectionObserver */
.reveal-fallback {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fallback.revealed {
  opacity: 1;
  transform: translateY(0);
}
