/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0066cc;
  --secondary-color: #00a8e8;
  --dark-color: #1a1a2e;
  --light-color: #f5f5f5;
  --text-color: #333;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #0066cc 0%, #00a8e8 100%);
  --header-height: 72px;
  --footer-dark: #0f1629;
  --footer-accent: #1a2540;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 102, 204, 0.08);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar {
  padding: 0;
  height: var(--header-height);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  padding: 8px 0;
}

.logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-color);
  letter-spacing: -0.3px;
  line-height: 1.2;
  position: relative;
}

.logo span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.logo i {
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-menu > li > a,
.nav-menu > li > .dropbtn {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  position: relative;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.nav-menu > li > .dropbtn:hover {
  color: var(--primary-color);
  background: rgba(0, 102, 204, 0.04);
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  width: auto;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  transform: scaleX(1);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: var(--white);
  min-width: 280px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  border-radius: 12px;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 0;
  border: none;
}

.dropdown-content::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--white);
}

/* İlçeler dropdown için özel stil */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background: rgba(0, 102, 204, 0.3);
  border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 102, 204, 0.5);
}

.dropdown-content a {
  color: var(--text-color);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  font-size: 0.88rem;
  position: relative;
}

.dropdown-content a:first-child {
  border-radius: 8px 8px 0 0;
}

.dropdown-content a:last-child {
  border-radius: 0 0 8px 8px;
}

.dropdown-content a:hover {
  background-color: rgba(0, 102, 204, 0.05);
  border-left: 3px solid var(--primary-color);
  color: var(--primary-color);
  padding-left: 24px;
}

.dropdown-content a::after {
  display: none;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: dropdownIn 0.25s ease;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
  z-index: 1001;
}

.hamburger:hover {
  background: rgba(0, 102, 204, 0.06);
}

.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--dark-color);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}

/* Header phone CTA button (desktop) */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.3px;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  white-space: nowrap;
  height: auto !important;
}

.header-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4) !important;
  background: linear-gradient(135deg, #0055aa 0%, #0090d0 100%) !important;
}

.header-cta::after {
  display: none !important;
}

.header-cta i {
  font-size: 0.8rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  animation: wave 15s linear infinite;
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s 0.4s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-large {
  background: var(--white);
  color: var(--primary-color);
  padding: 15px 40px;
  font-size: 1.2rem;
}

.center-btn {
  text-align: center;
  margin-top: 2rem;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--light-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

/* Services Section */
.services-preview {
  padding: 80px 0;
}

.services-preview h2,
.why-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateY(-5px);
  border-color: var(--primary-color);
  cursor: pointer;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0066cc 0%, #00a8e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
  font-size: 1.3rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.service-link:hover {
  gap: 12px;
  color: var(--secondary-color);
}

.service-link i {
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Why Us Section */
.why-us {
  padding: 80px 0;
  background: var(--light-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-item {
  text-align: center;
  padding: 2rem;
}

.why-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.why-item h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: var(--gradient);
  text-align: center;
  color: var(--white);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: var(--footer-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.footer-top {
  background: var(--footer-accent);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-top-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
}

.footer-top-item i {
  font-size: 1.6rem;
  color: var(--secondary-color);
  width: 48px;
  height: 48px;
  background: rgba(0, 168, 232, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-top-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.footer-top-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 0;
}

.footer-col h3 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.footer-col h4 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.footer-col p.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

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

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--secondary-color);
  transform: translateX(4px);
}

.footer-col a i {
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.footer-col a:hover i.fa-arrow-right {
  opacity: 1;
}

.footer-col p {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-col > p > i {
  margin-right: 10px;
  color: var(--secondary-color);
  width: 18px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--gradient);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.info-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.info-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

/* Service Detail Page Styles */
.service-detail {
  background: #f8f9fa;
}

.service-hero {
  background: linear-gradient(135deg, #0066cc 0%, #00a8e8 100%);
  padding: 100px 0 60px;
  color: var(--white);
  position: relative;
}

.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  padding: 60px 0;
}

.content-main {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.content-block h2 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.content-block h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.content-block h4 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.content-block p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #444;
  font-size: 1.05rem;
}

.content-block ul,
.content-block ol {
  margin: 1.5rem 0 1.5rem 2rem;
  line-height: 1.8;
}

.content-block li {
  margin-bottom: 0.8rem;
  color: #444;
}

.content-block strong {
  color: var(--dark-color);
  font-weight: 600;
}

.check-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s;
}

.check-list li:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.check-list i {
  color: #28a745;
  font-size: 1.3rem;
  margin-top: 2px;
}

.faq-block {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary-color);
}

.faq-block h4 {
  color: var(--primary-color);
  margin: 0 0 0.8rem 0;
  font-size: 1.2rem;
}

.faq-block p {
  margin: 0;
}

.call-to-action {
  background: linear-gradient(135deg, #0066cc 0%, #00a8e8 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.call-to-action h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
  border: none;
}

.call-to-action p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.call-to-action .btn {
  margin: 0 0.5rem;
}

/* Sidebar Styles */
.sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary-color);
}

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

.service-list li {
  margin-bottom: 0.8rem;
}

.service-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
}

.service-list a:hover {
  background: #f8f9fa;
  color: var(--primary-color);
  padding-left: 1.2rem;
}

.service-list i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.contact-widget {
  background: linear-gradient(135deg, #0066cc 0%, #00a8e8 100%);
  color: var(--white);
}

.contact-widget h3 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.3);
}

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

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-info i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

/* Content Section */
.content-section {
  padding: 80px 0;
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.content-section h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--primary-color);
}

.content-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-section ul {
  margin: 1rem 0 1rem 2rem;
}

.content-section ul li {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-content {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    order: 2;
  }
  
  .content-main {
    order: 1;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nav-menu > li > a,
  .nav-menu > li > .dropbtn {
    padding: 0 12px;
    font-size: 0.85rem;
  }
}

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

  .logo span {
    font-size: 0.85rem;
  }
  
  .logo img {
    height: 36px;
    width: 36px;
  }

  .hamburger {
    display: flex;
  }

  .header-cta {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    left: 0;
    top: var(--header-height);
    flex-direction: column;
    background: var(--white);
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    text-align: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: none;
    padding: 0;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    gap: 0;
  }

  .nav-menu.active {
    transform: translateX(0);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu > li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu > li > a,
  .nav-menu > li > .dropbtn {
    padding: 16px 20px !important;
    font-size: 0.95rem !important;
    height: auto;
    width: 100%;
    justify-content: space-between;
  }

  .nav-menu > li > a::after {
    display: none;
  }
  
  .dropdown {
    width: 100%;
    flex-direction: column;
  }
  
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    min-width: unset;
    max-height: 300px;
    overflow-y: auto;
    background-color: #f8f9fa;
    border: none;
    border-radius: 0;
    margin-top: 0;
    transform: none;
    left: 0;
  }

  .dropdown-content::before {
    display: none;
  }

  .dropdown-content a {
    padding: 12px 20px 12px 36px;
    font-size: 0.88rem;
    border-left: none;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    padding-left: 40px;
    transform: none;
  }
  
  .dropdown:hover .dropdown-content {
    display: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
    animation: none;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero {
    height: 420px !important;
    min-height: 420px !important;
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .services-grid,
  .feature-grid,
  .why-grid,
  .info-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-hero h1 {
    font-size: 1.6rem;
  }
  
  .content-section h2 {
    font-size: 1.6rem;
  }
  
  .content-section h3 {
    font-size: 1.3rem;
  }
  
  table {
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col h3::after,
  .footer-col h4::after {
    left: 0;
  }

  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-top {
    padding: 24px 0;
  }

  .footer-top-item {
    padding: 0;
  }
}

/* Floating Contact Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  font-size: 28px;
  animation: pulse 2s infinite;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.phone-btn {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0,102,204,0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }
}

.whatsapp-btn:hover {
  animation: none;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.phone-btn:hover {
  animation: none;
  box-shadow: 0 6px 25px rgba(0, 102, 204, 0.6);
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}
  
/* District Cards - İlçe Kartları için özel stil */
.district-card {
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

a .district-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25) !important;
  border-color: var(--secondary-color) !important;
}

a:hover .district-card h4 {
  color: var(--primary-color) !important;
}
