* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header,
main,
article,
aside,
footer {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fafafa;
  background-image: none !important;
  transition: all 0.15s ease;
}

img {
  object-fit: cover;
  overflow: clip;
}
/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.4rem;
  color: #000;
}
.nav-logo a {
  color: #000;
  text-decoration: none;
}
.nav-logo a:hover {
  color: #2968ed;
}
.nav-logo a span {
  color: #2968ed;
  font-weight: 800;
}
.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #000;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #000;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Container System */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 16px;
}

.col-md-9 {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 16px;
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #ffffff 0%, #abc7ff 100%);
  color: #000;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-align: center;
}

.hero-content p {
  text-align: center;
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-image {
  position: relative;
}
.hero-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.18);
  border: 6px solid #fff;
  transform: perspective(1000px) rotateY(-8deg);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  max-height: 400px;
}
.hero-image:hover .hero-img {
  transform: perspective(1000px) rotateY(-3deg) translateY(-10px);
}

.hero-image-badge {
  position: absolute;
  background: #fff;
  color: #000;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  text-decoration: none;
}

.hero-features {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-features img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.hero-features-badge {
  color: #000;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  text-decoration: none;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.absolute-1 {
  top: 60px;
  left: -20px;
}

.absolute-2 {
  top: 60px;
  right: -50px;
}

.absolute-3 {
  bottom: 30px;
  left: 30px;
}

.absolute-4 {
  bottom: 60px;
  right: -30px;
}
.absolute-1 img,
.absolute-2 img,
.absolute-3 img,
.absolute-4 img {
  height: 30px;
  width: 30px;
}
.text-gradient {
  background: linear-gradient(45deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-primary {
  color: #2968ed;
}
/* Buttons */
.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin: 10px;
  display: flex;
}
.btn img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.btn-primary {
  background: #000;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.btn-secondary {
  border-radius: 50px;
  background: #fff;
  color: #000;
  border: 1px solid #bdbdbd;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
}

.btn-success {
  border-radius: 50px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

.btn-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.btn-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-pink {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
}

.btn-outline {
  background: #fff;
  color: #000;
  border: 2px solid #e5e5e5;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: #e5e5e5;
  color: #000;
  border-color: #000;
}
.show-all-button {
  background: #f8f9fa;
  color: #2968ed;
  border: 2px solid #2968ed;
  padding: 10px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
/* Call US */
.call-us-button {
  display: flex;
  position: fixed;
  bottom: 30px;
  left: 30px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50px;
  z-index: 99999;
  width: 60px;
  height: 60px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  background-color: [object object];
  background-image: radial-gradient(
    circle farthest-side,
    rgba(66, 133, 244, 1),
    rgba(51, 103, 214, 1)
  );
}

.call-us-button:hover {
  transform: translateY(2px);
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}

/* Whatsapp Support */

.whatsapp-support-button {
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 30px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50px;
  z-index: 99999;
  width: 60px;
  height: 60px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  background-color: [object object];
  background-image: radial-gradient(
    circle farthest-side,
    rgba(83, 211, 117, 1),
    rgba(29, 132, 57, 1)
  );
}

.whatsapp-support-button:hover {
  transform: translateY(2px);
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}

/* Text */
.text-gradient {
  background: linear-gradient(45deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Grid Section */
.grid-section {
  padding: 60px 0;
}
.grid-section p {
  margin-bottom: 20px;
}
.grid-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  align-items: stretch;
}

/* Cards */
.card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.card a {
  text-decoration: none;
  font-weight: bold;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: #e0e0e0;
}

.card-icon {
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card h2,
.card h3,
.card h4 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.card p {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}
.card a {
  text-align: center;
  justify-content: center;
}
.card-img-top {
  max-height: 200px;
  margin-bottom: 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.section-desc {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}
/* fiyat-tables */
.mt-20 {
  margin-top: 20;
}
.mt-100 {
  margin-top: 100px;
}
.grid-table {
  background: rgb(171, 195, 226);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  margin-top: 20px;
  font-weight: 700;
}
.fiyat-table {
  background: white;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.fiyat-table a {
  text-decoration: none;
  font-weight: bold;
}
.fiyat-table .btn {
  margin-top: 20px;
}
.fiyat-table:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: #e0e0e0;
}

.fiyat-table-icon {
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.fiyat-table h2,
.fiyat-table h3,
.fiyat-table h4 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.fiyat-table p {
  color: #131212;
  line-height: 1.6;
  margin: 20px;
}
.fiyat-table a {
  text-align: center;
  justify-content: center;
}

.fiyat-table .hurda-resim {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  max-height: 225px;
  margin-bottom: 20px;
}

.table-content {
  flex-grow: 1;
}
.table-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
}

.table-bottom-link {
  display: flex;
  flex-direction: column;
  color: #000;
  text-decoration: none;
  text-align: center;
  margin: 20px;
}
.table-bottom-link:hover {
  color: #2968ed;
}
/* Breadcrumbs */
.breadcrumbs-area {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f1f1f1;
}
.breadcrumbs {
  font-size: 14px;
  color: #666;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #2968ed;
  font-weight: bold;
  text-decoration: none;
}
.breadcrumbs .separator {
  padding: 10px;
  color: #dadce0;
}
/* Sidebar Demo */
.content-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f0f0f0;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #b5ceff 0%, #fff 100%);
  border-radius: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.sidebar-section {
  padding: 120px 0;
  background: #f8f9fa;
}

.sidebar {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  margin-bottom: 30px;
}

.sidebar h3 {
  margin-bottom: 24px;
  font-weight: 700;
  color: #000;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  margin-bottom: 8px;
}

.sidebar-list a {
  text-decoration: none;
  color: #666;
  padding: 12px 16px;
  display: block;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 500;
}

.sidebar-list a:hover {
  background: #f5f5f5;
  color: #000;
}
/* Lokasyon */
.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: #f8f9fa;
  border-radius: 10px;
}
.location-links-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
.il-link {
  padding: 12px;
  text-decoration: none;
  background: #f8f9fa;
  color: #000;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.2s;
  border: 1px solid transparent;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.il-link:hover {
  background: #e2ebf4;
  color: #2968ed;
  border-color: #2968ed;
}
.show-all-locations {
  background: #f8f9fa;
  color: #2968ed;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  margin-top: 10px;
  transition: 0.3s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.show-all-locations:hover {
  border-color: #2968ed;
}
.all-locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 15px;
}
.all-locations a {
  padding: 8px;
  background: #f8f9fa;
  border-radius: 10px;
  font-size: 0.85rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.other-packages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini-package {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  color: #1a1919;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
  border: 1px solid transparent;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.mini-package:hover {
  border-color: #2968ed;
  background: white;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}
.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: #202124;
}

.scrollable {
  height: 100%;
  max-height: 500px;
  overflow-y: auto;
}

.scrollable::-webkit-scrollbar {
  width: 8px;
}

.scrollable::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.scrollable::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.content {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  margin-bottom: 30px;
}

.content h2 {
  margin-bottom: 16px;
  font-weight: 700;
  color: #000;
}

.content h3 {
  margin-bottom: 16px;
  font-weight: 700;
  color: #000;
}

.content p {
  color: #1a1919;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: 20px;
}

.content-img {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.18);
  border: 6px solid #fff;

  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.features-list {
  list-style: none;
  margin-bottom: 20px;
}

.features-list li,
.features-list li a {
  display: flex;
  font-size: 1.1rem;
  transition: color 0.2s;
  font-weight: 500;
  margin-bottom: 5px;
}
.features-list li img {
  max-width: 30px;
  max-height: 30px;
  margin-right: 10px;
}

.features-list li a:hover {
  color: #c0cbff;
}

/* Table */
.table-section {
  padding: 120px 0;
  background: white;
}

.table-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.table-container {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.table th {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #f5f5f5;
}

.table td {
  padding: 12px;
  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;
}
/* Middle testimonials*/
.testimonials-content {
  padding: 50px;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.testimonials-content h2 {
  margin-bottom: 20px;
}
.rating-display {
  margin: 20px 0;
}
.stars-big {
  color: #fbbc05;
  font-size: 20px;
  margin-bottom: 8px;
}
.rating-text {
  font-size: 0.9rem;
  color: #5f6368;
}
.secure-note {
  font-size: 13px;
  color: #5f6368;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 20px;
}
.d-none {
  display: none;
}
.pulse-btn {
  animation: pulse-glow 2s infinite;
}
@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);
  }
}
/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: #f8f9fa;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  font-weight: 600;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s;
  color: #666;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: #666;
  line-height: 1.6;
}

.faq-answer.active {
  padding: 0 24px 24px;
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #b5ceff 0%, #fff 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #dadce0;
  transition: 0.3s;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(60, 64, 67, 0.15);
}
.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: #5f6368;
}
.test-stars {
  color: #fbbc05;
  font-size: 14px;
  margin-bottom: 15px;
}
.test-text {
  font-size: 0.95rem;
  color: #202124;
  line-height: 1.6;
  font-style: italic;
}
/* Section Header */
.section {
  padding: 100px;
}
.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: #5f6368;
}
/* Bolgeler */
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 40px;
}
.bg-light {
  background: #eaeef2;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.city-grid img {
  max-height: 24px;
  max-width: 24px;
}
.city-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  padding: 16px;
  color: #202124;
  background: #f8f9fa;
  border-radius: 16px;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #dadce0;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.city-card:hover {
  background: #dbe8fc;
  color: #1c5eca;
  border: 2px solid #1c5eca;
}
.all-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  padding-top: 30px;
  border-top: 1px solid #dadce0;
  margin-top: 30px;
}
.all-cities-grid a {
  font-size: 13px;
  color: #5f6368;
  padding: 5px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.all-cities-grid a:hover {
  color: #1c5eca;
  transform: translateX(3px);
}
/* List Section */
.list-section {
  padding: 120px 0;
  background: white;
}

.list-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.feature-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}

.feature-list li {
  padding: 20px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
  font-weight: 500;
}

.feature-list li:hover {
  color: #667eea;
}

/* Footer */
.footer {
  background: #000 !important;
  color: #999;
  padding: 40px 24px;
  font-size: 14px;
  background-image: none !important;
  background-attachment: initial !important;
  background-origin: initial !important;
  background-clip: initial !important;
  background-color: #000 !important;
  background-position: initial !important;
  background-repeat: initial !important;
  background-size: initial !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.footer-col {
  color: white;
  padding: 40px;
}
.footer-col a {
  color: white;
  text-decoration: none;
}
.footer-col p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-grid h2,
.footer-grid h3,
.footer-grid h4 {
  color: white;
}
.footer-grid h2,
.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
}
.footer-grid h2 span {
  color: #cbdcff;
  font-weight: bold;
}

.footer-list {
  max-width: 300px;
  list-style: none;
}

.footer-list li,
.footer-list li a {
  display: flex;
  font-size: 1.1rem;
  transition: color 0.2s;
  font-weight: 500;
  margin-bottom: 5px;
}
.footer-list li img {
  max-width: 30px;
  max-height: 30px;
  margin-right: 10px;
}

.footer-list li a:hover {
  color: #c0cbff;
}
.footer-bottom {
  color: #fafafa;
  text-align: center;

  border-top: 1px solid #313131;
}
.footer-bottom p {
  margin-top: 20px;
}
.footer-bottom a {
  text-decoration: none;
  color: #fafafa;
}
.whatsapp-support-button img,
.call-us-button img {
  max-width: 30px;
  max-height: 30px;
}
.hurda_fiyati {
  font-size: 36px;
  color: #2563eb;
  font-weight: 800;
  text-align: center;
}
/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 60px;
    transition: left 0.3s;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .col-md-3,
  .col-md-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-image {
    display: none;
  }
  .grid {
    grid-template-columns: 1fr;
  }

  .grid-section h2,
  .table-section h2,
  .faq-section h2,
  .list-section h2 {
    font-size: 2.5rem;
  }
  .breadcrumbs-area {
    display: none;
  }
  .hero-features {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container,
  .container-fluid {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .card,
  .sidebar,
  .content {
    padding: 24px;
  }
}
