:root {
  --bg: #07111f;
  --bg2: #0b1728;
  --surface: rgba(255,255,255,.075);
  --surface2: rgba(255,255,255,.12);
  --text: #f8fafc;
  --muted: #a9b7ca;
  --blue: #38bdf8;
  --blue2: #2563eb;
  --green: #22c55e;
  --border: rgba(255,255,255,.14);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.22), transparent 35%),
    radial-gradient(circle at top right, rgba(34,197,94,.14), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg2));
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 22px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 16px 40px rgba(56,189,248,.25);
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white;
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(37,99,235,.28);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(34,197,94,.22);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: white;
}

.hero {
  padding: 70px 0 58px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #c9e8ff;
  background: rgba(56,189,248,.09);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: .96;
  letter-spacing: -.065em;
  margin: 0 0 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.045em;
  margin: 0 0 18px;
}

h3 {
  margin: 0 0 10px;
}

.hero p {
  font-size: 19px;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.panel-preview,
.card,
.package,
.cta,
.info-box {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.panel-preview {
  overflow: hidden;
}

.window-bar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.05);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}

.preview-body {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.preview-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
}

.preview-card p {
  margin: 0;
  font-size: 14px;
}

.section {
  padding: 58px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 570px;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  padding: 24px;
}

.card b {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  margin: 0;
  font-size: 14px;
}

.package.featured {
  background: linear-gradient(180deg, rgba(56,189,248,.18), rgba(255,255,255,.08));
  border-color: rgba(56,189,248,.38);
}

.package {
  padding: 26px;
}

.package ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #d8e4f5;
  line-height: 1.9;
  font-size: 14px;
}

.page-hero {
  padding: 72px 0 40px;
}

.page-hero h1 {
  max-width: 880px;
}

.content {
  padding: 24px 0 70px;
}

.content-card {
  padding: 32px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.075);
}

.content-card h2 {
  font-size: 30px;
  margin-top: 28px;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card ul {
  color: var(--muted);
  line-height: 1.9;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  color: #d8e4f5;
  font-weight: 700;
  font-size: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.08);
  color: white;
  padding: 12px 14px;
  outline: none;
}

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

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255,255,255,.45);
}

.cta {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

footer {
  padding: 36px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 42px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .grid,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .nav {
    align-items: flex-start;
    gap: 18px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

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

  .btn {
    width: 100%;
  }

  .nav {
    display: block;
  }

  .nav-links {
    justify-content: flex-start;
    margin-top: 18px;
  }
}


.form select {
  color-scheme: dark;
  background-color: #0b1728;
  color: #f8fafc;
  border-color: rgba(255,255,255,.18);
}

.form select option {
  background-color: #0b1728;
  color: #f8fafc;
}

.form select option:checked {
  background-color: #2563eb;
  color: #ffffff;
}

.form select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56,189,248,.14);
}



.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #f8fafc;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.custom-select-button:hover,
.custom-select.open .custom-select-button {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56,189,248,.14);
}

.custom-select-button span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select-button i {
  font-style: normal;
  color: #a9b7ca;
  font-size: 18px;
}

.custom-select-menu {
  position: absolute;
  z-index: 80;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: none;
  max-height: 310px;
  overflow: auto;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: #0b1728;
  box-shadow: 0 24px 80px rgba(0,0,0,.48);
}

.custom-select.open .custom-select-menu {
  display: grid;
  gap: 6px;
}

.custom-select-menu button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #f8fafc;
  padding: 12px;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.custom-select-menu button:hover {
  background: rgba(56,189,248,.16);
}

.custom-select-menu button:focus {
  outline: 2px solid rgba(56,189,248,.45);
  outline-offset: 2px;
}




/* 3E LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 74px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 58px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ANA SAYFA BANNER CAROUSEL */
.hero-carousel-wrap {
  padding: 18px 0 10px;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  background: rgba(255,255,255,.05);
}

.hero-slide {
  display: none;
  width: 100%;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  display: block;
  height: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(7,17,31,.72);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  z-index: 5;
  display: grid;
  place-items: center;
  transition: .2s ease;
}

.carousel-btn:hover {
  background: rgba(37,99,235,.94);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.48);
}

.carousel-dot.active {
  background: #38bdf8;
}

@media (max-width: 640px) {
  .logo-img {
    width: 58px;
  }

  .footer-logo {
    width: 48px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .carousel-btn.prev {
    left: 8px;
  }

  .carousel-btn.next {
    right: 8px;
  }
}



.hero-banner-link {
  display: block;
  cursor: pointer;
}

.hero-banner-link img {
  transition: transform .35s ease;
}

.hero-banner-link:hover img {
  transform: scale(1.01);
}



/* LOGO PREMIUM DÜZELTME */
.logo {
  gap: 14px;
}

.logo-img {
  width: 82px;
  max-height: 58px;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.logo span {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-shadow: none;
}

.footer-logo {
  width: 64px;
  max-height: 48px;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 640px) {
  .logo-img {
    width: 68px;
    max-height: 48px;
  }

  .logo span {
    font-size: 19px;
  }
}



/* LOGO BADGE DÜZELTME */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.09));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}

.logo-img {
  width: 78px;
  max-height: 58px;
  object-fit: contain;
  display: block;
}

.logo span:last-child {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.footer-logo {
  width: 60px;
  max-height: 44px;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  .logo-badge {
    padding: 6px 8px;
    border-radius: 14px;
  }

  .logo-img {
    width: 62px;
    max-height: 46px;
  }

  .logo span:last-child {
    font-size: 19px;
  }

  .footer-logo {
    width: 48px;
    max-height: 36px;
  }
}



/* HARİTA ALANLARI */
.contact-map-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.contact-map-card h2 {
  margin-bottom: 10px;
}

.contact-map-frame {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}

.contact-map-frame iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

.footer-map-mini {
  width: 230px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.footer-map-mini iframe {
  width: 100%;
  height: 110px;
  display: block;
  border: 0;
}

@media (max-width: 760px) {
  .contact-map-frame iframe {
    height: 330px;
  }

  .footer-map-mini {
    width: 100%;
  }

  .footer-map-mini iframe {
    height: 160px;
  }
}



/* SOLDA AÇILAN SOSYAL MEDYA BUTONLARI */
.floating-social-left {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.floating-social-item {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 34px rgba(0,0,0,.26);
  backdrop-filter: blur(8px);
  transition: width .24s ease, transform .24s ease, box-shadow .24s ease;
}

.floating-social-item:hover {
  width: 150px;
  transform: translateX(4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.36);
}

.floating-social-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.floating-social-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.floating-social-text {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
  padding-right: 18px;
}

.floating-social-item.youtube {
  background: linear-gradient(135deg, #ff0033, #b90024);
}

.floating-social-item.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.floating-social-item.whatsapp {
  background: linear-gradient(135deg, #22c55e, #128c7e);
}

@media (max-width: 760px) {
  .floating-social-left {
    left: 10px;
    gap: 8px;
  }

  .floating-social-item {
    width: 44px;
    height: 44px;
  }

  .floating-social-item:hover {
    width: 136px;
  }

  .floating-social-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .floating-social-icon svg {
    width: 21px;
    height: 21px;
  }

  .floating-social-text {
    font-size: 13px;
  }
}



/* CAROUSEL BANNER EŞİT BOYUT DÜZELTME */
.hero-carousel {
  aspect-ratio: 16 / 9;
  max-height: 620px;
}

.hero-slide,
.hero-banner-link {
  width: 100%;
  height: 100%;
}

.hero-slide.active {
  display: block;
  height: 100%;
}

.hero-slide img,
.hero-banner-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 760px) {
  .hero-carousel {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
}



/* SADECE 2. BANNER BOYUT DÜZELTME */
.hero-carousel {
  aspect-ratio: auto;
  max-height: none;
}

.hero-slide,
.hero-banner-link {
  height: auto;
}

.hero-slide img,
.hero-banner-link img {
  width: 100%;
  height: auto;
  object-fit: initial;
}

.hero-slide.banner-slide-fit,
.hero-slide.banner-slide-fit .hero-banner-link {
  width: 100%;
  height: 100%;
}

.hero-slide.banner-slide-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide.banner-slide-fit.active {
  aspect-ratio: 16 / 9;
}

@media (max-width: 760px) {
  .hero-slide.banner-slide-fit.active {
    aspect-ratio: 16 / 10;
  }
}


/* MOBİL BANNER BÜYÜTME */
@media (max-width: 760px) {
  .hero-carousel-wrap {
    width: 100%;
    padding: 12px 0 8px;
  }

  .hero-carousel {
    width: calc(100vw - 20px);
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
  }

  .hero-slide.active {
    min-height: 250px;
  }

  .hero-slide.active img,
  .hero-slide.active .hero-banner-link img {
    min-height: 250px;
    object-fit: cover;
    object-position: center;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .carousel-dots {
    bottom: 10px;
  }
}

@media (max-width: 420px) {
  .hero-slide.active {
    min-height: 230px;
  }

  .hero-slide.active img,
  .hero-slide.active .hero-banner-link img {
    min-height: 230px;
  }
}

/* MOBİL BANNER KESİLME DÜZELTME */
@media (max-width: 760px) {
  .hero-carousel {
    background: rgba(7,17,31,.92);
  }

  .hero-slide.active {
    min-height: auto !important;
  }

  .hero-slide.active img,
  .hero-slide.active .hero-banner-link img {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
  }

  .hero-banner-link {
    display: block;
    width: 100%;
    height: auto !important;
  }
}

@media (max-width: 420px) {
  .hero-slide.active {
    min-height: auto !important;
  }

  .hero-slide.active img,
  .hero-slide.active .hero-banner-link img {
    min-height: 0 !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* FRESH TEMA DOKUNUŞU */
:root {
  --bg: #081827;
  --bg2: #0d2538;
  --surface: rgba(255,255,255,.095);
  --surface2: rgba(255,255,255,.16);
  --text: #f8fbff;
  --muted: #b9c9dc;
  --blue: #38bdf8;
  --blue2: #1d4ed8;
  --green: #28d17c;
  --border: rgba(255,255,255,.18);
  --shadow: 0 26px 90px rgba(5,12,25,.32);
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(56,189,248,.30), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(40,209,124,.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(59,130,246,.16), transparent 38%),
    linear-gradient(135deg, #071827 0%, #0b2238 48%, #0d2b3f 100%);
}

/* ÜST MENÜ DAHA FRESH */
.nav {
  margin-top: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}

.nav-links a:not(.btn) {
  padding: 9px 10px;
  border-radius: 999px;
  transition: .2s ease;
}

.nav-links a:not(.btn):hover {
  background: rgba(255,255,255,.09);
  color: #ffffff;
}

/* LOGO BADGE DAHA AÇIK */
.logo-badge {
  background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.12));
  border-color: rgba(255,255,255,.24);
}

/* KARTLAR DAHA CAMSI */
.card,
.package,
.content-card,
.standard-box,
.contact-map-card,
.panel-preview,
.cta {
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
  border-color: rgba(255,255,255,.17);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}

.card:hover,
.package:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56,189,248,.34);
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}

/* HERO DAHA FERAH */
.hero {
  padding-top: 56px;
}

.eyebrow {
  background: rgba(56,189,248,.14);
  border-color: rgba(56,189,248,.28);
  color: #dff6ff;
}

h1 {
  text-shadow: 0 14px 50px rgba(56,189,248,.14);
}

h2 {
  color: #ffffff;
}

/* BUTONLAR DAHA CANLI */
.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #2563eb 58%, #1d4ed8);
  box-shadow: 0 18px 45px rgba(37,99,235,.34);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #34d399, #22c55e 55%, #16a34a);
  box-shadow: 0 18px 45px rgba(34,197,94,.28);
}

.btn-ghost {
  background: rgba(255,255,255,.085);
  border-color: rgba(255,255,255,.18);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

/* BANNER DAHA PREMIUM */
.hero-carousel {
  border-radius: 34px;
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 30px 95px rgba(0,0,0,.34),
    0 0 0 1px rgba(56,189,248,.08);
}

.carousel-btn {
  background: rgba(8,24,39,.78);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.carousel-dot {
  width: 26px;
  height: 7px;
  border-radius: 999px;
}

.carousel-dot.active {
  background: linear-gradient(135deg, #38bdf8, #22c55e);
}

/* FİYAT KARTLARI DAHA SATIŞ ODAKLI */
.price-card {
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.12), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.065));
}

.price-card.featured {
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.18), transparent 34%),
    radial-gradient(circle at top left, rgba(56,189,248,.22), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.075));
}

.badge {
  background: rgba(56,189,248,.14);
  border-color: rgba(56,189,248,.28);
}

/* FOOTER DAHA TEMİZ */
footer {
  background: rgba(0,0,0,.12);
  border-top-color: rgba(255,255,255,.13);
}

/* FORM ALANLARI */
.form input,
.form textarea,
.form select,
.custom-select-button {
  background: rgba(255,255,255,.095);
  border-color: rgba(255,255,255,.18);
}

.form input:focus,
.form textarea:focus,
.custom-select.open .custom-select-button {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56,189,248,.13);
}

/* MOBİL FRESH DÜZEN */
@media (max-width: 760px) {
  .nav {
    margin-top: 8px;
    padding: 14px;
    border-radius: 20px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-carousel {
    border-radius: 22px;
  }

  .card,
  .content-card,
  .standard-box {
    border-radius: 24px;
  }
}

/* TEMA DEĞİŞTİRME BUTONU */
.theme-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* AÇIK YEŞİL FRESH TEMA */
body.light-green-theme {
  --bg: #eefdf5;
  --bg2: #dff7ec;
  --surface: rgba(255,255,255,.82);
  --surface2: rgba(255,255,255,.94);
  --text: #10251b;
  --muted: #426456;
  --blue: #0ea5e9;
  --blue2: #16a34a;
  --green: #16a34a;
  --border: rgba(16, 101, 65, .16);
  --shadow: 0 24px 80px rgba(16,101,65,.14);

  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(34,197,94,.28), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(14,165,233,.22), transparent 30%),
    linear-gradient(135deg, #f4fff9 0%, #e8fbf1 48%, #dcf7ea 100%);
}

body.light-green-theme p,
body.light-green-theme .nav-links,
body.light-green-theme .footer-inner,
body.light-green-theme .footer-links,
body.light-green-theme .card p,
body.light-green-theme .package p,
body.light-green-theme .content-card ul,
body.light-green-theme .feature-list li {
  color: var(--muted);
}

body.light-green-theme h1,
body.light-green-theme h2,
body.light-green-theme h3,
body.light-green-theme .logo span:last-child,
body.light-green-theme .card b,
body.light-green-theme .package h3,
body.light-green-theme .content-card strong {
  color: #10251b;
}

body.light-green-theme .nav,
body.light-green-theme .card,
body.light-green-theme .package,
body.light-green-theme .content-card,
body.light-green-theme .standard-box,
body.light-green-theme .contact-map-card,
body.light-green-theme .panel-preview,
body.light-green-theme .cta,
body.light-green-theme .price-card {
  background: rgba(255,255,255,.74);
  border-color: rgba(16,101,65,.14);
  box-shadow: 0 22px 70px rgba(16,101,65,.12);
  backdrop-filter: blur(14px);
}

body.light-green-theme .price-card.featured {
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.24), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.68));
  border-color: rgba(34,197,94,.34);
}

body.light-green-theme .eyebrow,
body.light-green-theme .badge {
  color: #14532d;
  background: rgba(34,197,94,.14);
  border-color: rgba(34,197,94,.28);
}

body.light-green-theme .btn-ghost {
  background: rgba(16,185,129,.10);
  color: #14532d;
  border-color: rgba(22,163,74,.22);
}

body.light-green-theme .btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #16a34a);
  color: white;
}

body.light-green-theme .btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: white;
}

body.light-green-theme .logo-badge,
body.light-green-theme .footer-logo-badge {
  background: rgba(255,255,255,.86);
  border-color: rgba(22,163,74,.20);
}

body.light-green-theme .hero-carousel {
  background: rgba(255,255,255,.72);
  border-color: rgba(16,101,65,.14);
}

body.light-green-theme .carousel-btn {
  background: rgba(20,83,45,.78);
}

body.light-green-theme .form input,
body.light-green-theme .form textarea,
body.light-green-theme .form select,
body.light-green-theme .custom-select-button {
  background: rgba(255,255,255,.82);
  color: #10251b;
  border-color: rgba(16,101,65,.18);
}

body.light-green-theme .form input::placeholder,
body.light-green-theme .form textarea::placeholder {
  color: rgba(16,37,27,.48);
}

body.light-green-theme .custom-select-menu {
  background: #f4fff9;
  border-color: rgba(16,101,65,.16);
}

body.light-green-theme .custom-select-menu button {
  color: #10251b;
}

body.light-green-theme .custom-select-menu button:hover {
  background: rgba(34,197,94,.14);
}

body.light-green-theme footer {
  background: rgba(255,255,255,.42);
  border-top-color: rgba(16,101,65,.12);
}

body.light-green-theme .theme-toggle {
  background: linear-gradient(135deg, #081827, #0d2538);
  color: #ffffff;
}

@media (max-width: 760px) {
  .theme-toggle {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }
}

/* PREMIUM RENKLİ NAV MENÜ */
.nav-links {
  gap: 10px;
}

.nav-links a:not(.btn) {
  position: relative;
  overflow: hidden;
  padding: 11px 16px;
  border-radius: 999px;
  color: #e8f6ff;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition:
    transform .22s ease,
    color .22s ease,
    background .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.nav-links a:not(.btn)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,.95), rgba(34,197,94,.85));
  opacity: 0;
  transition: opacity .22s ease;
  z-index: -1;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 120%;
  top: -10%;
  left: -52px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  transition: left .42s ease;
}

.nav-links a:not(.btn):hover {
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(56,189,248,.45);
  box-shadow:
    0 12px 34px rgba(56,189,248,.20),
    0 0 0 1px rgba(34,197,94,.12);
}

.nav-links a:not(.btn):hover::before {
  opacity: 1;
}

.nav-links a:not(.btn):hover::after {
  left: calc(100% + 52px);
}

/* Aktif sayfa hissi */
body:has(a[href="/hakkimizda/"]:hover) .nav-links a[href="/hakkimizda/"],
body:has(a[href="/ozellikler/"]:hover) .nav-links a[href="/ozellikler/"],
body:has(a[href="/paketler/"]:hover) .nav-links a[href="/paketler/"],
body:has(a[href="/tasima/"]:hover) .nav-links a[href="/tasima/"],
body:has(a[href="/demo-talep/"]:hover) .nav-links a[href="/demo-talep/"],
body:has(a[href="/iletisim/"]:hover) .nav-links a[href="/iletisim/"] {
  color: #ffffff;
}

/* WHATSAPP NAV BUTONU */
.nav-links .btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 950;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,.20);
}

.nav-links .btn-ghost {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  box-shadow:
    0 14px 36px rgba(34,197,94,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.nav-links .btn-ghost::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 130%;
  top: -15%;
  left: -58px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  transform: skewX(-18deg);
  transition: left .5s ease;
}

.nav-links .btn-ghost:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 18px 48px rgba(34,197,94,.38),
    0 0 0 4px rgba(34,197,94,.12);
}

.nav-links .btn-ghost:hover::after {
  left: calc(100% + 58px);
}

/* AÇIK YEŞİL TEMADA NAV */
body.light-green-theme .nav-links a:not(.btn) {
  color: #123226;
  background: rgba(255,255,255,.72);
  border-color: rgba(22,163,74,.18);
  box-shadow: 0 8px 22px rgba(16,101,65,.08);
}

body.light-green-theme .nav-links a:not(.btn):hover {
  color: #ffffff;
  border-color: rgba(34,197,94,.38);
}

body.light-green-theme .nav-links .btn-ghost {
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #0f766e);
}

/* MOBİL NAV DAHA DÜZENLİ */
@media (max-width: 980px) {
  .nav-links {
    gap: 8px;
  }

  .nav-links a:not(.btn) {
    padding: 10px 13px;
    font-size: 13px;
  }

  .nav-links .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .nav-links a:not(.btn),
  .nav-links .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* NAV ŞİŞME DÜZELTME - KOMPAKT PREMIUM MENÜ */
.nav {
  align-items: center !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.nav-links a:not(.btn) {
  min-height: 42px !important;
  height: 42px !important;
  padding: 0 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  white-space: nowrap !important;
}

.nav-links .btn {
  min-height: 46px !important;
  height: 46px !important;
  padding: 0 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* Kurumsal Site özellikle iki satıra düşmesin */
.nav-links a[href="/kurumsal-web-sitesi/"] {
  min-width: auto !important;
  max-width: none !important;
  white-space: nowrap !important;
}

/* Menü fazla kalabalık olursa aralığı daralt */
@media (max-width: 1180px) {
  .nav-links {
    gap: 6px !important;
  }

  .nav-links a:not(.btn) {
    padding: 0 11px !important;
    font-size: 13px !important;
  }

  .nav-links .btn {
    padding: 0 15px !important;
    font-size: 13px !important;
  }

  .logo span:last-child {
    font-size: 19px !important;
  }

  .logo-img {
    width: 64px !important;
  }
}

/* Tablet/mobilde şişmesin, düzenli grid olsun */
@media (max-width: 980px) {
  .nav {
    display: block !important;
  }

  .nav-links {
    margin-top: 14px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
    white-space: normal !important;
  }

  .nav-links a:not(.btn),
  .nav-links .btn {
    width: 100% !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 0 8px !important;
    font-size: 12px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 640px) {
  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* AÇIK TEMA PAKETLER OKUNABİLİRLİK DÜZELTME */
body.light-green-theme .price-card,
body.light-green-theme .package,
body.light-green-theme .card,
body.light-green-theme .content-card,
body.light-green-theme .standard-box {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,253,245,.90)) !important;
  color: #0f241b !important;
  border-color: rgba(16,101,65,.18) !important;
}

body.light-green-theme .price-card.featured {
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.22), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(225,250,238,.92)) !important;
  border-color: rgba(22,163,74,.36) !important;
}

body.light-green-theme .price-card h2,
body.light-green-theme .price-card h3,
body.light-green-theme .package-name,
body.light-green-theme .new-price,
body.light-green-theme .new-price span,
body.light-green-theme .price-card b,
body.light-green-theme .price-card strong,
body.light-green-theme .content-card h2,
body.light-green-theme .card b {
  color: #0f241b !important;
  text-shadow: none !important;
}

body.light-green-theme .old-price {
  color: rgba(15,36,27,.42) !important;
}

body.light-green-theme .discount {
  color: #15803d !important;
  font-weight: 900 !important;
}

body.light-green-theme .price-note {
  background: rgba(22,163,74,.075) !important;
  border-color: rgba(22,163,74,.16) !important;
  color: #294d3d !important;
}

body.light-green-theme .price-note strong {
  color: #0f241b !important;
}

body.light-green-theme .price-note small {
  color: rgba(15,36,27,.58) !important;
}

body.light-green-theme .feature-list li {
  color: #294d3d !important;
}

body.light-green-theme .feature-list li::before {
  color: #16a34a !important;
}

body.light-green-theme .feature-list li.no {
  color: rgba(15,36,27,.46) !important;
}

body.light-green-theme .feature-list li.no::before {
  color: rgba(15,36,27,.36) !important;
}

body.light-green-theme .compare {
  background: rgba(255,255,255,.92) !important;
  border-color: rgba(16,101,65,.18) !important;
}

body.light-green-theme .compare th {
  background: rgba(22,163,74,.12) !important;
  color: #0f241b !important;
}

body.light-green-theme .compare td {
  color: #294d3d !important;
  border-color: rgba(16,101,65,.12) !important;
}

/* AÇIK TEMA BUTONLAR DAHA NET */
body.light-green-theme .price-card .btn-primary,
body.light-green-theme .content-card .btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #16a34a) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 38px rgba(22,163,74,.22) !important;
}

body.light-green-theme .price-card .btn-whatsapp,
body.light-green-theme .content-card .btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #15803d) !important;
  color: #ffffff !important;
}

/* KURUMSAL SITE MENÜDE ŞİŞMESİN */
.nav-links a[href="/kurumsal-web-sitesi/"] {
  white-space: nowrap !important;
  min-width: 0 !important;
}

/* DEMO TALEP - HIZLANDIRAN BİLGİLER KARTI */
.quick-info-card {
  margin-top: 30px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.065));
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}

.quick-info-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.quick-info-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  box-shadow: 0 16px 40px rgba(56,189,248,.22);
  font-size: 24px;
}

.quick-info-head h2 {
  margin: 0 0 8px;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -.035em;
}

.quick-info-head p {
  margin: 0;
  max-width: 760px;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.quick-info-item {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.075);
}

.quick-info-item b {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
}

.quick-info-item span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

/* Açık tema uyumu */
body.light-green-theme .quick-info-card {
  background:
    radial-gradient(circle at top left, rgba(34,197,94,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,253,245,.90)) !important;
  border-color: rgba(16,101,65,.18) !important;
}

body.light-green-theme .quick-info-head h2,
body.light-green-theme .quick-info-item b {
  color: #0f241b !important;
}

body.light-green-theme .quick-info-item {
  background: rgba(22,163,74,.07) !important;
  border-color: rgba(22,163,74,.14) !important;
}

body.light-green-theme .quick-info-item span {
  color: #294d3d !important;
}

@media (max-width: 1100px) {
  .quick-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .quick-info-card {
    padding: 22px;
    border-radius: 24px;
  }

  .quick-info-head {
    display: block;
  }

  .quick-info-icon {
    margin-bottom: 14px;
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
  }
}
