:root {
  --primary: #4285f4;
  --primary-dark: #3367d6;
  --primary-light: #e8f0fe;
  --success: #34a853;
  --success-light: #d8f7e1;
  --warning: #fbbc05;
  --danger: #ea4335;
  --purple: #9334e6;

  --bg-body: #f8f9fa;
  --bg-surface: #ffffff;
  --text-main: #202124;
  --text-secondary: #5f6368;
  --border: #dadce0;

  --shadow-sm: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 12px 24px rgba(60, 64, 67, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --font-main: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-gradient {
  background: linear-gradient(45deg, var(--primary), var(--success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  text-align: center;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}
.btn-primary {
  background: linear-gradient(
    to bottom,
    #5a9bff 0%,   /* üst parlak */
    #4285f4 45%,
    #3367d6 100%  /* alt koyu */
  );
  color: white;
  padding: 12px 26px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;

  /* Bombeli 3D görünüm */
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35), /* üst ışık */
    inset 0 -3px 6px rgba(0, 0, 0, 0.25),   /* alt gölge */
    0 6px 14px rgba(66, 133, 244, 0.35);    /* dış derinlik */

  transition: all 0.15s ease;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(66, 133, 244, 0.4);
}
.btn-success {
  background: linear-gradient(
    to bottom,
    #4fe38a 0%,   /* üst – aydınlık */
    #34a853 45%,
    #2c8c45 100%  /* alt – koyu */
  );
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;

  /* Bombeli 3D hissi */
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35), /* üst parlaklık */
    inset 0 -3px 6px rgba(0, 0, 0, 0.25),   /* alt gölge */
    0 8px 16px rgba(0, 0, 0, 0.25);         /* dış gölge */

  transition: all 0.15s ease;
}
.btn-success:hover {
  transform: translateY(-2px);
}
.btn-danger {
  background: var(--danger);
  color: white;
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}
.btn-outline {
  background: white;
  color: var(--text-main);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.btn-text {
  background: none;
  color: var(--primary);
  font-weight: 600;
}
.btn-block {
  width: 100%;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  height: 70px;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled ~ * .nav-menu {
  top: 70px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-g {
  font-size: 32px;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.nav-link:hover {
  color: var(--primary);
}
.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown {
  position: relative;
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: white;
  min-width: 260px;
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}
.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-main);
}
.dropdown-content a:hover {
  background: var(--bg-body);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
/* HERO */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(66, 133, 244, 0.08) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 30px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 14px;
  flex-wrap: wrap;
}
.hero-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-stats i {
  color: var(--success);
}

.hero-visual {
  position: relative;
  height: 500px;
}
.review-card {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 280px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.float-1 {
  top: 20px;
  left: 0;
}
.float-2 {
  bottom: 60px;
  right: 0;
  animation-delay: 3s;
}
.review-card .stars {
  color: var(--warning);
  font-size: 14px;
  margin-bottom: 8px;
}
.review-card p {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-main);
  font-style: italic;
}
.review-card .user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
}
.bg-1 {
  background: #ea4335;
}
.bg-2 {
  background: #34a853;
}
.box-shadow {
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: url("https://upload.wikimedia.org/wikipedia/commons/4/49/Flag-map_of_Turkey.svg")
    no-repeat center/contain;
  opacity: 0.1;
  z-index: 0;
}
.map-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 240px;
  text-align: center;
  border: 1px solid var(--border);
  z-index: 1;
}
.map-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.map-card .rating {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 700;
}
.stars-sm {
  color: var(--warning);
  font-size: 12px;
}

/* COMPARISON SECTION */
.comparison-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.compare-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid var(--border);
}
.compare-card.sad {
  border-color: #ffebee;
}
.compare-card.happy {
  border-color: #e8f5e9;
  background: linear-gradient(180deg, #fff 0%, #f1f8f4 100%);
}
.compare-icon {
  font-size: 60px;
  margin-bottom: 20px;
}
.compare-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.compare-card ul {
  text-align: left;
}
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.compare-card li img {
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-card li span {
  flex: 1;
  line-height: 1.5;
}
.compare-card li:last-child {
  border: none;
}
.compare-card.sad li i {
  color: var(--danger);
}
.compare-card.happy li i {
  color: var(--success);
}

/* SECTIONS */
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.bg-light {
  background: white;
}

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.package-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  border: 1px solid var(--border);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.package-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}
.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.package-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}
.price-box {
  margin-bottom: 30px;
}
.old-price {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}
.package-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
}
.package-card .features {
  margin-bottom: 30px;
}
.package-card .features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 12px;
  background: #f8f9fa;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: 0.2s;
  border: 1px solid transparent;
  -webkit-border-radius: var(--radius-md);
  -moz-border-radius: var(--radius-md);
  -ms-border-radius: var(--radius-md);
  -o-border-radius: var(--radius-md);
}
.package-card .features li i {
  color: var(--success);
  margin-top: 4px;
  flex-shrink: 0;
}
.detail-link {
  text-align: center;
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.detail-link:hover {
  color: var(--primary);
}

.scrollable {
  max-height: 300px; /* İhtiyaca göre ayarla */
  overflow-y: auto; /* Dikey scroll */
  padding-right: 5px; /* Scroll çubuğu için boşluk */
}

.scrollable::-webkit-scrollbar {
  width: 6px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.scrollable::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
   -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.scrollable::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.test-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.test-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.test-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.test-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.test-stars {
  color: var(--warning);
  font-size: 14px;
  margin-bottom: 15px;
}
.test-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
}

/* CITY GRID */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.city-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-body);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid transparent;
}
.city-card:hover {
  background: var(--success-light);
  color: var(--success);
  border-color: var(--success);
}
.all-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  margin-top: 30px;
}
.all-cities-grid a {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px;
  transition: 0.2s;
}
.all-cities-grid a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

/* SERVICE DETAIL */
.breadcrumb-area {
	display:none;
  margin-top: 80px;
  padding: 14px 0;

  background: linear-gradient(
    to bottom,
    #6f7bd9 0%,   /* üst parlak */
    #5c6bc0 45%,
    #3f51b5 100%  /* alt koyu */
  );

  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;

  /* Bombeli görünüm */
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35), /* üst ışık */
    inset 0 -4px 6px rgba(0, 0, 0, 0.25),   /* alt gölge */
    0 8px 18px rgba(0, 0, 0, 0.35);         /* dış derinlik */

  transition: all 0.2s ease;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.breadcrumb a{
	color: #fff;
}
.breadcrumb a:hover {
  color: #fff;
  font-weight:bold;
}
.breadcrumb .sep {
  color: var(--border);
  margin: 0 5px;
}
.service-detail {
	margin-top: 60px;
  padding: 60px 0;
}
.service-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}
.page-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.2;
}
.service-banner {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-banner img {
  width: 100%;
  object-fit: cover;
}

/* ARTICLE CONTENT */
.content-box {
  line-height: 1.8;
}
.lead-text {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 25px;
  font-weight: 500;
}
.article-intro {
  margin-bottom: 40px;
}
.content-box h2 {
  font-size: 1.8rem;
  margin: 50px 0 20px;
  color: var(--text-main);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}
.content-box h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: var(--text-main);
}
.content-box p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}
.content-box ul {
  margin: 20px 0;
  padding-left: 20px;
}
.content-box ul li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}
.stats-list li,
.vision-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.stats-list i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}
.vision-list::before {
  display: none;
}

/* CTA INLINE */
.cta-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  border-radius: var(--radius-lg);
  margin: 40px 0;
  flex-wrap: wrap;
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* PROCESS GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}
.process-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  transition: 0.3s;
}
.process-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
}
.process-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.process-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA BOX */
.cta-box {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 50px 0;
}
.cta-box h3 {
	color:#fff;
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta-box p {
	color:#fff;
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}
.cta-box .btn {
  background: white;
  color: var(--primary);
}
.cta-box .btn:hover {
  transform: scale(1.05);
}

/* SECURITY FEATURES */
.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 30px 0;
}
.security-item {
  text-align: center;
  padding: 25px;
  background: var(--bg-body);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.security-item i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}
.security-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.security-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* PACKAGE RECOMMEND */
.package-recommend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.rec-package {
  padding: 25px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: 0.3s;
}
.rec-package:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.rec-package.highlight {
  background: var(--primary-light);
  border-color: var(--primary);
}
.rec-package h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.rec-package p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* SUCCESS STATS */
.success-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.stat-box {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 150px;
}
.stat-box strong {
  display: block;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.stat-box span {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* FINAL CTA */
.final-cta {
  background: #d2e2fc;
  color: white;
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 50px 0;
}
.final-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.animated-btn {
  animation: pulse 2s infinite;
}

/* FAQ */
.faq-section {
  margin-top: 60px;
}
.faq-section h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
.faq-item {
  background: #fff;
  margin-bottom: 16px;
  padding: 20px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  -webkit-border-radius: var(--radius-lg);
  -moz-border-radius: var(--radius-lg);
  -ms-border-radius: var(--radius-lg);
  -o-border-radius: var(--radius-lg);
}
.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  color: var(--text-secondary);
  padding: 0 0 0 0;
}
.faq-item.active .faq-answer {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}
/* SIDEBAR - STİCKY FİX */
.sidebar-widget {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.package-summary {
  text-align: center;
  position: sticky;
  top: 100px;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.3s ease;
}

/* Sidebar scrollbar stil */
.package-summary::-webkit-scrollbar {
  width: 4px;
}

.package-summary::-webkit-scrollbar-track {
  background: transparent;
}

.package-summary::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

/* Location selector ve diğer widgetlar */
.location-selector {
  position: relative;
  z-index: 5;
}

.sidebar-widget:not(.package-summary) {
  position: relative;
  z-index: 5;
}

/* SERVICE LAYOUT - Sidebar'ı sağda tut */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start; /* ÖNEMLİ: Bu satır eklenmeliydi! */
}

/* CONTENT BOX - Ana içerik alanı */
.content-box {
  min-height: 100vh; /* İçerik yeterince uzun olmalı ki sticky çalışsın */
  line-height: 1.8;
}

/* Responsive sidebar fix */
@media (max-width: 1024px) {
  .package-summary {
    position: relative !important;
    top: 0 !important;
    max-height: none !important;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    order: -1; /* Mobilde sidebar üstte */
  }
}

@media (max-width: 768px) {
  .service-layout {
    gap: 30px;
  }

  .sidebar-widget {
    padding: 20px;
  }
}

/* NAVBAR SCROLLED - Sidebar top pozisyonunu ayarla */
.navbar.scrolled ~ * .package-summary {
  top: 90px; /* Navbar küçülünce sidebar pozisyonu */
}

/* Ana sayfa için geçerli olmamalı - sadece detail sayfasında */
body:not(.service-detail-page) .package-summary {
  position: relative !important;
  top: 0 !important;
}
/* SIDEBAR */
.sidebar-widget {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}
.package-summary {
  text-align: center;
  position: sticky;
  top: 100px;
  overflow-y: auto;
  z-index: 10;
}
/* Sidebar scrollbar stil */
.package-summary::-webkit-scrollbar {
  width: 4px;
}

.package-summary::-webkit-scrollbar-track {
  background: transparent;
}

.package-summary::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

/* Location selector sticky fix */
.location-selector {
  position: relative;
  z-index: 5;
}

/* Other packages z-index */
.sidebar-widget:not(.package-summary) {
  position: relative;
  z-index: 5;
}

/* Responsive sidebar fix */
@media (max-width: 1024px) {
  .package-summary {
    position: relative;
    top: 0;
    max-height: none;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    order: -1;
  }
}
.rating-display {
  margin: 20px 0;
}
.stars-big {
  color: var(--warning);
  font-size: 20px;
  margin-bottom: 8px;
}
.rating-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.price-compare {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}
.old-price-lg {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 1.3rem;
}
.discount-badge {
  background: var(--danger);
  color: white;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}
.package-summary .price-tag {
	display:none;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 15px 0 25px;
}
.pulse-btn {
  animation: pulse-glow 2s infinite;
}
.secure-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sidebar-features {
  text-align: left;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.sidebar-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.sidebar-features i {
  color: var(--success);
  margin-top: 3px;
}

/* LOCATION SELECTOR */
.location-selector h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.location-links,
.location-links-scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.location-links-scroll {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}
.location-links-scroll::-webkit-scrollbar {
  width: 6px;
}
.location-links-scroll::-webkit-scrollbar-track {
  background: var(--bg-body);
  border-radius: 10px;
}
.location-links-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
.loc-link {
  padding: 12px;
  background: var(--bg-body);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.2s;
  border: 1px solid transparent;
}
.loc-link:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}
.show-all-locations {
  background: var(--primary-light);
  color: var(--primary);
  padding: 10px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  margin-top: 10px;
  transition: 0.3s;
}
.show-all-locations:hover {
  background: var(--primary);
  color: white;
}
.all-locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 15px;
}
.all-locations a {
  padding: 8px;
  background: var(--bg-body);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

/* OTHER PACKAGES */
.other-packages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini-package {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--bg-body);
  border-radius: var(--radius-md);
  transition: 0.3s;
  border: 1px solid transparent;
}
.mini-package:hover {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--shadow-sm);
}
.mini-package i {
  font-size: 24px;
}
.mini-package div {
  flex: 1;
}
.mini-package strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.mini-package span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* FOOTER */
.footer {
  background: #fff;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
  display: block;
}
.footer-logo span {
  color: var(--primary);
}
.footer h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.footer-col a {
  display: flex;
  gap:12;px
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: 0.2s;
}
.footer-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
  font-weight: 800;
}
.footer-col a img{
  margin-right: 10px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-body);
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}
.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: 0.3s;
  animation: bounce 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}
/* PHONE FLOAT */
.phone-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #3775dd;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: 0.3s;
  animation: bounce 2s infinite;
}
.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* ANIMATIONS */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(66, 133, 244, 0);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(52, 168, 83, 0);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.animate-in {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.delay-1 {
  animation-delay: 0.2s;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TABLE */
.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  margin-bottom:20px;
}

.table th,
.table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #f5f5f5;
}

.table th {
  background: #fafafa;
  font-weight: 600;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table tbody tr:hover {
  background: #fafafa;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;

    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    padding: 20px;
    transform: translateX(-100%);
    transition: 0.3s;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu .nav-link {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: center;
    background: rgb(248, 249, 250);
    border-radius: var(--radius-md);
  }
  .nav-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-actions {
    gap: 10px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-bg {
    display: none;
  }
  .hero-visual {
    display: none;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .page-title {
    font-size: 2rem;
  }
  .cta-inline {
    flex-direction: column;
  }
}
