/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #f0f0f0;
  background: #0a1128;
  overflow-x: hidden;
}

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

/* Header */
#header {
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 230, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 20px;
  gap: 3rem;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00e6ff;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(0, 230, 255, 0.5);
}

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

.nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}

.nav a:not(.cta-button):hover {
  color: #00e6ff;
  text-shadow: 0 0 8px rgba(0, 230, 255, 0.6);
}

.nav a:not(.cta-button)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00e6ff, #1a4f99);
  transition: width 0.3s;
}

.nav a:not(.cta-button):hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, #00e6ff 0%, #0099cc 100%);
  color: #0a1128;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 20px rgba(0, 230, 255, 0.4);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 230, 255, 0.6);
}

/* Burger Menu */
.burger-toggle {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: #00e6ff;
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.burger-toggle:checked ~ .burger-menu .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-toggle:checked ~ .burger-menu .burger-line:nth-child(2) {
  transform: scale(0);
}

.burger-toggle:checked ~ .burger-menu .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/Abstract_neon_cyan_soundwave_design_with_undulati.jpg")
    center/cover no-repeat;
  z-index: 0;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 17, 40, 0.85) 0%,
    rgba(10, 17, 40, 0.9) 50%,
    rgba(26, 79, 153, 0.7) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  color: #00e6ff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: #d0d0d0;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  padding: 100px 0;
  background: rgba(26, 79, 153, 0.05);
}

.about h2 {
  font-size: 2.8rem;
  color: #00e6ff;
  margin-bottom: 3rem;
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d0d0d0;
}

.about-image img,
.podcast-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: 1px solid rgba(0, 230, 255, 0.2);
}

.about-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 15px;
}

.podcast-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.podcast-image img {
  transition: transform 0.5s ease;
}

.podcast-card:hover .podcast-image img {
  transform: scale(1.1);
}

/* Services Section */
.services {
  padding: 100px 0;
}

.services h2 {
  font-size: 2.8rem;
  color: #00e6ff;
  margin-bottom: 2rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  color: #d0d0d0;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.service-card {
  background: rgba(26, 79, 153, 0.1);
  border: 1px solid rgba(0, 230, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 230, 255, 0.3);
  border-color: rgba(0, 230, 255, 0.5);
}

.service-icon {
  font-size: 3rem;
  color: #00e6ff;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #d0d0d0;
  line-height: 1.7;
}

/* Podcasts Section */
.podcasts {
  padding: 100px 0;
  background: rgba(26, 79, 153, 0.05);
}

.podcasts h2 {
  font-size: 2.8rem;
  color: #00e6ff;
  margin-bottom: 2rem;
  text-align: center;
}

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

.podcast-card {
  background: rgba(26, 79, 153, 0.1);
  border: 1px solid rgba(0, 230, 255, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.podcast-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 230, 255, 0.3);
}

.podcast-card h3 {
  color: #00e6ff;
  font-size: 1.5rem;
  margin: 1.5rem 1.5rem 1rem;
}

.podcast-card p {
  color: #d0d0d0;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
}

.testimonials h2 {
  font-size: 2.8rem;
  color: #00e6ff;
  margin-bottom: 3rem;
  text-align: center;
}

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

.testimonial-card {
  background: rgba(26, 79, 153, 0.1);
  border: 1px solid rgba(0, 230, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 230, 255, 0.2);
}

.testimonial-text {
  color: #d0d0d0;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.testimonial-author {
  color: #00e6ff;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(0, 230, 255, 0.1) 0%,
    rgba(26, 79, 153, 0.2) 100%
  );
}

.cta-section h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  color: #d0d0d0;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact h2 {
  font-size: 2.8rem;
  color: #00e6ff;
  margin-bottom: 3rem;
  text-align: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-item i {
  color: #00e6ff;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.info-item strong {
  display: block;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.info-item span,
.info-item a {
  display: block;
  color: #d0d0d0;
  text-decoration: none;
}

.info-item a:hover {
  color: #00e6ff;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  background: rgba(26, 79, 153, 0.1);
  border: 1px solid rgba(0, 230, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  color: #f0f0f0;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00e6ff;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.3rem;
  width: auto;
}

.checkbox-group label {
  color: #d0d0d0;
  font-size: 0.95rem;
}

.checkbox-group label a {
  color: #00e6ff;
  text-decoration: none;
}

.checkbox-group label a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: rgba(26, 79, 153, 0.05);
}

.faq h2 {
  font-size: 2.8rem;
  color: #00e6ff;
  margin-bottom: 3rem;
  text-align: center;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 79, 153, 0.1);
  border: 1px solid rgba(0, 230, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  color: #00e6ff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #d0d0d0;
  line-height: 1.8;
}

/* Footer */
#footer {
  background: rgba(10, 17, 40, 0.95);
  border-top: 1px solid rgba(0, 230, 255, 0.2);
  padding: 4rem 0 2rem;
}

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

.footer-column h3 {
  color: #00e6ff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-column p {
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.social-links a {
  color: #00e6ff;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #00e6ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 230, 255, 0.1);
  color: #888;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 17, 40, 0.98);
  border-top: 2px solid rgba(0, 230, 255, 0.5);
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 100vw;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  color: #d0d0d0;
  line-height: 1.6;
  min-width: 0;
  word-break: break-word;
}

.cookie-content a {
  color: #00e6ff;
  text-decoration: underline;
}

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

.btn-accept,
.btn-decline {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 0;
}

.btn-accept {
  background: linear-gradient(135deg, #00e6ff 0%, #0099cc 100%);
  color: #0a1128;
  box-shadow: 0 5px 20px rgba(0, 230, 255, 0.4);
}

.btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 230, 255, 0.6);
}

.btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Cookie Banner Form Buttons - inherited styles from .btn-accept and .btn-decline */

/* Responsive Design */
@media (max-width: 900px) {
  .burger-menu {
    display: flex;
  }

  #header .container {
    gap: 1rem;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background: rgba(10, 17, 40, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 2px solid rgba(0, 230, 255, 0.3);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    align-items: flex-start;
  }

  .burger-toggle:checked ~ .nav {
    right: 0;
  }

  .nav a {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons form {
    flex-direction: column;
    width: 100%;
  }

  .btn-accept,
  .btn-decline {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .services h2,
  .podcasts h2,
  .testimonials h2,
  .contact h2,
  .faq h2 {
    font-size: 2.2rem;
  }

  .services-grid,
  .podcasts-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
