/* ===================
   GC Dance Academy Style
   =================== */

:root {
  --color-primary: #6C25FF;
  --color-secondary: #FF2E93;
  --color-accent1: #8926E9;
  --color-accent2: #A628D3;
  --color-background1: #000000;
  --color-background2: #000000;
  --color-text1: #FFFFFF;
  --color-text2: #B4B4B4;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--color-background1);
  color: var(--color-text1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--color-secondary);
  z-index: 1001;
  pointer-events: none;
}

/* ========== NAVBAR ========== */
.navbar {
  background: rgba(3, 3, 5, 0.85);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text1);
}

.logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
  z-index: 20;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: var(--color-text1);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

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

.nav-phone,
.nav-app {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text1);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(255, 46, 147, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-phone:hover,
.nav-app:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 46, 147, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-text1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(4, 4, 6, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 1rem 1rem;
    padding: 1.25rem 1rem;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .nav-actions.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    gap: 0.75rem;
    background: rgba(4, 4, 6, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem;
  }

  .nav-actions .nav-phone,
  .nav-actions .nav-app {
    width: 100%;
    justify-content: center;
  }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-switch a {
  text-decoration: none;
  color: var(--color-text2);
  transition: all 0.3s;
  padding: 0.2rem;
}

.lang-switch a:hover {
  color: var(--color-text1);
}

.lang-switch a.active {
  color: var(--color-text1);
  color: var(--color-secondary);
}

.lang-switch span {
  color: var(--color-text2);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .lang-switch {
    margin: 0;
    padding: 1rem 0 0 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    width: 100%;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: radial-gradient(circle at top right, rgba(255, 46, 147, 0.25), transparent 45%),
    radial-gradient(circle at bottom left, rgba(108, 37, 255, 0.3), transparent 40%),
    #050007;
  padding: 8rem 0 4rem;
  color: var(--color-text1);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../images/hero.jpg') no-repeat center top/cover;
  opacity: 0.15;
  z-index: 0;
  filter: blur(2px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: 3.2rem;
  margin: 0.5rem 0 1rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-secondary);
}

.hero-desc {
  color: var(--color-text2);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-primary {
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text1);
  box-shadow: 0 12px 30px rgba(255, 46, 147, 0.35);
}

.hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-text1);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-meta div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  text-align: center;
  min-width: 120px;
}

.hero-meta span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero-video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-control-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 10;
  transition: all 0.3s ease;
}

.video-control-btn:hover {
  background: rgba(255, 46, 147, 0.6);
  transform: scale(1.1);
}

.video-control-btn.audio-btn {
  top: 65px;
}

/* ========== ACADEMIC CALENDAR ========== */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.calendar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.calendar-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-card-header i {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

.calendar-card.events .calendar-card-header i {
  color: var(--color-primary);
}

.calendar-card-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.calendar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calendar-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border-left: 3px solid var(--color-secondary);
  transition: all 0.3s ease;
}

.calendar-card.events .calendar-list li {
  border-left-color: var(--color-primary);
}

.calendar-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.calendar-date {
  font-size: 0.85rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.calendar-card.events .calendar-date {
  color: var(--color-primary);
}

.calendar-event {
  font-size: 1rem;
  color: var(--color-text1);
}

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

  .calendar-card {
    padding: 1.25rem;
  }
}

.calendar-notes {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calendar-notes p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--color-text2);
  line-height: 1.5;
  margin: 0;
}

.calendar-notes p i {
  flex-shrink: 0;
  margin-top: 2px;
}

.calendar-notes p:first-child i {
  color: var(--color-primary);
}

.calendar-notes p:last-child i {
  color: #f59e0b;
}

.hero-video-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

.hero-video-badge p {
  margin: 0;
  font-weight: 600;
}

.hero-video-badge span {
  font-size: 0.85rem;
  color: var(--color-text2);
}

.hero-schedule {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
}

.hero-schedule ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-schedule li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-schedule li span {
  font-weight: 600;
  color: var(--color-secondary);
}

.hero-pill-row {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  color: var(--color-text2);
  font-size: 0.9rem;
}

/* Micro-interactions for all buttons */
button,
.cta-button,
.btn {
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover,
.cta-button:hover,
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--color-secondary);
}

button:active,
.cta-button:active,
.btn:active {
  transform: scale(0.95);
}

button::after,
.cta-button::after,
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
  transform: skewX(-20deg);
}

button:hover::after,
.cta-button:hover::after,
.btn:hover::after {
  left: 100%;
}

/* ========== ABOUT ========== */
.section-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.about-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-media-pill {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 14px;
  padding: 0.8rem 1rem;
}

.about-media-pill p {
  margin: 0;
  font-weight: 600;
}

.about-media-pill span {
  font-size: 0.85rem;
  color: var(--color-text2);
}

.about-content h2 {
  margin: 0.5rem 0 1rem;
}

.about-content p {
  color: var(--color-text2);
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.about-pill-row span {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

.about-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.about-stats div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  min-width: 120px;
  text-align: center;
}

.about-stats span {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text1);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.section-head p {
  color: var(--color-text2);
  max-width: 520px;
}

.section-pill {
  align-self: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.program-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x proximity;
}

.program-rail::-webkit-scrollbar {
  height: 6px;
}

.program-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.program-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  min-width: 260px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.program-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(255, 46, 147, 0.4), rgba(108, 37, 255, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.program-card p {
  color: var(--color-text2);
  margin: 0;
}

.program-card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--color-text2);
  font-size: 0.9rem;
}

.program-card ul li::before {
  content: "•";
  color: var(--color-secondary);
  margin-right: 0.35rem;
}

/* ========== PROGRAMLAR ========== */
.program-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Glassmorphism kart tasarımı ve animasyonlar */
.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

@keyframes icon-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

@keyframes icon-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
  display: inline-block;
  animation: icon-pulse 3s infinite;
}

.card:hover i {
  animation: icon-spin 1s linear infinite;
}

.card-btn {
  margin-top: 1rem;
  display: inline-block;
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--color-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.card-btn:hover {
  background: var(--color-secondary);
  color: var(--color-text1);
}

/* ========== EĞİTMENLER ========== */
.instructors-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.instructors-head p {
  color: var(--color-text2);
}

.instructors-pill {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.instructors-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x proximity;
}

.instructors-rail::-webkit-scrollbar {
  height: 6px;
}

.instructors-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.mentor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  height: 100%;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.mentor-img {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.mentor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mentor-card:hover .mentor-img img {
  transform: scale(1.05);
}

.mentor-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
}

.mentor-img .badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mentor-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mentor-body p {
  color: var(--color-text2);
  margin: 0;
}

.mentor-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--color-text2);
}

.mentor-body ul li::before {
  content: "•";
  color: var(--color-secondary);
  margin-right: 0.35rem;
}

@media (max-width: 768px) {
  .container {
    max-width: calc(100% - 2rem);
  }

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

  .program-rail {
    gap: 0.75rem;
  }

  .instructors-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .instructors-pill {
    width: 100%;
    justify-content: space-between;
  }

  .instructors-rail {
    gap: 0.75rem;
  }

  .mentor-card {
    min-width: 40px;
  }

  .mentor-img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .section-card {
    padding: 1rem;
  }

  .program-rail {
    flex-direction: column;
    overflow: visible;
  }

  .instructors-rail {
    flex-direction: column;
    overflow: visible;
  }

  .mentor-card {
    min-width: 100%;
  }

  .mentor-img {
    height: 200px;
  }

  .mentor-body {
    padding: 1rem;
  }

  .mentor-body ul {
    font-size: 0.85rem;
  }
}

/* ========== GALERİ ========== */
.gallery-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.gallery-intro p {
  color: var(--color-text2);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0;
}

.eyebrow.accent {
  color: var(--color-primary);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-feature {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
  min-height: 420px;
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-feature figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

.gallery-feature .tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.3rem;
}

.gallery-feature h3 {
  margin: 0 0 0.4rem;
}

.gallery-feature p {
  margin: 0;
  color: var(--color-text2);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 1rem;
}

.mosaic-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mosaic-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.9rem;
}

.mosaic-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(120deg, rgba(255, 46, 147, 0.3), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mosaic-item:hover img {
  transform: scale(1.08);
}

.mosaic-item:hover::after {
  opacity: 1;
}

.mosaic-item.tall {
  grid-row: span 2;
}

.mosaic-item.wide {
  grid-column: span 2;
}

.gallery-media {
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.media-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.media-head p {
  color: var(--color-text2);
}

.media-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  color: var(--color-text2);
}

.video-stack {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
}

.video-stack::-webkit-scrollbar {
  height: 6px;
}

.video-stack::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.video-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 260px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.video-meta .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  margin-bottom: 0.3rem;
}

.video-meta h4 {
  margin: 0;
}

.video-meta .desc {
  margin: 0.2rem 0 0;
  color: var(--color-text2);
}

.video-meta .file-size {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--color-secondary);
}

.video-embed {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  width: 100%;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
  border: 0;
}

@media (max-width: 960px) {
  .gallery-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gallery-feature {
    min-height: 320px;
  }

  .gallery-mosaic {
    display: flex;
    flex-direction: column;
  }

  .gallery-media {
    padding: 1rem;
  }

  .video-stack {
    flex-direction: column;
    overflow: visible;
    gap: 0.75rem;
  }

  .video-card {
    width: 100%;
    padding: 0.75rem;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    min-width: unset;
  }

  .video-embed {
    width: 120px;
    flex-shrink: 0;
  }

  .video-meta h4 {
    font-size: 1rem;
  }
}

/* Video poster ve play overlay */
.video-poster {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-overlay i {
  font-size: 2.5rem;
  color: var(--color-text1);
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 30px rgba(255, 46, 147, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-overlay:hover i {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 46, 147, 0.5);
}

/* Media modal (resim ve video için) */
/* Media modal (resim ve video için) */
.media-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  /* Blur yerine düz siyah opak arka plan */
  justify-content: center;
  align-items: center;
  z-index: 10000;
  /* Çok yüksek z-index */
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  /* Taşmaları engelle */
}

.media-modal.show {
  display: flex !important;
}

.media-modal img,
.media-modal video {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  /* Inline boşluklarını önle */
  margin: auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.media-modal video {
  background: #000;
  outline: none;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 2001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Mobile modal optimization */
@media (max-width: 768px) {

  .media-modal img,
  .media-modal video {
    max-width: 100vw;
    max-height: 100vh;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    font-size: 2rem;
    width: 44px;
    height: 44px;
  }

  .play-overlay i {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
}

/* Gallery feature image cursor */
.gallery-feature {
  cursor: pointer;
}

/* ========== CONTACT ========== */
.contact-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-head h2 {
  margin: 0.3rem 0;
}

.contact-head p {
  color: var(--color-text2);
  max-width: 540px;
}

.contact-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text1);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(255, 46, 147, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 46, 147, 0.45);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.contact-pill {
  border-radius: 16px;
  padding: 1.25rem;
  background: radial-gradient(circle at top right, rgba(255, 46, 147, 0.2), transparent),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.25rem;
}

.contact-pill p {
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.contact-pill span {
  color: var(--color-text2);
  font-size: 0.9rem;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.contact-link-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text1);
  text-decoration: none;
}

.contact-link-card i {
  font-size: 1.4rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.contact-link-card h4 {
  margin: 0;
}

.contact-link-card p {
  margin: 0.2rem 0;
}

.contact-link-card span {
  font-size: 0.8rem;
  color: var(--color-text2);
}

.contact-link-card[href*="apple.com"] {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.contact-hours {
  margin-top: 1.5rem;
}

.contact-hours h4 {
  margin-bottom: 0.8rem;
}

.contact-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.contact-map-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  border: 0;
  filter: invert(85%) hue-rotate(180deg);
}

.campus-list {
  display: grid;
  gap: 1rem;
}

.campus-list article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.campus-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.campus-head span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
}

.campus-meta {
  font-size: 0.8rem;
  color: var(--color-text2);
  margin: 0.4rem 0 0;
}

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

@media (max-width: 600px) {
  .contact-head {
    align-items: flex-start;
  }

  .contact-call-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--color-background1);
  text-align: center;
  padding: 2rem 1rem;
  color: var(--color-text2);
  border-top: 1px solid var(--color-accent1);
}

.social-icons {
  margin-bottom: 1rem;
}

.social-icons a {
  color: var(--color-accent1);
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--color-primary);
}

/* ===================
   Mobile Optimization
   =================== */
@media (max-width: 768px) {
  .section {
    padding: 2rem 0;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-media {
    order: -1;
  }

  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .program-rail {
    flex-direction: column;
    overflow: visible;
  }

  .program-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .program-card {
    min-width: unset;
  }

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

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .hero-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Video Loader & Error State */
.video-loader {
  display: none;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: var(--color-secondary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2002;
}

.media-modal.loading .video-loader {
  display: block;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.video-error-msg {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 99, 71, 0.5);
}

.media-modal.error .video-error-msg {
  display: block;
}

.video-error-msg i {
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 0.5rem;
  display: block;
}

/* Video Görüntü Fix */
.media-modal video {
  width: 100% !important;
  height: 100% !important;
}

/* ========== CONTACT FORM ========== */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-panel {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.contact-form-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text1);
}

.contact-form-panel p {
  color: var(--color-text2);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text1);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text1);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 2px rgba(255, 0, 102, 0.2);
}

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

.form-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 0, 102, 0.3);
}

.form-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: none;
}

.form-result.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.form-result.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* KVKK Checkbox */
.kvkk-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text2);
}

.kvkk-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-secondary);
  cursor: pointer;
}

.kvkk-checkbox a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.kvkk-checkbox a:hover {
  color: var(--color-primary);
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--color-text2);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

@media (max-width: 900px) {
  .contact-main-row {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    order: 1;
  }

  .contact-map-panel {
    order: 2;
  }
}

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

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

/* Mobil Native Video Modu */
.video-modal.mobile-native {
  background: black !important;
  /* Arka plan tam siyah */
}

.video-modal.mobile-native .video-modal-content {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  width: 100%;
  height: 100%;
}

.video-modal.mobile-native .modal-close {
  display: none !important;
  /* Çarpı butonunu gizle */
}

.video-modal.mobile-native video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========== YENİ VİDEO GRID SİSTEMİ ========== */
.video-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.video-item {
  cursor: pointer;
  text-align: center;
}

.video-thumb {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s;
}

.play-btn i {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  color: #fff;
}

.video-item:hover .play-btn {
  background: rgba(0, 0, 0, 0.6);
}

.video-item p {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--color-text2);
}

/* ========== MOBİL BRANŞ KARTI ========== */
@media (max-width: 600px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .program-card {
    padding: 1rem !important;
  }

  .program-card h3 {
    font-size: 0.95rem !important;
  }

  .program-card p {
    font-size: 0.8rem !important;
    display: none;
    /* Mobilde açıklamayı gizle */
  }

  .program-card ul {
    display: none;
    /* Mobilde listeyi gizle */
  }

  .program-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .program-icon i {
    font-size: 1rem !important;
  }

  /* Genel mobil düzeltmeler */
  .hero-stats>div span {
    font-size: 1.5rem !important;
  }

  .section-head h2,
  .section-header h2 {
    font-size: 1.3rem !important;
  }

  /* Video grid mobil */
  .video-grid-simple {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .video-item p {
    font-size: 0.7rem;
  }

  .play-btn i {
    font-size: 1rem;
    width: 35px;
    height: 35px;
  }
}

/* ========== GLOBAL OVERFLOW FIX ========== */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

/* ========== SAFARI COMPATIBILITY FIXES ========== */

/* Fix 1: backdrop-filter + border-radius artifacts */
.navbar,
.card,
.contact-form-panel {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Fix 2: overflow:hidden + border-radius mask fix */
.hero-video-card,
.about-media,
.gallery-feature,
.mosaic-item,
.video-embed,
.mentor-img,
.video-thumb {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  isolation: isolate;
}

/* Fix 3: Transform animation smoothing */
.section,
.card,
.mosaic-item img,
.mentor-img img {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

/* Fix 4: Font rendering */
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== WHATSAPP STICKY BUTTON ========== */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2s infinite;
}

.whatsapp-sticky:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
  color: white;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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