/* Genel Stiller */
/* CSS Renk Değişkenleri */
:root {
  --primary: #FFD700; /* Altın sarı */
  --primary-dark: #F9C80E; /* Koyu sarı */
  --primary-light: #FFEB99; /* Açık sarı */
  --secondary: #1A237E; /* Lacivert */
  --secondary-light: #3949AB; /* Açık lacivert */
  --text-dark: #333333;
  --text-light: #f8f9fa;
  --background-light: #ffffff;
  --background-gray: #f5f7fa;
  --accent: #FFEB3B; /* Vurgu sarı */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 600%;
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  overflow: hidden;
}

/* Header Stili */
header {
  background-color: rgba(26, 35, 126, 0.95); /* var(--secondary) */
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(25, 25, 112, 0.98); /* Daha koyu lacivert */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary); /* Sarı */
  font-weight: 300;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Hero Bölümü */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1200x800/?cleaning') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 126, 0.3); /* Lacivert overlay */
  z-index: 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--secondary);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
}

/* Hakkımızda Bölümü */
.section {
  padding: 100px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: var(--primary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding-right: 50px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--secondary); /* Sarı */
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
}

.about-text .stats {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-item {
  margin-right: 40px;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary); /* Sarı */
  display: block;
}

.stat-text {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Hizmetlerimiz Bölümü */
.services {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(26, 35, 126, 0.05);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.services::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(26, 35, 126, 0.05);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.service-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(26, 35, 126, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--secondary);
  transform: rotateY(360deg);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 1.5rem;
}

.service-card p {
  color: #666;
}

/* Fiyatlarımız Bölümü */
.pricing {
  background-color: #fff;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 15px 0;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-header p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.pricing-features {
  padding: 30px;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  display: flex;
  align-items: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  margin-right: 10px;
  font-weight: bold;
}

.pricing-features li.not-included {
  color: #999;
  text-decoration: line-through;
}

.pricing-features li.not-included::before {
  content: '✕';
  color: #999;
}

.pricing-footer {
  padding: 20px 30px 30px;
  text-align: center;
}

.pricing-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  width: 100%;
}

.pricing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.popular-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ff6b6b;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.video-controls button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.video-controls button:hover {
  background-color: rgba(0, 119, 182, 0.8);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  width: 100%;
}

.feature-item {
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--primary);
  color: var(--secondary);
  transform: rotateY(360deg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(26, 35, 126, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-item h3 {
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 1.5rem;
}

.feature-item p {
  color: #666;
}

/* Yorumlar Bölümü */
.testimonials {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.testimonials .section-title h2 {
  color: white;
}

.testimonials .section-title h2::after {
  background-color: white;
}

.testimonials .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-slider {
  position: relative;
  z-index: 2;
  width: 100%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 10px;
  position: relative;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  width: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* İletişim Bölümü */
.contact {
  background-color: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  width: 100%;
}

.contact-info, .contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.contact-info h3, .contact-form h3 {
  margin-bottom: 25px;
  color: var(--secondary);
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

.contact-info h3::after, .contact-form h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(26, 35, 126, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  color: #333;
  margin-bottom: 5px;
}

.contact-info-text p {
  color: #666;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s;
}

/* Form için ek stiller */
.required {
  color: #dc3545;
  margin-left: 2px;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 200, 14, 0.2);
}

select.form-control {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6" fill="none" viewBox="0 0 12 6"><path fill="%23333" d="M6 6 0 0h12L6 6Z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--secondary);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.contact-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-button.success {
  background-color: #28a745;
}

.contact-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form mesaj stili */
.form-message {
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  animation: fadeIn 0.5s ease;
}

.form-message.success {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.form-message i {
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 2px;
}

.form-message p {
  margin: 0;
  padding: 0;
  flex: 1;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Footer Bölümü */
footer {
  background-color: var(--secondary);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo a {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo span {
  color: var(--primary);
  font-weight: 300;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-links a i {
  margin-right: 10px;
  color: var(--primary);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: top;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
}

.newsletter-btn {
  background-color: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  border: none;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  background-color: var(--primary-dark);
}

.social-links {
  display: flex;
  list-style: none;
  margin: 20px 0;
}

.social-links li {
  margin-right: 15px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Animasyonlar */
@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0) translateX(-50%);
  }
  40% {
      transform: translateY(-20px) translateX(-50%);
  }
  60% {
      transform: translateY(-10px) translateX(-50%);
  }
}

/* Hizmet Verdiğimiz Bölgeler Stili */
.service-areas {
  background-color: #f1f8fc;
  position: relative;
  overflow: hidden;
}

.service-areas::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(0, 119, 182, 0.05);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  z-index: 0;
}

/* İçerik yerleşimi için gelişmiş düzen */
.service-areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  width: 100%;
}

/* Harita container özellikleri */
.map-container {
  flex: 1;
  min-width: auto;
  max-width: 800px;
  min-height: 600px;
  max-height: 800px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}

.area-map {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* Harita pinleri için stiller */
.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin .pin-icon {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

.map-pin .pin-name {
  background-color: white;
  color: var(--secondary);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.map-pin:hover .pin-name {
  opacity: 1;
  transform: translateY(0);
}

/* Pin pozisyonları - Harita görseline göre ayarlanmalı */
.atakum {
  top: 40%;
  left: 30%;
}

.ilkadim {
  top: 50%;
  left: 45%;
}

.canik {
  top: 60%;
  left: 55%;
}

.tekkekoy {
  top: 55%;
  left: 70%;
}

/* Daha büyük kart içindeki alt öğeler için düzen */
.areas-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

/* İlçe kartı için daha kompakt tasarım */
.area-card {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-card.primary {
  border-left: 5px solid var(--primary);
}

.area-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(26, 35, 126, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.area-card h3 {
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 1.3rem;
}

.area-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-card ul li {
  padding: 5px 0;
  color: #555;
  display: flex;
  align-items: center;
}

.area-card ul li i {
  color: var(--primary);
  margin-right: 10px;
}

.service-areas-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: rgba(0, 119, 182, 0.05);
  border-radius: 10px;
}

.service-areas-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(249, 200, 14, 0.7);
  }
  
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(249, 200, 14, 0);
  }
  
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(249, 200, 14, 0);
  }
}

/* Slider Navigasyon Okları Genel Stili */
.slide-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slide-nav-btn:hover {
  background-color: rgba(0, 119, 182, 0.8);
}

.slide-nav-btn.prev {
  left: 20px;
}

.slide-nav-btn.next {
  right: 20px;
}

/* Hero Slider Navigasyon Okları */
.slider-navigation .slide-nav-btn {
  opacity: 0.7;
}

.slider-navigation .slide-nav-btn:hover {
  opacity: 1;
}

/* Testimonial Slider Navigasyon Okları */
.testimonial-navigation .slide-nav-btn {
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.testimonial-navigation .slide-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

/* WhatsApp Chat ve Buton Stilleri */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* WhatsApp Buton Stili */
.whatsapp-float {
  position: relative;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.whatsapp-btn i {
  font-size: 2rem;
}

.whatsapp-btn:hover {
  background-color: #1fbd59;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip {
  position: absolute;
  top: -45px;
  right: 0;
  background-color: #333;
  color: white;
  font-size: 0.85rem;
  padding: 7px 15px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 25px;
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

/* Chat Baloncuğu Stili */
.whatsapp-chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  flex-direction: column;
  transform-origin: bottom right;
  animation: scaleUp 0.3s ease forwards;
}

@keyframes scaleUp {
  0% {
      opacity: 0;
      transform: scale(0.5);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

.chat-header {
  display: flex;
  align-items: center;
  background-color: #075E54;
  padding: 15px;
  color: white;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  overflow: hidden;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-info {
  flex: 1;
}

.chat-info h4 {
  margin: 0;
  font-size: 1rem;
}

.chat-info p {
  margin: 3px 0 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

.online-status {
  color: #25D366;
}

.chat-close {
  cursor: pointer;
  padding: 5px;
}

.chat-body {
  padding: 15px 10px !important; /* İçeriğe biraz daha fazla alan açmak için */
  background-color: #DCF8C6;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAACXBIWXMAAAsTAAALEwEAmpwYAAAC7mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBQkJCOEU5MjczNTYxMUU5ODBBMkJEMkMxRTgyOTJBQyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBQkJCOEU5MzczNTYxMUU5ODBBMkJEMkMxRTgyOTJBQyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFCQkI4RTkwNzM1NjExRTk4MEEyQkQyQzFFODI5MkFDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkFCQkI4RTkxNzM1NjExRTk4MEEyQkQyQzFFODI5MkFDIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Qx7RzQAABp9JREFUeNrtnUuv3EQQhW93PYZhWKAI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');
  min-height: 150px;
  max-height: 300px;
  overflow-y: auto;
}

.chat-message {
  background-color: white;
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 95% !important; /* Mesaj içeriğinin genişliği */
}

.chat-message p {
  margin: 0;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}

.message-time {
  display: block;
  font-size: 0.7rem;
  color: #999;
  margin-top: 5px;
  text-align: right;
}

.chat-footer {
  padding: 10px 15px;
  background-color: #f0f0f0;
  border-top: 1px solid #ddd;
}

.chat-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
}

.chat-send-btn:hover {
  background-color: #1fbd59;
}

.chat-send-btn i {
  margin-left: 8px;
  font-size: 1.2rem;
}

/* Chat Animasyonu */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}

.bounce {
  animation: bounce 1s ease infinite;
}

/* Bülten abonelik mesaj stili */
.newsletter-message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  animation: fadeIn 0.5s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}

.newsletter-message.success {
  background-color: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #ddf3e4;
}

.newsletter-message.error {
  background-color: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #f8d7da;
}

.newsletter-message i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Newsletter form loading */
.newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* Scroll to Top Butonu Düzeltme */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 100px; /* WhatsApp butonunun sağında olması için değiştirildi */
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99; /* WhatsApp butonunun z-index'i genellikle daha yüksek (1000) */
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Sayfa Geçiş Animasyonları */

/* Bölüm Görünürlük Animasyonları */
section {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Kademeli Animasyon Sınıfları */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Zaman Gecikmeli Animasyonlar */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* Card Hover Efektleri */
.hover-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hover-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hover-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Sayfa Geçiş Efekti */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.page-transition.active {
  transform: translateY(0);
}

/* Portfolio ve Servis Kartları Animasyonu */
.portfolio-item, .service-card {
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  opacity: 0;
  transform: translateY(30px);
}

.portfolio-item.animate, .service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Hızlı Geçişler İçin Sınıflar */
.transition-fast {
  transition-duration: 0.3s !important;
}

.transition-medium {
  transition-duration: 0.5s !important;
}

.transition-slow {
  transition-duration: 0.8s !important;
}

/* Resim Zoom Efekti */
.img-zoom-container {
  overflow: hidden;
  border-radius: 10px;
}

.img-zoom {
  transition: transform 0.5s ease;
}

.img-zoom:hover {
  transform: scale(1.05);
}

/* Video Portföy Bölümü Stilleri */
.portfolio {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(26, 35, 126, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

/* Filtreleme Butonları */
.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.filter-btn {
  background-color: white;
  border: 1px solid #e9ecef;
  color: var(--secondary);
  padding: 8px 20px;
  margin: 0 5px 10px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
  box-shadow: 0 3px 10px rgba(249, 200, 14, 0.3);
}

/* Portföy Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

/* Portföy Öğeleri */
.portfolio-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-video-container {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.portfolio-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
  pointer-events: auto;
}

.play-btn {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 6;
  pointer-events: auto;
}

.play-btn:hover {
  transform: scale(1.1);
  background-color: white;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 1.3rem;
}

.portfolio-info p {
  color: #666;
  margin-bottom: 0;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  position: relative;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 1000px;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

#modalVideo {
  width: 100%;
  display: block;
  border-radius: 5px;
  max-width: 100%;
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
  .hero-content h1 {
      font-size: 3rem;
  }
  
  .about-text {
      padding-right: 0;
      margin-bottom: 40px;
  }
  
  .about-content {
      flex-direction: column;
  }
  
  .service-areas-content {
      grid-template-columns: 1fr;
  }
  
  .area-card ul {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .map-container {
      min-width: auto;
      width: 100%;
      max-width: 100%;
      margin-bottom: 30px;
      min-height: 350px;
  }
}

@media (max-width: 768px) {
  .hamburger {
      display: block;
      position: relative;
      z-index: 1001;
  }
  
  .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: rgba(26, 35, 126, 0.95);
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      z-index: 1000;
      transform: translateY(-150%);
      transition: transform 0.4s ease-out;
  }
  
  .nav-links.active {
      transform: translateY(0);
  }
  
  .nav-links li {
      margin: 15px 0;
      width: 100%;
      text-align: center;
  }
  
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .section {
      padding: 70px 0;
  }
  
  .about-text h3 {
      font-size: 1.8rem;
  }
  
  .area-card ul {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
      grid-template-columns: 1fr;
  }
  
  .play-btn {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
  }
  
  .slide-nav-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
  }
  
  .slide-nav-btn.prev {
      left: 10px;
  }
  
  .slide-nav-btn.next {
      right: 10px;
  }
  
  .testimonial-navigation .slide-nav-btn {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
  }
  
  .newsletter-form {
      flex-direction: column;
  }
  
  .newsletter-input {
      border-radius: 5px;
      margin-bottom: 10px;
  }
  
  .newsletter-btn {
      border-radius: 5px;
      padding: 10px;
  }
  
  .whatsapp-container {
      bottom: 20px;
      right: 20px;
  }
  
  .whatsapp-btn {
      width: 50px;
      height: 50px;
  }
  
  .whatsapp-btn i {
      font-size: 1.7rem;
  }
  
  .whatsapp-chat-box {
      width: 280px;
      bottom: 70px;
  }
  
  .scroll-top {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 80px;
      font-size: 1rem;
  }
  
  /* Servis kartları düzeltmeleri */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px 15px;
  }
  
  /* Filter butonları düzeltmesi */
  .filter-btn {
    padding: 6px 12px;
    margin: 0 3px 6px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
      font-size: 2rem;
  }
  
  .hero-content p {
      font-size: 1rem;
  }
  
  .section-title h2 {
      font-size: 2rem;
  }
  
  .service-card, .contact-info, .contact-form {
      padding: 30px 20px;
  }
  
  .area-card ul {
      grid-template-columns: 1fr;
  }
  
  .filter-btn {
      padding: 6px 15px;
      margin: 0 3px 8px;
      font-size: 0.9rem;
  }
  
  .portfolio-grid {
      grid-template-columns: 1fr;
  }
  
  .modal-content {
      width: 95%;
      margin: 10% auto;
  }
  
  .contact-info, .contact-form {
      padding: 25px 15px;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
  }
  
  .social-links {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .portfolio-item {
    margin-left: 0;
    margin-right: 0;
  }
  
  .play-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .about-text h3 {
    font-size: 1.6rem;
  }
  
  .whatsapp-container {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-btn {
    width: 45px;
    height: 45px;
  }
  
  .whatsapp-btn i {
    font-size: 1.5rem;
  }
  
  .whatsapp-chat-box {
    width: 300px !important; /* Daha kesin uygulanması için !important eklendi */
    max-width: 90vw !important; /* Ekran genişliğinin %90'ı */
    min-width: 280px !important;
  }
  
  .scroll-top {
    right: 70px;
    bottom: 15px;
  }
  
  .map-container {
    min-height: 300px;
  }
  
  .contact-info, .contact-form {
    padding: 20px 15px;
  }
}
