/* RESET & CORE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #0f172a;
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: #6366f1;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #a855f7;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #334155;
}
.btn-secondary:hover {
  background-color: #1e293b;
  border-color: #6366f1;
}
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}
.btn-block {
  width: 100%;
  display: block;
}

/* HEADER & NAVIGATION */
.main-header {
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #334155;
  padding: 1rem 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}
.logo img {
  border-radius: 50%;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: #94a3b8;
  font-weight: 500;
}
.nav-links a:hover {
  color: #fff;
}
.burger {
  display: none;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* HERO SECTION */
.hero {
  padding: 5rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.badge {
  display: inline-block;
  background-color: rgba(99, 102, 241, 0.2);
  color: #818cf8;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.3);
}
.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text p {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
}
.glow-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
  border: 1px solid #334155;
}

/* INNER HERO */
.inner-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-bottom: 1px solid #334155;
  text-align: center;
}
.inner-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.inner-hero p {
  color: #94a3b8;
  font-size: 1.1rem;
}

/* FEATURES */
.features {
  padding: 5rem 0;
  background-color: #0b1120;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.section-header p {
  color: #94a3b8;
  font-size: 1.1rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  background-color: #1e293b;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #334155;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: #6366f1;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.feature-card p {
  color: #94a3b8;
}

/* STUDIO PREVIEW */
.studio-preview {
  padding: 5rem 0;
}
.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}
.studio-card {
  background-color: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #334155;
}
.studio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.studio-card-content {
  padding: 2rem;
}
.studio-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.studio-card-content p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.price {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #a855f7;
  margin-bottom: 1.5rem;
}

/* TESTIMONIALS */
.testimonials {
  padding: 5rem 0;
  background-color: #0b1120;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background-color: #1e293b;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}
.client-info strong {
  display: block;
  color: #fff;
}
.client-info span {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* SERVICES DETAILED PAGE */
.services-detail {
  padding: 5rem 0;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.service-row.reverse {
  direction: rtl;
}
.service-row.reverse .service-info,
.service-row.reverse .service-img {
  direction: ltr;
}
.service-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  border: 1px solid #334155;
  height: 350px;
  object-fit: cover;
}
.service-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service-info p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.service-info ul {
  list-style: none;
  margin-bottom: 2rem;
}
.service-info ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #cbd5e1;
}
.service-info ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

/* ABOUT CONTENT */
.about-content {
  padding: 5rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.about-text p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

/* FAQ SECTION */
.faq-section {
  padding: 5rem 0;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #334155;
  padding: 1.5rem 0;
}
.faq-item-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item-question span {
  font-size: 1.5rem;
  color: #6366f1;
  transition: transform 0.3s ease;
}
.faq-item-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item-answer p {
  padding-top: 1rem;
  color: #94a3b8;
}
.faq-item.active .faq-item-question span {
  transform: rotate(45deg);
}
.faq-item.active .faq-item-answer {
  max-height: 200px;
}

/* BOOKING SECTION & FORM */
.booking-section {
  padding: 5rem 0;
  background: radial-gradient(circle at 10% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  border-top: 1px solid #334155;
}
.booking-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.booking-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.booking-info p {
  color: #94a3b8;
  margin-bottom: 2rem;
}
.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bullet {
  font-size: 1.1rem;
  font-weight: 500;
}
.booking-form-wrapper {
  background-color: #1e293b;
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid #334155;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}
.form-group input,
.form-group select {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background-color: #0f172a;
  border: 1px solid #334155;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #6366f1;
}
.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.8rem;
}
.checkbox-group input {
  margin-top: 0.3rem;
  cursor: pointer;
}
.checkbox-group label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: normal;
}

/* CONTACT PAGE SPECIFIC */
.contact-section {
  padding: 5rem 0;
}
.contact-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.contact-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.contact-item p {
  color: #94a3b8;
}
.map-wrapper {
  margin-top: 2rem;
}

/* LEGAL PAGES */
.legal-section {
  padding: 5rem 0;
  max-width: 800px;
  margin: 0 auto;
}
.legal-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-section h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-section p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

/* THANK YOU & 404 STYLES */
.thank-you-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #0f172a;
}
.thank-you-card {
  background-color: #1e293b;
  padding: 4rem 3rem;
  border-radius: 16px;
  border: 1px solid #334155;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.error-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.thank-you-card h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.thank-you-card p {
  color: #94a3b8;
  margin-bottom: 2.5rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e293b;
  border-top: 1px solid #334155;
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
}
.cookie-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-content p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 0;
  flex: 1;
}

/* FOOTER */
.main-footer {
  background-color: #0b1120;
  border-top: 1px solid #334155;
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
  color: #94a3b8;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}
.footer-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .booking-container {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-row.reverse {
    direction: ltr;
  }
  .service-row.reverse .service-info,
  .service-row.reverse .service-img {
    direction: ltr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: 0px;
    height: 92vh;
    top: 8vh;
    background-color: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    box-shadow: -10px 0 20px rgba(0,0,0,0.5);
    padding-top: 5rem;
    z-index: 999;
  }
  .nav-links li {
    opacity: 0;
  }
  .burger {
    display: block;
    z-index: 1000;
  }
  .nav-active {
    transform: translateX(0%);
  }
  .studio-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-container, .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
}

.nav-active li {
  animation: navLinkFade 0.5s ease forwards 0.2s;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}