/* ============================================================
   ProdaHosting — style.css
   Marka renkleri: Mavi #1a73e8 | Turuncu #F7971E
   Koyu header/hero: #0f1b3d
   ============================================================ */

/* ─── CSS Değişkenleri ─────────────────────────────────────── */
:root {
  --ph-blue:        #1a73e8;
  --ph-blue-dark:   #1158c7;
  --ph-orange:      #F7971E;
  --ph-orange-dark: #d97c10;
  --ph-dark:        #0f1b3d;
  --ph-dark-2:      #1e2d5c;
  --ph-dark-3:      #263566;
  --ph-light:       #f4f7ff;
  --ph-light-2:     #eef2fc;
  --ph-text:        #2d3a5a;
  --ph-muted:       #6b7898;
  --ph-border:      #d8e2f8;
  --ph-shadow:      0 4px 24px rgba(26, 115, 232, 0.10);
  --ph-shadow-lg:   0 8px 40px rgba(26, 115, 232, 0.16);
  --ph-radius:      12px;
  --ph-radius-lg:   18px;
  --ph-transition:  all 0.25s ease;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ph-text);
  background: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; transition: var(--ph-transition); }
a:hover { text-decoration: none; }

img { max-width: 100%; height: auto; }

/* ─── Topbar ───────────────────────────────────────────────── */
#topbar {
  background: var(--ph-dark);
  color: rgba(255,255,255,0.80);
  font-size: 0.78rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

#topbar a {
  color: rgba(255,255,255,0.80);
  margin: 0 10px;
}

#topbar a:hover { color: var(--ph-orange); }

#topbar .divider {
  width: 1px;
  height: 13px;
  background: rgba(255,255,255,0.2);
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}

/* ─── Navbar / Header ──────────────────────────────────────── */
#mainNav {
  background: var(--ph-dark-2);
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1050;
}

#mainNav.scrolled {
  background: var(--ph-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.30);
}

#mainNav .navbar-brand img {
  max-height: 48px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
}

#mainNav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.90rem;
  font-weight: 500;
  padding: 22px 14px !important;
  transition: var(--ph-transition);
}

#mainNav .nav-link:hover,
#mainNav .nav-link:focus {
  color: var(--ph-orange) !important;
}

#mainNav .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  padding: 6px 10px;
}

#mainNav .navbar-toggler-icon {
  filter: invert(1);
}

.btn-musteri-paneli {
  background: var(--ph-orange);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 12px;
}

.btn-musteri-paneli:hover {
  background: var(--ph-orange-dark);
  color: #fff !important;
}

/* ─── Mega Menü ────────────────────────────────────────────── */
.mega-menu-wrapper {
  position: static;
}

.mega-menu-wrapper > .dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 720px;
  max-width: 780px;
  background: #fff;
  border: none;
  border-radius: 0 0 var(--ph-radius-lg) var(--ph-radius-lg);
  box-shadow: 0 16px 48px rgba(15, 27, 61, 0.18);
  padding: 28px;
  top: 100%;
  z-index: 1055;
  animation: menuFadeIn 0.2s ease;
}

.mega-menu-wrapper.show > .dropdown-menu {
  display: flex;
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  transition: var(--ph-transition);
  cursor: pointer;
}

.mega-menu-item:hover { background: var(--ph-light); }

.mega-menu-item .mi-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ph-light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--ph-blue);
  transition: var(--ph-transition);
}

.mega-menu-item:hover .mi-icon {
  background: var(--ph-blue);
  color: #fff;
}

.mega-menu-item .mi-title {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ph-dark);
  margin-bottom: 2px;
}

.mega-menu-item .mi-desc {
  font-size: 0.78rem;
  color: var(--ph-muted);
  line-height: 1.4;
}

.mega-featured-card {
  background: linear-gradient(135deg, var(--ph-dark) 0%, var(--ph-dark-3) 100%);
  border-radius: var(--ph-radius);
  padding: 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mega-featured-card .fc-badge {
  background: var(--ph-orange);
  color: #fff;
  font-size: 0.70rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.mega-featured-card .fc-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.mega-featured-card .fc-desc {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}

.mega-featured-card .btn-fc {
  background: var(--ph-orange);
  color: #fff;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-block;
  transition: var(--ph-transition);
}

.mega-featured-card .btn-fc:hover {
  background: var(--ph-orange-dark);
  color: #fff;
}

.mega-featured-card .fc-links {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.mega-featured-card .fc-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  display: block;
  margin-bottom: 6px;
  transition: var(--ph-transition);
}

.mega-featured-card .fc-links a:hover {
  color: var(--ph-orange);
  padding-left: 4px;
}

/* Standart dropdown menüler */
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 32px rgba(15, 27, 61, 0.14);
  border-radius: 0 0 var(--ph-radius) var(--ph-radius);
  padding: 10px 0;
  min-width: 220px;
}

.dropdown-item {
  padding: 9px 20px;
  font-size: 0.87rem;
  color: var(--ph-text);
  transition: var(--ph-transition);
}

.dropdown-item:hover {
  background: var(--ph-light);
  color: var(--ph-blue);
  padding-left: 26px;
}

/* ─── Hero Section ─────────────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, var(--ph-dark) 0%, var(--ph-dark-3) 60%, #1a73e815 100%);
  min-height: 620px;
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}

#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,151,30,0.12) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(247,151,30,0.15);
  color: var(--ph-orange);
  border: 1px solid rgba(247,151,30,0.35);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.80rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

#hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.20;
  margin-bottom: 20px;
}

#hero h1 span.hl-orange { color: var(--ph-orange); }
#hero h1 span.hl-blue   { color: #6aabff; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 34px;
}

.btn-hero-primary {
  background: var(--ph-orange);
  color: #fff;
  border-radius: 10px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: var(--ph-transition);
  box-shadow: 0 4px 18px rgba(247,151,30,0.35);
}

.btn-hero-primary:hover {
  background: var(--ph-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247,151,30,0.40);
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.30);
  transition: var(--ph-transition);
}

.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.70);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Dashboard mockup */
.hero-mockup {
  position: relative;
  z-index: 2;
}

.server-img-wrap {
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.40);
}

.server-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  opacity: 0.75;
}

.server-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,61,0.60) 0%, rgba(26,115,232,0.25) 100%);
}

.mockup-cards {
  position: absolute;
  bottom: 18px;
  left: 14px;
  right: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 10px;
  padding: 10px 10px 8px;
  text-align: center;
}

.mockup-card .mc-icon {
  font-size: 1.2rem;
  color: var(--ph-orange);
  display: block;
  margin-bottom: 4px;
}

.mockup-card .mc-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  display: block;
  line-height: 1.2;
}

.mockup-card .mc-value {
  font-size: 0.60rem;
  color: rgba(255,255,255,0.55);
  display: block;
}

/* ─── Domain Search Section ────────────────────────────────── */
#domainSearch {
  background: #fff;
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -1px;
}

.domain-search-card {
  background: linear-gradient(135deg, #fff 0%, var(--ph-light) 100%);
  border-radius: var(--ph-radius-lg);
  box-shadow: 0 12px 48px rgba(15,27,61,0.13);
  padding: 40px 40px 36px;
  margin-top: -60px;
  position: relative;
  z-index: 20;
  border: 1px solid var(--ph-border);
}

.domain-search-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ph-dark);
  margin-bottom: 6px;
}

.domain-search-card p {
  color: var(--ph-muted);
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.domain-input-wrap {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,115,232,0.12);
  border: 2px solid var(--ph-border);
  transition: border-color 0.25s;
}

.domain-input-wrap:focus-within {
  border-color: var(--ph-blue);
}

#domainInput {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ph-dark);
}

#domainInput::placeholder { color: #aab8d4; }

.btn-domain-search {
  background: var(--ph-blue);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--ph-transition);
  white-space: nowrap;
}

.btn-domain-search:hover { background: var(--ph-blue-dark); }

.domain-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.domain-chip {
  background: var(--ph-light-2);
  border: 1px solid var(--ph-border);
  border-radius: 6px;
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ph-text);
  cursor: pointer;
  transition: var(--ph-transition);
}

.domain-chip:hover,
.domain-chip.active {
  background: var(--ph-blue);
  color: #fff;
  border-color: var(--ph-blue);
}

/* ─── Trust Strip ───────────────────────────────────────────── */
#trustStrip {
  background: linear-gradient(135deg, var(--ph-blue) 0%, var(--ph-dark-2) 100%);
  padding: 36px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.trust-item .t-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.13);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-item .t-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-item .t-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.68);
}

.trust-divider {
  border-left: 1px solid rgba(255,255,255,0.15);
  height: 48px;
}

/* ─── Section Genel ─────────────────────────────────────────── */
.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ph-dark);
  line-height: 1.25;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--ph-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-tag {
  display: inline-block;
  background: var(--ph-light-2);
  color: var(--ph-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Hosting Paket Kartları ────────────────────────────────── */
#hostingPackages {
  background: var(--ph-light);
  padding: 90px 0;
}

.hosting-card {
  background: #fff;
  border-radius: var(--ph-radius-lg);
  border: 1px solid var(--ph-border);
  padding: 30px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--ph-transition);
  position: relative;
  overflow: hidden;
}

.hosting-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ph-border);
  transition: var(--ph-transition);
}

.hosting-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ph-shadow-lg);
  border-color: var(--ph-blue);
}

.hosting-card:hover::before {
  background: var(--ph-blue);
}

.hosting-card.popular {
  border-color: var(--ph-blue);
  box-shadow: var(--ph-shadow-lg);
}

.hosting-card.popular::before {
  background: linear-gradient(90deg, var(--ph-blue), var(--ph-orange));
}

.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--ph-orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hosting-card .hc-icon {
  width: 52px;
  height: 52px;
  background: var(--ph-light-2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ph-blue);
  margin-bottom: 18px;
  transition: var(--ph-transition);
}

.hosting-card:hover .hc-icon,
.hosting-card.popular .hc-icon {
  background: var(--ph-blue);
  color: #fff;
}

.hosting-card .hc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ph-dark);
  margin-bottom: 8px;
}

.hosting-card .hc-desc {
  font-size: 0.83rem;
  color: var(--ph-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.hosting-card .hc-price {
  font-size: 0.80rem;
  color: var(--ph-muted);
  margin-bottom: 14px;
}

.hosting-card .hc-price strong {
  font-size: 1.25rem;
  color: var(--ph-blue);
  font-weight: 800;
}

.hosting-card .hc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.hosting-card .hc-features li {
  font-size: 0.82rem;
  color: var(--ph-text);
  padding: 5px 0;
  border-bottom: 1px solid var(--ph-light-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hosting-card .hc-features li:last-child { border: none; }

.hosting-card .hc-features li i {
  color: #22c55e;
  font-size: 0.75rem;
}

.btn-hosting {
  background: var(--ph-light-2);
  color: var(--ph-blue);
  border: 2px solid var(--ph-border);
  border-radius: 9px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.83rem;
  width: 100%;
  text-align: center;
  display: block;
  transition: var(--ph-transition);
}

.btn-hosting:hover {
  background: var(--ph-blue);
  color: #fff;
  border-color: var(--ph-blue);
}

.hosting-card.popular .btn-hosting {
  background: var(--ph-blue);
  color: #fff;
  border-color: var(--ph-blue);
}

.hosting-card.popular .btn-hosting:hover {
  background: var(--ph-blue-dark);
}

/* ─── cPanel Showcase ───────────────────────────────────────── */
#cpanelShowcase {
  background: #fff;
  padding: 90px 0;
}

.cpanel-img-wrap {
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  box-shadow: var(--ph-shadow-lg);
  position: relative;
}

.cpanel-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.cpanel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cpanel-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--ph-light);
  border-radius: 10px;
  border: 1px solid var(--ph-border);
  transition: var(--ph-transition);
}

.cpanel-feat-item:hover {
  background: var(--ph-light-2);
  border-color: var(--ph-blue);
}

.cpanel-feat-item .cf-icon {
  width: 36px;
  height: 36px;
  background: var(--ph-blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.cpanel-feat-item .cf-title {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ph-dark);
  margin-bottom: 2px;
}

.cpanel-feat-item .cf-desc {
  font-size: 0.75rem;
  color: var(--ph-muted);
  line-height: 1.4;
}

/* ─── WordPress Section ─────────────────────────────────────── */
#wordpressSection {
  background: linear-gradient(135deg, var(--ph-light) 0%, #e8effe 100%);
  padding: 90px 0;
}

.wp-img-wrap {
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  box-shadow: var(--ph-shadow-lg);
}

.wp-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.wp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wp-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.87rem;
  color: var(--ph-text);
  border-bottom: 1px solid var(--ph-border);
}

.wp-feature-list li:last-child { border: none; }

.wp-feature-list li i {
  width: 24px;
  height: 24px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  flex-shrink: 0;
}

.btn-wp {
  background: #21759b;
  color: #fff;
  border-radius: 10px;
  padding: 13px 30px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--ph-transition);
  display: inline-block;
}

.btn-wp:hover {
  background: #185d7a;
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Hazır Site Section ────────────────────────────────────── */
#hazirSite {
  background: #fff;
  padding: 90px 0;
}

.hazir-card {
  background: var(--ph-light);
  border-radius: var(--ph-radius-lg);
  border: 1px solid var(--ph-border);
  padding: 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--ph-transition);
  overflow: hidden;
  position: relative;
}

.hazir-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ph-shadow-lg);
  border-color: var(--ph-blue);
}

.hazir-card .hz-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

.hazir-card .hz-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hazir-card:hover .hz-img img { transform: scale(1.04); }

.hazir-card .hz-icon {
  width: 46px;
  height: 46px;
  background: var(--ph-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
}

.hazir-card .hz-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ph-dark);
  margin-bottom: 8px;
}

.hazir-card .hz-desc {
  font-size: 0.82rem;
  color: var(--ph-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.btn-hazir {
  background: transparent;
  color: var(--ph-blue);
  border: 2px solid var(--ph-blue);
  border-radius: 9px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 0.82rem;
  display: inline-block;
  transition: var(--ph-transition);
  align-self: flex-start;
}

.btn-hazir:hover {
  background: var(--ph-blue);
  color: #fff;
}

/* ─── Domain & E-Posta ──────────────────────────────────────── */
#domainEmail {
  background: var(--ph-light);
  padding: 90px 0;
}

.de-card {
  background: #fff;
  border-radius: var(--ph-radius-lg);
  border: 1px solid var(--ph-border);
  padding: 34px 30px;
  height: 100%;
  transition: var(--ph-transition);
}

.de-card:hover {
  box-shadow: var(--ph-shadow-lg);
  border-color: var(--ph-blue);
}

.de-card .de-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ph-border);
}

.de-card .de-header .de-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--ph-blue), var(--ph-dark-2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.de-card .de-header h3 {
  font-size: 1.10rem;
  font-weight: 700;
  color: var(--ph-dark);
  margin: 0;
}

.de-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.de-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ph-light-2);
  font-size: 0.85rem;
  color: var(--ph-text);
}

.de-list li:last-child { border: none; }

.de-list li i {
  color: var(--ph-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.de-list li strong { display: block; font-weight: 600; color: var(--ph-dark); }
.de-list li span { font-size: 0.77rem; color: var(--ph-muted); }

/* ─── Neden ProdaHosting ────────────────────────────────────── */
#nedenProda {
  background: #fff;
  padding: 90px 0;
}

.neden-card {
  background: var(--ph-light);
  border-radius: var(--ph-radius-lg);
  border: 1px solid var(--ph-border);
  padding: 28px 24px;
  height: 100%;
  transition: var(--ph-transition);
  position: relative;
  overflow: hidden;
}

.neden-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ph-blue), var(--ph-orange));
  opacity: 0;
  transition: var(--ph-transition);
}

.neden-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ph-shadow);
  border-color: var(--ph-blue);
}

.neden-card:hover::after { opacity: 1; }

.neden-card .nc-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--ph-blue), var(--ph-dark-2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 18px;
}

.neden-card .nc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ph-dark);
  margin-bottom: 8px;
}

.neden-card .nc-desc {
  font-size: 0.82rem;
  color: var(--ph-muted);
  line-height: 1.6;
}

/* ─── Site Taşıma CTA ───────────────────────────────────────── */
#siteTasima {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.tasima-bg {
  position: relative;
}

.tasima-bg img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.tasima-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,61,0.92) 0%, rgba(26,115,232,0.82) 100%);
  display: flex;
  align-items: center;
}

.tasima-content {
  text-align: center;
  color: #fff;
  padding: 60px 20px;
}

.tasima-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.tasima-content p {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.btn-tasima {
  background: var(--ph-orange);
  color: #fff;
  border-radius: 10px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--ph-transition);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(247,151,30,0.40);
}

.btn-tasima:hover {
  background: var(--ph-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(247,151,30,0.50);
}

/* ─── SSS / Accordion ───────────────────────────────────────── */
#sss {
  background: var(--ph-light);
  padding: 90px 0;
}

.sss-accordion .accordion-item {
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.sss-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ph-dark);
  background: #fff;
  padding: 18px 22px;
}

.sss-accordion .accordion-button:not(.collapsed) {
  background: var(--ph-light-2);
  color: var(--ph-blue);
  box-shadow: none;
}

.sss-accordion .accordion-button::after {
  filter: none;
}

.sss-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
}

.sss-accordion .accordion-body {
  font-size: 0.87rem;
  color: var(--ph-muted);
  line-height: 1.8;
  background: #fff;
  padding: 6px 22px 20px;
}

/* ─── Footer ────────────────────────────────────────────────── */
#footer {
  background: var(--ph-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-brand img {
  max-height: 42px;
  margin-bottom: 16px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.40));
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 220px;
}

.footer-col h5 {
  font-size: 0.80rem;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  transition: var(--ph-transition);
  display: block;
}

.footer-col ul li a:hover {
  color: var(--ph-orange);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
}

.footer-contact-item i {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--ph-orange);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  margin: 0;
}

.footer-legal a {
  color: rgba(255,255,255,0.40);
  font-size: 0.78rem;
  margin-left: 16px;
  transition: var(--ph-transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.75); }

/* ─── Scroll-to-top ─────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--ph-blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,115,232,0.40);
  transition: var(--ph-transition);
  z-index: 2000;
}

#scrollTop.visible {
  display: flex;
}

#scrollTop:hover {
  background: var(--ph-blue-dark);
  transform: translateY(-2px);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .mega-menu-wrapper > .dropdown-menu {
    min-width: 640px;
    max-width: 700px;
  }
}

@media (max-width: 991px) {
  /* Mobil menü sıfırlama */
  .mega-menu-wrapper > .dropdown-menu {
    position: static !important;
    transform: none !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-shadow: none;
    border-radius: var(--ph-radius);
    margin-top: 8px;
    padding: 16px;
    animation: none;
    display: none;
  }

  .mega-menu-wrapper.show > .dropdown-menu {
    display: block;
  }

  #mainNav .nav-link {
    padding: 12px 6px !important;
  }

  #hero { padding: 60px 0 50px; }
  #hero h1 { font-size: 1.80rem; }

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

  .domain-search-card {
    padding: 28px 22px;
    margin-top: -30px;
  }
}

@media (max-width: 767px) {
  #topbar .topbar-right { display: none; }

  #hero h1 { font-size: 1.55rem; }

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

  .mockup-cards { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .mockup-card { padding: 7px 6px; }

  .domain-search-card {
    padding: 22px 16px;
    margin-top: -20px;
  }

  .domain-input-wrap {
    flex-direction: column;
    border-radius: 10px;
  }

  .btn-domain-search { border-radius: 0 0 10px 10px; }

  .cpanel-features { grid-template-columns: 1fr; }

  .tasima-bg img { height: 480px; }

  .trust-divider { display: none; }

  .footer-legal { margin-top: 8px; }
  .footer-legal a { margin-left: 0; margin-right: 16px; }
}

@media (max-width: 575px) {
  #hero h1 { font-size: 1.35rem; }
  .hero-desc { font-size: 0.90rem; }

  .domain-chip { font-size: 0.72rem; padding: 4px 10px; }

  .mockup-card .mc-label { font-size: 0.58rem; }
}
