/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background: white;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), /* Siyah overlay */
    url('https://onasilyapilir.com/uploads/images/202507/image_750x_68873d9e50af4.webp') center/cover no-repeat; /* Yeni resim */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-content h1::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #00b4d8;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.7;
}

@keyframes glow {
  from { text-shadow: 0 0 5px #fff, 0 0 10px #00b4d8; }
  to { text-shadow: 0 0 15px #fff, 0 0 30px #00b4d8, 0 0 40px #00b4d8; }
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: #e63946;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button:hover {
  transform: scale(1.08);
  background: #d90429;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
}

/* Sections */
section {
  padding: 5rem 2rem;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1d3557;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e63946;
  border-radius: 2px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: #e63946;
}

.service-card h3 {
  color: #1d3557;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 4rem;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #e63946;
}

.about-image {
  flex: 1;
  min-width: 300px;
  height: 300px;
  background: url('https://adanainsaat.com/wp-content/uploads/2024/03/1592602364-s1-alternatif-2-2000x1266-1-1024x648.jpg') center/cover no-repeat;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

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

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta-button:hover {
  background: #a81a3a;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Video Section */
.video-section {
  padding: 5rem 0;
  background: #f1f5f9;
}

.video-section .section-title {
  color: #1d3557;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid #e2e8f0;
}

.video-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.testimonials-section .section-title {
  color: #1d3557;
}

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

.testimonial-card {
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  border-left: 4px solid #e63946;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonial-card .stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: bold;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #2b2d42;
  line-height: 1.7;
}

.review-link {
  color: #457b9d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.review-link:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-section .section-title {
  color: #1d3557;
}

.faq-item {
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #f8fafc;
  border-radius: 8px;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d3557;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.faq-toggle::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 1rem 1rem;
  color: #4a5568;
  line-height: 1.7;
}

/* Contact */
.contact-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.contact-section .section-title {
  color: #1d3557;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.map-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border: 1px solid #e2e8f0;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-top: 1.5rem;
  color: #e63946;
  font-size: 1.2rem;
  position: relative;
}

.contact-info h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 3px;
  background: #e63946;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333;
}

.contact-info a {
  color: #1d3557;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: #e63946;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #0d1b2a;
  color: #ddd;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.testimonials-section .section-title {
  color: #1d3557;
}

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

.testimonial-card {
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-left: 4px solid #e63946;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonial-card .stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #2b2d42;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-link {
  color: #457b9d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
}

.review-link:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-section .section-title {
  color: #1d3557;
}

.faq-item {
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.faq-item h3 {
  font-size: 1.3rem;
  color: #1d3557;
  margin-bottom: 0.6rem;
}

.faq-item p {
  color: #4a5568;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: #0d1b2a;
  color: #ddd;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer .container {
  text-align: center;
}

.site-footer p {
  margin: 0.4rem 0;
}

.footer-contact {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer a {
  color: #4cc9f0;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.footer a {
  color: #4cc9f0;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .contact-content {
    flex-direction: column;
  }
  .video-wrapper iframe {
    height: 250px;
  }
  .faq-toggle {
    font-size: 1rem;
  }
}