  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
  }

  /* Visually hidden but accessible to screen readers (for SEO h1) */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  html, body {
    height: 100%;
  }

  body {
    background-color: #551a25;
  }

  .page-content {
    flex: 1 0 auto;
    width: 100%;
  }

  .equipment-container,
  .plugins-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    box-sizing: border-box;
  }

  /* NAVBAR */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    overflow: visible;
    box-sizing: border-box;
    background: linear-gradient(
      to bottom,
      rgba(85, 26, 37, 0.80) 0%,
      rgba(85, 26, 37, 0.50) 45%,
      rgba(85, 26, 37, 0.20) 75%,
      rgba(85, 26, 37, 0.00) 100%
    );
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
  }

  /* Only these specific pages should have solid navbar */
  body:not(.ekibimiz):not(.hizmetlerimiz):not(.hukumler) .navbar:not(.navbar-scrolled) {
    background: linear-gradient(
      to bottom,
      rgba(85, 26, 37, 0.80) 0%,
      rgba(85, 26, 37, 0.50) 45%,
      rgba(85, 26, 37, 0.20) 75%,
      rgba(85, 26, 37, 0.00) 100%
    );
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
  }

  /* Solid gradient when scrolled */
.navbar.navbar-scrolled {
  background: rgba(85, 26, 37, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(244, 227, 193, 0.1);
  z-index: 1000;
}  .logo {
    position: relative;
  }

  .logo img {
    height: 250px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  /* MENÜYÜ SAĞA DAYA */
  nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
    justify-content: flex-end;
    align-items: center;
  }

  /* Mobile Menu Styles */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    margin-left: 20px;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #f4e3c1;
    transition: all 0.3s ease;
  }

  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: flex;
    }
    .navbar {
      padding: 0 20px;
      height: 70px;
    }

    .mobile-menu-toggle {
      display: flex;
      cursor: pointer;
      margin-left: 20px;
      z-index: 1001;
      width: 30px;
      height: 22px;
      flex-direction: column;
      justify-content: space-between;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: #f4e3c1;
      transition: all 0.3s ease;
    }

    .logo img {
      height: 160px;
    }

    nav {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      height: auto;
      background: rgba(85, 26, 37, 0.98);
      padding: 0;
      display: none;
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #f4e3c1;
      z-index: 1000;
    }

    nav.active {
      display: block;
    }

    nav ul {
      flex-direction: column;
      gap: 0;
      align-items: center;
      padding: 10px 0;
      margin: 0;
    }

    nav ul li {
      width: 100%;
      text-align: center;
    }

    nav ul li a,
    nav ul li .dropdown-menu a {
      display: block;
      padding: 15px 0;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-weight: 600 !important;
      color: #f4e3c1 !important;
      text-decoration: none;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
      transition: 0.3s ease;
      font-family: 'Zalando Sans SemiExpanded', sans-serif;
    }

    /* Hide Stüdyo dropdown in mobile */
    .dropdown > a {
      display: none !important;
    }

    /* Show dropdown menu items directly */
    .dropdown-menu {
      position: static;
      width: 100%;
      flex-direction: column;
      gap: 0;
      padding: 0;
      background: transparent;
      border: none;
      margin: 0;
      display: block !important;
      opacity: 1;
      visibility: visible;
      transform: none;
    }

    /* Make dropdown menu items match main menu items exactly */
    .dropdown-menu a {
      display: block;
      padding: 15px 0;
      font-size: 1.1rem;
      opacity: 1;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-weight: 600 !important;
      color: #f4e3c1 !important;
      text-decoration: none;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
      transition: 0.3s ease;
      font-family: 'Zalando Sans SemiExpanded', sans-serif;
    }

    /* Override any hover states */
    .dropdown-menu a:hover {
      color: #ffffff !important;
    }

    /* Ensure no borders or backgrounds on dropdown items */
    .dropdown-menu, 
    .dropdown-menu a {
      background: transparent !important;
      border: none !important;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: none;
    }

    body.ekibimiz nav.active,
    body.hizmetlerimiz nav.active,
    body.hukumler nav.active {
      display: block !important;
    }

    /* Slightly smaller gap on mobile for compact layout */
    .navbar .lang { margin-left: 16px; }
  }

  /* MENÜ YAZILARI */
  nav a {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    text-decoration: none;
    color: #f4e3c1;
    font-weight: 600 !important;
    font-size: 0.9rem;
    transition: 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  nav a:hover {
    color: #ffffff;
  }
  nav a.active,
  .dropdown-menu a.active {
    text-decoration: underline !important;
    text-underline-offset: 4px;
  }


  /* DİL SEÇİCİ */
  .lang {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f4e3c1;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  }

  /* Add a small gap between the last menu item and language icon */
  .navbar .lang { margin-left: 32px; }


  .globe {
    width: 20px;
    height: 20px;
    color: currentColor;
  }

  /* HERO SECTION */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("images/asdp.jpg") center/cover no-repeat;
    margin: 0;
    padding: 0;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
  }

  /* Küçük logo - hero ile about arasına ortalanmış */
  .corner-logo {
    position: absolute;
    bottom: -190px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .corner-logo img {
    width: 400px;
    opacity: 0.9;
    transition: 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
  }

  /* Hero Responsive Styles */
  @media (max-width: 1200px) {
    .hero {
      height: calc(100vh - 90px);
      margin-top: 90px;
    }
    .corner-logo img {
      width: 300px;
    }
  }

  @media (max-width: 768px) {
    .hero {
      height: calc(100vh - 70px);
      margin-top: 70px;
      background-position: center;
    }
    .hero-overlay {
      background: rgba(0, 0, 0, 0.25);
    }
    .corner-logo {
      bottom: -120px;
    }
    .corner-logo img {
      width: 200px;
    }
  }

  @media (max-width: 480px) {
    .hero {
      background-position: center 25%;
    }
    .hero-overlay {
      background: rgba(0, 0, 0, 0.15);
    }
    .corner-logo {
      bottom: -80px;
    }
    .corner-logo img {
      width: 150px;
    }
  }

  /* ABOUT SECTION */
  .about {
    background-color: #551a25;
    color: #f4e3c1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(50vh - 90px);
    margin-top: 0;
    position: relative;
  }

  /* Specific styling for pages with solid navbar */
  body.ekibimiz .about,
  body.hizmetlerimiz .about,
  body.hukumler .about {
    padding-top: 160px;
  }

  /* Ensure the about section starts below navbar */
  body.ekibimiz .about-title,
  body.hizmetlerimiz .about-title,
  body.hukumler .about-title {
    margin-top: 0;
    padding-top: 0;
  }

  /* Default navbar style - gradient for hero sections */
  .navbar {
    background: linear-gradient(
      to bottom,
      rgba(85, 26, 37, 0.80) 0%,
      rgba(85, 26, 37, 0.50) 45%,
      rgba(85, 26, 37, 0.20) 75%,
      rgba(85, 26, 37, 0.00) 100%
    );
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
  }

  /* Solid navbar for pages without hero */
  body.ekibimiz .navbar,
  body.hizmetlerimiz .navbar,
  body.hukumler .navbar {
    background: rgba(85, 26, 37, 0.95) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-bottom: 1px solid rgba(244, 227, 193, 0.1) !important;
  }

  /* Studio pages - transparent when not scrolled */
  body.kayit .navbar:not(.navbar-scrolled),
  body.kontrol .navbar:not(.navbar-scrolled),
  body.ortam .navbar:not(.navbar-scrolled),
  body.ekipmanlar .navbar:not(.navbar-scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
  }

  /* Studio pages - burgundy when scrolled */
  body.kayit .navbar.navbar-scrolled,
  body.kontrol .navbar.navbar-scrolled,
  body.ortam .navbar.navbar-scrolled,
  body.ekipmanlar .navbar.navbar-scrolled {
    background: rgba(85, 26, 37, 0.95) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-bottom: 1px solid rgba(244, 227, 193, 0.1) !important;
  }

.about-title {
    text-align: center;
    font-size: 2.2rem;
    color: #f4e3c1;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 10px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }

  .about-subtitle {
    font-family: 'Zalando Sans', sans-serif;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f4e3c1;
    font-weight: 300;
    padding: 20px 0;
    margin-bottom: 25px;
    letter-spacing: 0.01em;
  }

  /* HISTORY SECTION */
  /* HISTORY SECTION */
  .history {
    background-color: #111;
    color: #f4e3c1;
    padding: 120px 0; /* Reduced from 120px */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: 1px solid #f4e3c1;
    border-bottom: 1px solid #f4e3c1;
  }

  .history-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 40px; /* Reduced from 80px */
    max-width: 1200px; /* Reduced from 1500px */
    margin: 0 auto;
    padding: 0 40px; /* Reduced from 60px */
  }

  .history-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
  }

  .history-image img {
    width: auto;
    height: auto;
    max-width: 500px; /* Reduced from 650px */
    object-fit: contain;
    margin-left: 0;
  }

  .history-text {
    flex: 1;
    min-width: 350px;
  }

  .history-text h2 {
    font-size: 2.2rem;
    color: #d19153; /* turuncu vurgu */
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
  }

  .history-text p {
    font-family: 'Zalando Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #f4e3c1;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 0.01em;
  }

  .learn-more {
    display: inline-block;
    border: 2px solid #d19153;
    color: #d19153;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 0.95rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
  }

  .learn-more:hover {
    background-color: #d19153;
    color: #111;
  }
  /* === DROPDOWN MENU (Studio 87 bordo temasıyla) === */
  .dropdown {
    position: static;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(
      to bottom,
      rgba(85, 26, 37, 0.98) 0%,
      rgba(85, 26, 37, 0.95) 50%,
      rgba(85, 26, 37, 0.92) 100%
    );
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 18px 0;
    /* border-top: 1px solid rgba(244, 227, 193, 0.2); ← kaldırıldı */
    border-top: 1px solid #f4e3c1;
    border-bottom: 1px solid #f4e3c1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    z-index: 1500;
    backdrop-filter: blur(3px);
  }


  /* Menüdeki linkler */
  .dropdown-menu a {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    text-decoration: none;
    color: #f4e3c1;
    font-size: 0. 85rem;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .dropdown-menu a:hover {
    color: #ffffff;
    transform: translateY(-2px);
  }

  /* Hover efekti */
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /* === DROPDOWN OPEN STATE (aktif sayfalarda menü açık kalsın) === */
  .dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* === Aktif alt menü öğesi (örneğin kontrol sayfası) === */
  .dropdown-menu a.active {
    color: #fff;
    font-weight: 600;
  }



 /* === SLIDER STİLİ - Westlake tarzı === */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  background-color: black;
  overflow: hidden;
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-bottom: 1px solid #f4e3c1;
}

.slider {
  position: relative;
  width: 70%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-slider {
    height: calc(100vh - 70px);
    margin-top: 70px;
  }
  
  .slider {
    width: 95%;
  }

  .slide {
    width: 100%;
    height: 60%;
    background-size: cover;
  }
}

.slide.active {
  opacity: 1;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.slider-controls button {
  background-color: #551a25;
  border: none;
  color: #f4e3c1;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.slider-controls button.prev {
  left: 15%;
}

.slider-controls button.next {
  right: 15%;
}

.slider-controls button:hover {
  background-color: #551a25;
  color: #551a25;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(209, 145, 83, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background: #d19153;
}

/* Desktop Styles */
@media (min-width: 769px) {
  .slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }

  .slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .slider-controls button.prev {
    left: 15%;
  }

  .slider-controls button.next {
    right: 15%;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-slider {
    height: calc(100vh - 70px);
    margin-top: 70px;
  }
  
  .slider {
    width: 95%;
  }

  .slide {
    width: 100%;
    height: 60%;
    background-size: cover;
  }

  .slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }

  .slider-controls button {
    position: absolute;
    width: auto;
    height: auto;
    background: none !important;
    border-radius: 0;
    padding: 0 5px;
    color: #f4e3c1;
    font-size: 1.8rem;
  }

  .slider-controls button.prev {
    left: 5%;
  }

  .slider-controls button.next {
    right: 5%;
  }

  .slider-controls button:hover {
    background: none !important;
    color: #d19153;
  }
}

.hero-slider button:hover {
  background-color: #f4e3c1;
}

.hero-slider .prev {
  left: 5%;
}

.hero-slider .next {
  right: 5%;
}

/* Room Links */
.room-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.room-links .learn-more {
  padding: 12px 25px;
  background-color: transparent;
  border: 2px solid #d19153;
  color: #f4e3c1;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.room-links .learn-more:hover {
  background-color: #d19153;
  color: #551a25;
}

/* EQUIPMENT LIST STYLES */
.equipment-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 60px;
  color: #f4e3c1;
  border: none;
  width: 100%;
  box-sizing: border-box;
}

.equipment-category {
  margin-bottom: 20px;
  background-color: rgba(85, 26, 37, 0.3);
  border: 2px solid #d19153;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-collapse: collapse;
}

.equipment-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 145, 83, 0.3);
  border-color: #f4e3c1;
}

.equipment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #d19153;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.equipment-header:hover {
  background-color: #f4e3c1;
}

.equipment-header:hover h3 {
  color: #d19153;
}

.equipment-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #551a25;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.equipment-list {
  display: none;
  padding: 20px;
  background-color: #f4e3c1;
  border-top: 2px solid #d19153;
}

.equipment-category.active .equipment-list {
  display: block;
}

.equipment-category.active .toggle-btn {
  transform: rotate(45deg);
}

.equipment-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.equipment-list li {
  padding: 8px 0;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: default;
  color: #111111;
}

.equipment-list li:hover {
  color: #551a25;
  padding-left: 5px;
}

.equipment-list .subcategory {
  color: #d19153;
  font-weight: 600;
  margin-top: 15px;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.equipment-list ul ul {
  margin-left: 20px;
  margin-bottom: 15px;
  border-left: 2px solid rgba(209, 145, 83, 0.3);
  padding-left: 15px;
  margin-top: 5px;
}

.equipment-list ul ul li {
  padding: 4px 0;
  color: #111111;
  opacity: 0.9;
}

/* PLUGINS LIST STYLES */
.plugins-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 60px;
  color: #f4e3c1;
  border: none;
  width: 100%;
  box-sizing: border-box;
}

.plugins-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #f4e3c1;
  font-weight: 600;
}

.plugin-category {
  margin-bottom: 20px;
  background-color: rgba(85, 26, 37, 0.3);
  border: 2px solid #d19153;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-collapse: collapse;
}

/* Special styling for DAW section */
.plugin-category:first-of-type {
  background-color: rgba(85, 26, 37, 0.6);
  border: 2px solid #f4e3c1;
  margin-bottom: 40px;
}

.plugin-category:first-of-type .category-header {
  background-color: #dabfa7 ;
}

.plugin-category:first-of-type .category-header h3 {
  color: #551a25;
  font-size: 1.4rem;
  font-weight: 700;
}

.plugin-category:first-of-type .plugin-list {
  background-color: #deadbe;
  padding: 25px;
}

.plugin-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 145, 83, 0.3);
  border-color: #f4e3c1;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #d19153;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.category-header:hover {
  background-color: #f4e3c1;
}

.category-header:hover h3,
.category-header:hover .toggle-btn {
  color: #d19153;
}

.category-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #551a25;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.toggle-btn {
  font-size: 1.5rem;
  color: #551a25;
  transition: transform 0.3s ease;
  font-weight: bold;
  cursor: pointer;
}

.plugin-list {
  display: none;
  padding: 20px;
  background-color: #f4e3c1;
  border-top: 2px solid #d19153;
}

.plugin-category {
  position: relative;
}

.plugin-category.active .plugin-list {
  display: block;
}

.plugin-category.active .toggle-btn {
  transform: rotate(45deg);
}

.plugin-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plugin-list li {
  padding: 8px 0;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: default;
  color: #111111;
}

.plugin-list li:hover {
  color: #551a25;
  padding-left: 5px;
}

.plugin-subcategory {
  color: #d19153;
  font-weight: 600;
  margin-top: 15px;
}

.plugin-list ul ul {
  margin-left: 20px;
  margin-bottom: 15px;
  border-left: 2px solid rgba(209, 145, 83, 0.3);
  padding-left: 15px;
  margin-top: 5px;
}

.plugin-subcategory {
  color: #d19153 !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  margin-top: 20px !important;
  margin-bottom: 10px !important;
}

.plugin-list ul ul li {
  padding: 4px 0;
  color: #111111;
  opacity: 0.9;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #551a25;
  position: relative;
}

.site-footer {
  background: #0C0C0C;
  color: #fff;
  padding: 40px 0;
  width: 100%;
  position: relative;
  margin-top: 40px;
}

/* Noktalar */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(244, 227, 193, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
  background-color: #d19153;
}




 /* === LOGO TIKLANABİLSİN — sadece menü açıkken === */





  /* Ekipmanlar Page Specific Styles */
  body.ekipmanlar {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  body.ekipmanlar .equipment-container,
  body.ekipmanlar .plugins-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    box-sizing: border-box;
  }

  body.ekipmanlar .site-footer {
    margin-top: auto;
  }

  /* Team Page Specific Styles */
  .team-history {
    padding: 60px 0;
    background-color: #111;
    position: relative;
  }

  .team-history:first-of-type {
    border-top: 1px solid #f4e3c1;
  }

  .team-history:last-of-type {
    border-bottom: 1px solid #f4e3c1;
  }

  .team-container {
    gap: 60px;
    max-width: 1200px;
    padding: 0 40px;
    align-items: center;
  }

  /* Vertically center name + role text inside team/history sections */
  .team-container .history-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Align role and bio text start (indent) so they align under the small marker */
  .team-container .history-text h2 {
    margin-left: 0;
    text-align: left;
  }

  /* Ensure the name is centered on smaller screens (override earlier left-align) */
  @media (max-width: 900px) {
    .team-container .history-text h2 {
      text-align: center !important;
    }
  }

  /* Center a constrained content block under the name so role + bio align beneath it */
  /* Keep name position unchanged (left by default) and align role+bio under it */
  .team-container .history-text h2 + .about-subtitle {
    display: block;
    margin: 12px 0 16px 0;
    max-width: none;
    text-align: left;
    color: #d19153;
    font-weight: 600;
  }

  .team-container .history-text p {
    margin: 0 0 20px 0;
    max-width: none;
    text-align: left;
  }

  @media (max-width: 900px) {
    .team-container .history-text h2 + .about-subtitle,
    .team-container .history-text p {
      margin: 8px 0;
      max-width: 100%;
      text-align: center;
    }
  }

  .team-image {
    flex: 0 0 400px;
  }

  .team-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    
  }

  /* Mobile styles for team page */
  @media (max-width: 1024px) {
    .team-container {
      gap: 40px;
      padding: 0 30px;
    }

    .team-image {
      flex: 0 0 350px;
    }
  }

  @media (max-width: 900px) {
    .team-history {
      padding: 40px 0;
    }

    .team-container {
      flex-direction: column;
      text-align: center;
      gap: 25px;
    }

    .team-image {
      flex: none;
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
    }

    .team-image img {
      border-radius: 4px;
    }

    .history-text h2 {
      text-align: center;
      font-size: 1.8rem;
    }
  }

  @media (max-width: 768px) {
    .team-history {
      padding: 35px 0;
    }

    .team-container {
      padding: 0 20px;
      gap: 25px;
    }

    .team-image {
      max-width: 250px;
    }

    .history-text h2 {
      font-size: 1.6rem;
      margin-bottom: 15px;
    }

    .history-text .about-subtitle {
      font-size: 1rem;
      margin-bottom: 15px !important;
    }

    .history-text p {
      font-size: 0.95rem;
      line-height: 1.7;
      text-align: left;
    }
  }

  @media (max-width: 480px) {
    .team-history {
      padding: 30px 0;
    }

    .team-container {
      padding: 0 15px;
      gap: 20px;
    }

    .team-image {
      max-width: 200px;
    }

    .history-text h2 {
      font-size: 1.4rem;
      margin-bottom: 12px;
    }

    .history-text p {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .about-title {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }

    .about-subtitle {
      font-size: 0.95rem;
      padding: 0 15px;
      margin-bottom: 25px;
    }
  }

  /* RESPONSIVE */
  /* Acoustic Specs Section */
  .acoustic-specs {
    background-color: #551a25;
    padding: 60px 80px;
    margin: 40px 80px;
  }

  .acoustic-specs h2 {
    color: #f4e3c1;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
  }

  .acoustic-specs h3 {
    color: #d19153;
    font-size: 1.2rem;
    margin: 35px 0 15px;
    font-weight: 600;
  }

  .acoustic-specs p {
    color: #f4e3c1;
    margin: 8px 0;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .acoustic-specs ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  .acoustic-specs ul li {
    color: #f4e3c1;
    margin: 12px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
  }

  .acoustic-specs ul li:before {
    content: "•";
    color: #d19153;
    position: absolute;
    left: 0;
    top: 0;
  }

  .acoustic-specs .signature {
    margin-top: 30px;
    color: #d19153;
    font-weight: 600;
  }

  /* Responsive styles for acoustic specs */
  @media (max-width: 768px) {
    .acoustic-specs {
      padding: 40px 25px;
      margin: 20px 0;
    }

    .acoustic-specs h2 {
      font-size: 1.8rem;
      margin-bottom: 25px;
    }

    .acoustic-specs h3 {
      font-size: 1.15rem;
      margin: 30px 0 12px;
      letter-spacing: 0.02em;
    }

    .acoustic-specs ul {
      margin: 15px 0;
    }

    .acoustic-specs ul li {
      font-size: 1rem;
      margin: 10px 0;
      line-height: 1.5;
      padding-left: 16px;
    }

    .acoustic-specs p {
      font-size: 1rem;
      line-height: 1.5;
    }

    .acoustic-specs .signature {
      margin-top: 35px;
      padding-top: 20px;
      border-top: 1px solid rgba(209, 145, 83, 0.2);
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .acoustic-specs {
      padding: 30px 20px;
    }

    .acoustic-specs h2 {
      font-size: 1.6rem;
    }
  }

  /* Pamukkale Section */
  .pamukkale-section {
    padding: 80px;
    background-color: #551a25;
    border-top: 1px solid rgba(244, 227, 193, 0.1);
    border-bottom: 1px solid rgba(244, 227, 193, 0.1);
  }

  .pamukkale-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .pamukkale-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
  }

  .pamukkale-text h2 {
    color: #d19153;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
  }

  .pamukkale-text p {
    color: #f4e3c1;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
  }

  .pamukkale-image {
    flex: 1;
    max-width: 600px;
    border: 1px solid rgba(244, 227, 193, 0.2);
    overflow: hidden;
  }

  .pamukkale-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

  .pamukkale-image:hover img {
    transform: scale(1.03);
  }

  @media (max-width: 1200px) {
    .pamukkale-section {
      padding: 60px 40px;
    }
    
    .pamukkale-container {
      gap: 40px;
    }
  }

  @media (max-width: 1024px) {
    .pamukkale-container {
      flex-direction: column;
    }
    
    .pamukkale-text {
      max-width: 100%;
      text-align: center;
    }

    .pamukkale-image {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .pamukkale-section {
      padding: 40px 25px;
    }

    .pamukkale-text h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    .pamukkale-text p {
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .pamukkale-container {
      gap: 30px;
    }
  }

  @media (max-width: 480px) {
    .pamukkale-section {
      padding: 30px 20px;
    }

    .pamukkale-text h2 {
      font-size: 1.6rem;
    }

    .pamukkale-text p {
      font-size: 1rem;
    }

    .pamukkale-container {
      gap: 25px;
    }
  }

  /* Footer Styles */
  .site-footer {
    background-color: #111;
    color: #f4e3c1;
    padding: 80px 40px 30px;
    border-top: none;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    margin-top: 0;
    border-top: #dabfa7 1px solid;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }

  .footer-logo img {
    height: 180px;
    opacity: 0.9;
    position: absolute;
    left: 50%;
    top: -140px;
    transform: translateX(-50%);
  }

  /* Container styles for long content pages */
  .equipment-container, .plugins-container {
    margin-bottom: 100px;
  }

  .footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media (max-width: 768px) {
    .footer-logo {
      margin-bottom: 40px;
    }

    .footer-logo img {
      height: 160px;
      top: -120px;
    }
  }

  .footer-section h3 {
    color: #d19153;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    font-family: 'Zalando Sans', sans-serif;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #f4e3c1;
    line-height: 1.5;
    font-weight: 300;
  }

  .footer-section a {
    color: #f4e3c1;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-section a:hover {
    color: #d19153;
  }

  .social-links {
    display: flex;
    gap: 15px;
  }

  .instagram-link {
    display: inline-block;
  }

  .instagram-icon {
    width: 32px;
    height: 32px;
    fill: #f4e3c1;
    transition: fill 0.3s ease;
  }

  .instagram-icon:hover {
    fill: #d19153;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(244, 227, 193, 0.2);
    position: relative;
  }

  .terms-link {
    color: #f4e3c1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 10px 0;
  }

  .designer-credit {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #87AEC9;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 10px 0;
  }

  .photographer-credit {
    position: absolute;
    right: 20px;
    top: 45px;
    color: #d19153;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 10px 0;
  }

  @media (max-width: 768px) {
    .footer-bottom {
      margin-top: 30px;
      padding-top: 20px;
    }
  }

  @media (max-width: 768px) {
    .footer-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      padding-top: 25px;
      padding-bottom: 25px;
    }

    .designer-credit, .photographer-credit {
      position: static;
      padding: 0;
    }
  }

  .designer-credit:hover {
    color: #66b3ff;
  }

  .terms-link:hover {
    color: #d19153;
  }

  /* Terms and Conditions Styles */
  .terms-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    color: #f4e3c1;
  }

  .terms-content h2 {
    color: #d19153;
    font-size: 1.8rem;
    margin: 40px 0 25px;
    font-weight: 700;
    border-bottom: 1px solid rgba(209, 145, 83, 0.3);
    padding-bottom: 10px;
  }

  .terms-content h3 {
    color: #d19153;
    font-size: 1.2rem;
    margin: 25px 0 15px;
    font-weight: 600;
  }

  .terms-content .subsection {
    margin-left: 20px;
  }

  .terms-content ul {
    margin: 15px 0;
    padding-left: 20px;
  }

  .terms-content li {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .terms-content strong {
    color: #d19153;
    font-weight: 600;
  }

  .document-link,
  .document-link strong {
    color: #d19153;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .document-link:hover,
  .document-link:hover strong {
    color: #f4e3c1;
    text-decoration: underline;
  }

  .terms-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
  }

  .terms-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 227, 193, 0.2);
    text-align: center;
    font-style: italic;
  }

  .terms-contact a {
    color: #d19153;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .terms-contact a:hover {
    color: #f4e3c1;
  }

  /* Mobile History Text Spacing */
  @media (max-width: 768px) {
    .history-text {
      padding: 5px 0;
    }
    .history-text h2 {
      margin-bottom: 25px;
      margin-top: 5px;
    }
    .history-text p {
      margin-bottom: 1px;
    }
  }

  /* Mobile Responsive Styles for Terms and Conditions */
  @media (max-width: 900px) {
    .terms-content {
      padding: 30px 25px;
    }

    .terms-content h2 {
      font-size: 1.6rem;
      margin: 30px 0 20px;
    }

    .terms-content h3 {
      font-size: 1.15rem;
      margin: 20px 0 12px;
    }

    .terms-content .subsection {
      margin-left: 15px;
    }

    .terms-content p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 15px;
    }
  }

  @media (max-width: 768px) {
    .terms-content {
      padding: 25px 20px;
    }

    .terms-content h2 {
      font-size: 1.5rem;
      margin: 25px 0 18px;
      padding-bottom: 8px;
    }

    .terms-content h3 {
      font-size: 1.1rem;
      margin: 18px 0 10px;
    }

    .terms-content .subsection {
      margin-left: 10px;
    }

    .terms-content ul {
      margin: 12px 0;
      padding-left: 15px;
    }

    .terms-content li {
      font-size: 1rem;
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .terms-content p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 12px;
    }
  }

  @media (max-width: 480px) {
    .terms-content {
      padding: 20px 15px;
    }

    .terms-content h2 {
      font-size: 1.4rem;
      margin: 20px 0 15px;
    }

    .terms-content h3 {
      font-size: 1.05rem;
      margin: 15px 0 8px;
    }

    .terms-content .subsection {
      margin-left: 8px;
    }

    .terms-content ul {
      margin: 10px 0;
      padding-left: 12px;
    }

    .terms-content li {
      font-size: 0.95rem;
      margin-bottom: 6px;
    }

    .terms-content p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .terms-content strong {
      font-size: 0.95rem;
    }
  }

  /* Pages that always have solid navbar */
  body.ekibimiz .navbar,
  body.hizmetlerimiz .navbar,
  body.hukumler .navbar {
    background: rgba(85, 26, 37, 0.95) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-bottom: 1px solid rgba(244, 227, 193, 0.1) !important;
  }

  /* Services Page Styles */
  .services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 60px;
    flex: 1;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 40px;
  }

  .service-category {
    padding: 25px;
    background-color: rgba(85, 26, 37, 0.3);
    
    transition: all 0.3s ease;
  }

  .service-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(209, 145, 83, 0.3);
    border-color: #f4e3c1;
  }

  .service-category h2 {
    color: #d19153;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .service-category h3 {
    color: #d19153;
    font-size: 1.3rem;
    margin: 15px 0;
    font-weight: 600;
  }

  .service-category p {
    color: #f4e3c1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .service-category ul {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
  }

  .service-category ul li {
    color: #f4e3c1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
  }

  .service-category ul li:before {
    content: "•";
    color: #d19153;
    position: absolute;
    left: -20px;
  }

  .service-price {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(209, 145, 83, 0.1);
    border-left: 3px solid #d19153;
  }

  .service-price strong {
    color: #d19153;
    font-weight: 600;
  }

  .terms-notice {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(209, 145, 83, 0.3);
  }

  .terms-notice p {
    color: #f4e3c1;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
  }

  .terms-notice p strong {
    color: #d19153;
    font-weight: 300;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
  }

  .terms-notice .terms-link {
    color: #d19153;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: inherit;
  }

  .terms-notice .terms-link:hover {
    color: #f4e3c1;
    text-decoration: underline;
  }

  @media (max-width: 900px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Additional Services Page Fixes */
  .about {
    min-height: calc(100vh - 500px);
  }
  
  .services-content {
    margin-bottom: 60px;
  }

  /* Mobile Styles for Services Page */
  @media (max-width: 900px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin: 0 auto 30px;
      max-width: 600px;
    }

    .service-category h2 {
      font-size: 1.6rem;
      text-align: center;
    }

    .service-category {
      padding: 30px;
      border: 1px solid rgba(244, 227, 193, 0.15);
    }

    .service-category:hover {
      transform: none;
      border-color: rgba(209, 145, 83, 0.4);
    }

    .service-category::before {
      width: 100%;
      height: 3px;
      top: auto;
      bottom: 0;
    }
  }

  @media (max-width: 768px) {
    .services-content {
      padding: 15px 20px 40px;
    }

    .about-title {
      margin-bottom: 25px;
    }

    .service-category {
      padding: 25px 20px;
    }

    .service-category h2 {
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

    .service-category p {
      font-size: 1rem;
      line-height: 1.7;
      text-align: left;
    }

    .service-category strong {
      color: #d19153;
      font-weight: 600;
    }

    .terms-notice {
      margin-top: 35px;
      padding: 20px 15px 0;
    }

    .terms-notice p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .services-content {
      padding: 10px 12px 30px;
    }

    .services-grid {
      gap: 15px;
    }

    .service-category {
      padding: 20px 16px;
    }

    .service-category h2 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      letter-spacing: 0.01em;
    }

    .service-category p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin-bottom: 12px;
    }
    
    .terms-notice p {
      font-size: 0.9rem;
      line-height: 1.5;
    }
  }
  /* Elfsight Instagram section spacing (minimal) */
  .instagram-embed { background:#111; padding:60px 20px; border-top:1px solid #f4e3c1; border-bottom:1px solid #f4e3c1; }

  @media (max-width: 768px) {
    .footer-sections {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }

    .social-links {
      justify-content: center;
    }

    .about .container {
      flex-direction: column;
    }

    .hero-text {
      left: 30px;
      bottom: 40px;
      max-width: 90%;
    }

    .hero-text p {
      font-size: 1.3rem;
    }

    .corner-logo {
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
    }

    .corner-logo img {
      width: 80px;
    }
  }

