/* Google Fonts loaded via <link> tags in HTML for better performance */

:root {
  /* Colors */
  --primary: #0F3460;
  /* Deep Mavi */
  --primary-light: #16213E;
  /* Dark Mavi */
  --secondary: #00A8E8;
  /* Bright Blue Accent */
  --text-main: #FFFFFF;
  --text-muted: #B8B8B8;
  --bg-dark: #0A0F1D;
  --bg-card: rgba(255, 255, 255, 0.05);

  /* Glassmorphism */
  --glass-bg: rgba(15, 52, 96, 0.4);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Utilities */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 12px;
}



/* -- Breadcrumbs -------------------------------------- */
.breadcrumbs {
  padding: 1.5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #94a3b8;
  position: relative;
  z-index: 10;
}

.breadcrumbs a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: white;
}

.breadcrumbs i {
  font-size: 0.7rem;
  opacity: 0.4;
}

/* -- Language Suggestion Banner ----------------------- */
.lang-suggestion {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 40px;
  z-index: 11000;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lang-suggestion.show {
  transform: translateX(-50%) translateY(0);
}

.lang-suggestion p {
  color: white;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.lang-suggestion .btn-sm {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s;
}

.lang-suggestion .btn-sm:hover {
  opacity: 0.9;
}

.lang-suggestion-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}


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

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



/* -- Scroll Reveal Animations ------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1),
    transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Variants */
.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.9);
}

.reveal.active.reveal-left,
.reveal.active.reveal-right,
.reveal.active.reveal-scale {
  transform: translate(0) scale(1);
}

/* -- FAQ Accordion ------------------------------------ */
.faq-section {
  padding: 6rem 5% 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  color: var(--secondary);
}

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

.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  color: #94a3b8;
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-icon-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--secondary);
  transition: transform 0.4s;
}

.faq-item.active .faq-icon-box {
  transform: rotate(180deg);
  background: var(--secondary);
  color: white;
}

/* -- Video Modal (Lightbox) --------------------------- */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-inner {
  width: 100%;
  max-width: 1000px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal.active .video-modal-inner {
  transform: scale(1);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
  line-height: 1;
}

.video-modal-close:hover {
  transform: rotate(90deg);
  color: var(--secondary);
}



/* Stagger delays for grid items */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

/* Glassmorphism Utilities */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 1rem 5%;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-brand img {
  height: 40px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

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

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

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

.lang-switch {
  display: flex;
  gap: 0.5rem;
  font-weight: 600;
}

.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.lang-switch a.active,
.lang-switch a:hover {
  color: var(--text-main);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--primary);
}


.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 1.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slider .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 15, 29, 0.3) 0%, rgba(10, 15, 29, 0.85) 100%);
  z-index: 1;
}

.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: zoomBg 10s infinite alternate linear;
}


@keyframes zoomBg {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

/* Slider Nav */
.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
  background: transparent;
  border: 2px solid var(--secondary);
  box-shadow: 0 0 10px var(--secondary);
  transform: scale(1.3);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.4s ease, visibility 0.4s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 350px;
  filter: drop-shadow(0 0 10px rgba(0, 168, 232, 0));
  animation: preloaderPulse 2.5s infinite ease-in-out;
  margin-bottom: 2rem;
}

@keyframes preloaderPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
    filter: drop-shadow(0 0 5px rgba(0, 168, 232, 0));
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(0, 168, 232, 0.6));
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
    filter: drop-shadow(0 0 5px rgba(0, 168, 232, 0));
  }
}

.preloader-bar {
  width: 150px;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  animation: preloaderLine 1.5s infinite ease-out;
}

@keyframes preloaderLine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}


/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 15;
  backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(0, 168, 232, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 2rem;
}

.slider-arrow.next {
  right: 2rem;
}

@media (max-width: 768px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-arrow.prev {
    left: 1rem;
  }

  .slider-arrow.next {
    right: 1rem;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 15, 29, 0.3) 0%, rgba(10, 15, 29, 0.9) 100%);
  z-index: 5;
  pointer-events: none;
}


.hero-content {
  max-width: 800px;
  z-index: 10;
  position: relative;
  animation: fadeUp 1s ease-out forwards;
}


.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, #b8b8b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--secondary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 168, 232, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 168, 232, 0.6);
  background: #38bdf8;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Sections */
section {
  padding: 6rem 5%;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--secondary);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  height: 350px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.feature-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
  filter: grayscale(40%) brightness(0.7);
}

.feature-card:hover .feature-img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(0.9);
}

.feature-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 15, 29, 1), transparent);
  z-index: 2;
  transition: var(--transition);
}

.feature-card h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.feature-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* -- Footer ------------------------------------------- */

footer {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-dark) 100%);
  padding: 8rem 5% 3rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

/* Footer Glow Effect */
footer::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 168, 232, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4rem;
}

.footer-brand-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.footer-brand-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 350px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: white;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

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

.footer-col ul li {
  margin-bottom: 1.2rem;
}

.footer-col ul li a {
  color: #94a3b8;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: white;
  transform: translateX(8px);
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  color: #94a3b8;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
  color: white;
  border-color: var(--secondary);
  background: var(--secondary);
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 10px 20px rgba(0, 168, 232, 0.3);
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.footer-contact-info i {
  color: var(--secondary);
  margin-top: 4px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  color: #64748b;
  font-size: 0.9rem;
}

.footer-hashtag {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .footer-contact-info li {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}


/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .navbar {
    padding: 1rem 5%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: var(--primary-light);
    flex-direction: column;
    padding: 6rem 2rem;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

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

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  section {
    padding: 4rem 5%;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

/* Flex Expanding Accordion Cards */
.dance-expanding-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 450px;
  margin: 3rem auto;
  gap: 15px;
  padding: 0 5%;
}

.dance-panel {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dance-panel:hover {
  flex: 4;
}

.dance-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.9) 0%, rgba(10, 15, 29, 0.2) 100%);
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.dance-panel:hover::before {
  opacity: 0.6;
}

.dance-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.dance-panel-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
  max-width: 80%;
}

.dance-panel:hover .dance-panel-text {
  opacity: 1;
  transform: translateY(0);
}

.dance-panel-title {
  color: white;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
}

.dance-panel-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
}

.dance-panel:hover .dance-panel-desc {
  display: block;
  animation: fadeUp 0.5s ease forwards;
}

/* Icon / Indicator */
.dance-panel-icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  opacity: 0.6;
}

.dance-panel:hover .dance-panel-icon {
  background: white;
  color: var(--primary);
  transform: scale(1.1) rotate(90deg);
  opacity: 1;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
  border-color: white;
}


@media (max-width: 768px) {
  .dance-expanding-container {
    flex-direction: column;
    height: 800px;
  }

  .dance-panel:hover {
    flex: 2;
  }

  .dance-panel-title {
    font-size: 1.5rem;
  }
}

/* Repertoire Infinite Slider */
.repertoire-carousel {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.repertoire-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding-left: 1.5rem;
  /* transition is removed, managed by JS requestAnimationFrame */
}

/* JS handles hover now, so no need for keyframes or play-state */

.repertoire-card {
  width: calc(25vw - 2rem);
  min-width: 250px;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.repertoire-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
}

.repertoire-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.repertoire-card:hover::before {
  transform: scaleX(1);
}

.rep-title {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
}

.rep-style {
  color: var(--secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: block;
}

.rep-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.rep-kor {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .repertoire-card {
    width: calc(33.33vw - 1.5rem);
  }
}

@media (max-width: 768px) {
  .repertoire-card {
    width: calc(50vw - 1.5rem);
  }
}

@media (max-width: 480px) {
  .repertoire-card {
    width: calc(85vw);
  }
}

/* ======================================================
   EXTRACTED FROM INLINE STYLES
   ====================================================== */

/* -- Shared Layout ------------------------------------ */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
}

.eyebrow-line {
  height: 2px;
  width: 50px;
  background-color: var(--secondary);
  flex-shrink: 0;
}

.eyebrow-label {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.section-heading {
  font-size: 3rem;
  color: white;
  line-height: 1.2;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.accent {
  color: var(--secondary);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-icon {
  margin-right: 8px;
}

.btn-nav {
  padding: 0.6rem 1.5rem !important;
  font-size: 0.9rem !important;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

button.mobile-toggle {
  background: none;
  border: none;
  padding: 0;
}

/* -- Dans Okulu / Dance School ------------------------ */

#dansokulu {
  background-color: var(--primary-light);
  padding: 5rem 0;
}

.dansokulu-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  margin-bottom: 3rem;
}

.dansokulu-intro {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  border-left: 4px solid var(--secondary);
}

.dansokulu-main {
  flex: 1.5;
  min-width: 300px;
}

.dansokulu-main h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.dansokulu-main p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.dansokulu-aside {
  flex: 1;
  min-width: 300px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 2rem;
}

.dansokulu-aside h3 {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.dansokulu-aside p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.dansokulu-contact-btn {
  border-radius: 8px !important;
  padding: 0.8rem 1.5rem !important;
  width: 100%;
  text-align: center;
}

.btn-icon-envelope {
  margin-right: 8px;
  color: var(--secondary);
}

/* -- Hakkimizda / About ------------------------------- */

#hakkimizda,
#about_us {
  padding: 8rem 5%;
  position: relative;
  background-color: var(--primary);
  overflow: hidden;
}

.about-watermark {
  position: absolute;
  top: 5%;
  left: -2%;
  font-size: 14vw;
  font-family: var(--font-heading);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.about-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.about-text-col {
  flex: 1.2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-eyebrow {
  margin-bottom: 2rem;
}

.about-heading {
  font-size: 3rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}


.about-body {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-body strong {
  color: white;
  font-weight: 600;
}

.about-sub {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.about-feature-box {
  flex: 1;
  min-width: 150px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--secondary);
}

.about-feature-box i {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.about-feature-box h4 {
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.about-feature-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.about-img-col {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--secondary);
  filter: blur(120px);
  opacity: 0.3;
  border-radius: 50%;
  z-index: 0;
}

.about-img-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.about-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9);
}

.about-img-inner-border {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--secondary);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-badge-year {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  /* Contrast on primary bg badge always white */
  font-family: var(--font-heading);
  line-height: 1;
}


.about-badge-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

.about-badge-label {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* -- Repertuar ---------------------------------------- */

#repertuar {
  padding: 6rem 0;
  background-color: var(--primary-light);
  overflow: hidden;
}

.repertuar-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  margin-bottom: 2rem;
}

/* -- Biz / Team --------------------------------------- */

#biz {
  padding: 6rem 0;
  background-color: var(--primary);
  border-top: 10px solid var(--primary-light);
}

.biz-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.biz-heading {
  font-size: 3rem;
  color: var(--text-main);
  margin-bottom: 3.5rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}


/* -- Team Portrait Cards (moved from inline style tag) - */

.team-portrait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tp-card {
  background: #0d1b2e;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  outline: none;
}

.tp-card:hover,
.tp-card:focus-visible {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 168, 232, 0.35);
  border-color: rgba(0, 168, 232, 0.35);
}

.tp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), #38bdf8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 10;
}

.tp-card:hover::before,
.tp-card:focus-visible::before {
  transform: scaleX(1);
}

.tp-img-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.tp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
  filter: brightness(0.92);
}

.tp-card:hover .tp-img-wrap img {
  transform: scale(1.07);
  filter: brightness(0.75);
}

.tp-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, #0d1b2e 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.tp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 120, 200, 0.18);
  backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.tp-card:hover .tp-overlay,
.tp-card:focus-visible .tp-overlay {
  opacity: 1;
}

.tp-cta {
  background: var(--secondary);
  color: white;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 168, 232, 0.4);
  transform: translateY(6px);
  transition: transform 0.35s ease;
}

.tp-card:hover .tp-cta,
.tp-card:focus-visible .tp-cta {
  transform: translateY(0);
}

.tp-info {
  padding: 1.4rem 1.5rem 1.8rem;
}

.tp-name {
  color: white;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.tp-role {
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.85rem;
}

.tp-bio {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

@media (max-width: 960px) {
  .team-portrait-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .team-portrait-grid {
    grid-template-columns: 1fr;
  }

  .tp-img-wrap {
    height: 260px;
  }
}

/* -- Team Modal --------------------------------------- */

.team-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 29, 0.92);
  z-index: 10000;
  overflow-y: auto;
  padding: 2rem;
}

.team-modal-inner {
  max-width: 720px;
  margin: 4rem auto;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  animation: fadeUp 0.35s ease-out;
}


.team-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.team-modal-close:hover,
.team-modal-close:focus-visible {
  color: white;
  outline: 2px solid var(--secondary);
  outline-offset: 4px;
  border-radius: 4px;
}

.modal-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.modal-profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--secondary);
  box-shadow: 0 0 20px rgba(0, 168, 232, 0.3);
  flex-shrink: 0;
}

.modal-profile-name {
  color: var(--text-main);
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}


.modal-profile-role {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.modal-bio {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1rem;
}

.modal-bio p {
  margin-bottom: 1rem;
}


/* -- Iletisim / Contact ------------------------------- */

#iletisim {
  padding: 6rem 0;
  background-color: var(--primary);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.contact-heading {
  font-size: 3rem;
  color: var(--text-main);
  margin-bottom: 3rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}


.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.contact-col {
  flex: 1;
  min-width: 300px;
}

.contact-col-wide {
  flex: 1.2;
  min-width: 300px;
}

.contact-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}


.contact-info-list {
  margin-bottom: 2rem;
}

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

.contact-info-icon {
  background: rgba(0, 168, 232, 0.1);
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-title {
  color: var(--text-main);
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.contact-info-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.5;
}


.contact-info-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.contact-info-link:hover {
  color: var(--secondary);
}

.contact-form {
  padding: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}


.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.3s;
  font-family: var(--font-body);
  font-size: 1rem;
}


.form-input:focus,
.form-textarea:focus {
  border-color: var(--secondary);
}

.form-textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit .fa-whatsapp {
  font-size: 1.3rem;
}

.contact-map {
  margin-top: 5rem;
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(110%);
}

/* -- News / Announcements ----------------------------- */

.news-section {
  background-color: var(--primary-light);
  padding: 5rem 5%;
}

.news-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.news-text-col {
  flex: 1;
  min-width: 300px;
}

.news-badge {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(0, 168, 232, 0.2);
  color: var(--secondary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.news-badge i {
  margin-right: 5px;
}

.news-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.news-date {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.news-date i {
  margin-right: 8px;
  color: var(--secondary);
}

.news-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.news-img-col {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.news-event-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}

.news-event-img:hover {
  transform: rotate(0deg) scale(1.05);
}

/* -- Floating Social Media ----------------------------- */

.floating-social {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-social.show {
  opacity: 1;
  visibility: visible;
}

.social-toggle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  position: relative;
}

.social-toggle-btn:hover {
  background: white;
  color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons.active {
  max-height: 300px; /* enough to show all icons */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 52, 96, 0.4);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icons a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 168, 232, 0.5);
}

/* -- Footer overrides (removed for clean redesign) */