:root {
  --bg-color: #0f172a;
  --surface-color: #1e293b;
  --primary-color: #3b82f6;
  --primary-hover: #2563eb;
  --text-color: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --font-main: 'Outfit', sans-serif;
  --container-width: 1200px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--border-color);
  color: var(--text-color);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(45deg, var(--primary-color), #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.logo span {
  color: var(--primary-color);
}

.nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-list a:not(.btn) {
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-list a:not(.btn):hover {
  color: var(--text-color);
}

/* Mobil Menü Butonu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBİL MENÜ SİSTEMİ ===== */
/* Menü açıkken body scroll engelleme */
body.menu-open {
  overflow: hidden;
}

/* Mobil menü overlay (karartma) */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobil menü responsive stilleri */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--surface-color);
    z-index: 999;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .nav.nav-open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-list li:last-child {
    border-bottom: none;
    margin-top: 20px;
  }

  .nav-list a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: color 0.3s ease;
  }

  .nav-list a:hover {
    color: var(--primary-color);
  }

  .nav-list a.btn {
    text-align: center;
    margin: 0;
    padding: 15px 20px;
  }
}

/* Hero */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Services */
.services {
  padding: 100px 0;
}

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

.card {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card {
  text-align: center;
  /* Center content */
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  /* Allow transform to work better */
}

.service-card .icon i {
  font-size: 3rem;
}

.service-card:hover .icon {
  transform: scale(1.3);
  /* Make it bigger */
}

/* QR code icons need to be slightly larger to match visual size */
.service-card .icon i.la-qrcode {
  font-size: 3.5rem;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  transition: var(--transition);
}

.service-card:hover h3 {
  color: var(--primary-color);
}

.service-card p {
  color: var(--text-muted);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  background-color: #1e293b;
  /* Ensure bg stays consistent or changes if needed */
}

/* Portfolio */
.portfolio {
  padding: 100px 0;
}

.project-card {
  padding: 0;
  overflow: hidden;
}

.project-image {
  height: 200px;
  background-color: #334155;
  position: relative;
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.project-info p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background-color: var(--surface-color);
  /* Match theme surface */
  background-image:
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 20%);
  position: relative;
  overflow: hidden;
}

/* Decorative shapes */
.testimonials::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  /* Primary color hint */
  border-radius: 50%;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: 50px;
  right: 100px;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid rgba(59, 130, 246, 0.05);
  transform: rotate(30deg);
}

.testimonials-wrapper {
  overflow: hidden;
  padding: 20px 0 40px 0;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.testimonial-card {
  width: 350px;
  flex-shrink: 0;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.testimonial-card.featured {
  background-color: var(--primary-color);
  border: none;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.testimonial-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.quote-icon {
  font-size: 4rem;
  line-height: 1;
  font-family: serif;
  color: var(--primary-color);
  opacity: 0.5;
}

.testimonial-card.featured .quote-icon {
  color: rgba(255, 255, 255, 0.6);
}

.quote {
  font-style: normal;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-card.featured .quote {
  color: white;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #334155;
  background-image: url('https://api.dicebear.com/7.x/avataaars/svg?seed=Felix');
  background-size: cover;
  border: 2px solid var(--border-color);
}

.testimonial-card.featured .avatar {
  border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-card:nth-child(2) .avatar {
  background-image: url('https://api.dicebear.com/7.x/avataaars/svg?seed=Aneka');
}

.testimonial-card:nth-child(3) .avatar {
  background-image: url('https://api.dicebear.com/7.x/avataaars/svg?seed=Bob');
}

.testimonial-card:nth-child(4) .avatar {
  background-image: url('https://api.dicebear.com/7.x/avataaars/svg?seed=Willow');
}

.client-details h4 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.testimonial-card.featured .client-details h4 {
  color: white;
}

.client-details span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-card.featured .client-details span {
  color: rgba(255, 255, 255, 0.8);
}

/* Contact */
.contact {
  padding: 100px 0;
  text-align: center;
}

.contact-content {
  max-width: 600px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  padding: 80px 0 30px;
  border-top: none;
  background-color: #0f172a;
  /* Deep blue base */
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)),
    url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg');
  /* World map pattern */
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Contact Info */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Social Links (Updated) */
.d-flex {
  display: flex;
  gap: 10px;
}

.pt-2 {
  padding-top: 0.5rem;
}

.btn-social {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.btn-social:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Quick Links */
.quick-links ul li {
  margin-bottom: 12px;
}

.quick-links ul li a {
  transition: var(--transition);
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.quick-links ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.newsletter {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.newsletter::before {
  display: none;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.newsletter-form {
  position: relative;
  margin-top: 20px;
  max-width: 400px;
}

.newsletter-form input {
  width: 100%;
  padding: 15px 60px 15px 25px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 1rem;
  background: white;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form input:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 45px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: scale(1.1);
  background-color: #2563eb;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 6px #666;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, var(--primary-color), #8b5cf6);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 400;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 5px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 14px 24px;
  font-size: 1rem;
}

.custom-project {
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .mobile-menu-toggle {
    display: flex !important;
    color: var(--text-color);
    z-index: 9999 !important;
    background: rgba(255, 255, 255, 0.05);
    /* Slight background to verify hit area */
    border-radius: 4px;
  }

  .header-content {
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-color);
    border-left: 1px solid var(--border-color);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px 30px 30px;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav.nav-open {
    right: 0;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-list li:last-child {
    border-bottom: none;
    margin-top: 20px;
  }

  .nav-list a {
    display: block;
    padding: 18px 0;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: var(--transition);
    width: 100%;
  }

  .nav-list a:not(.btn):hover {
    color: var(--primary-color);
    padding-left: 10px;
  }

  .nav-list a.btn {
    text-align: center;
    width: 100%;
    padding: 14px 24px;
  }

  /* Menü açıkken body scroll'unu engelle */
  body.menu-open {
    overflow: hidden;
  }

  /* Menü arka plan overlay */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

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

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--text-color);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.contact-info-wrapper {
  width: 100%;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  position: relative;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-links .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.social-section {
  margin-top: 40px;
}

.whatsapp-section {
  margin-top: 30px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

/* Responsive Contact */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    width: 100%;
  }
}

/* Daha küçük mobil ekranlar için ek kurallar */
@media (max-width: 768px) {

  /* Hero Title Responsive */
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero {
    padding: 140px 0 60px;
  }

  /* Section Title */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  /* Services */
  .services {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  /* Portfolio */
  .portfolio {
    padding: 60px 0;
  }

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

  /* Testimonials */
  .testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    width: 280px;
    padding: 25px 20px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .contact-list li {
    justify-content: center;
  }

  .d-flex.pt-2 {
    justify-content: center;
  }

  .quick-links ul li a:hover {
    transform: none;
  }

  .newsletter-form {
    max-width: 100%;
    margin: 20px auto 0;
  }

  /* Contact Page Grid */
  .grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Social buttons */
  .social-section .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .social-section .btn {
    width: 100%;
    min-width: auto;
  }

  /* Map */
  .map-container {
    height: 250px;
  }

  /* About page - Misyon Vizyon */
  .grid[style*="minmax(400px"] {
    grid-template-columns: 1fr !important;
  }

  /* Pricing page - Ek Hizmetler */
  .grid[style*="minmax(280px"] {
    grid-template-columns: 1fr !important;
  }

  /* Hero Actions */
  .hero-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  /* Container padding */
  .container {
    padding: 0 15px;
  }

  /* Cards */
  .card {
    padding: 20px;
  }

  .card[style*="padding: 40px"] {
    padding: 25px !important;
  }

  .card[style*="padding: 30px"] {
    padding: 20px !important;
  }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

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

  .pricing-card {
    padding: 25px 20px;
  }

  .pricing-header h3 {
    font-size: 1.5rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .testimonial-card {
    width: 260px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 15px;
  }
}