@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color1: #0a8d58;
  --primary-color2: #1e3d50;
  --secondary-color: #f8fafc;
  --text-color: #1e293b;
  --border-color: #e2e8f0;
  --font-family: "Poppins", sans-serif;
}

* {
  font-family: var(--font-family);
}

input.error,
textarea.error,
select.error {
  border: 1px solid red !important;
}

/* Animasyon efektleri */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Alert Mesajları */
.alert {
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 30px;
  border: none;
}

.alert-success {
  background: #dcfce7;
  color: #166534;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
}

/* Header Styles */
.main-header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-area img {
  max-height: 51px;
}

.nav-area .main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.main-menu li a {
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s;
}

.main-menu li a:hover {
  color: var(--primary-color1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.phone-link i {
  color: var(--primary-color1);
}

.mobile-menu-btn {
  width: 24px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: none;
}

.mobile-menu-btn .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  transition: all 0.3s ease;
}

.mobile-menu-btn .line-1 {
  top: 0;
}
.mobile-menu-btn .line-2 {
  top: 50%;
  transform: translateY(-50%);
}
.mobile-menu-btn .line-3 {
  bottom: 0;
}

/* Mobil Menü Açık Durumu */
.nav-open .mobile-menu-btn .line-1 {
  transform: translateY(9px) rotate(45deg);
}

.nav-open .mobile-menu-btn .line-2 {
  opacity: 0;
}

.nav-open .mobile-menu-btn .line-3 {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobil Nav Wrapper */
.mobile-nav-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-nav-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-logo img {
  max-height: 40px;
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav ul li {
  padding: 0 20px;
}

.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: color 0.3s ease;
}

.mobile-nav ul li:last-child a {
  border-bottom: none;
}

.mobile-nav ul li a:hover {
  color: var(--primary-color1);
}

.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.mobile-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.mobile-contact-btn i {
  color: var(--primary-color1);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.nav-open .mobile-nav-overlay {
  opacity: 1;
  visibility: visible;
}



/* Body Scroll Lock */
body.nav-open {
  overflow: hidden;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color1),
    var(--primary-color2)
  );
  padding: 40px 0;
  color: white;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.1;
}

.contact-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
}

.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

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

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: var(--primary-color1);
}

.contact-card:hover .contact-icon i {
  color: white;
}

.contact-icon i {
  font-size: 24px;
  color: var(--primary-color1);
  transition: all 0.3s ease;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-color);
  font-weight: 600;
}

.contact-card p,
.contact-card a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  margin: 0;
}

.contact-card a:hover {
  color: var(--primary-color1);
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.contact-form-container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  border: 1px solid var(--border-color);
}

.contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-color);
  font-weight: 600;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--secondary-color);
}

.form-control:focus {
  border-color: var(--primary-color1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 141, 88, 0.1);
  background: white;
}

.form-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary-color);
  padding: 0 5px;
  color: #64748b;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 0.95rem;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  top: 0;
  font-size: 0.85rem;
  color: var(--primary-color1);
  background: white;
}

.submit-btn {
  background: var(--primary-color1);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  background: var(--primary-color2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 141, 88, 0.2);
}

.map-container {
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

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

@media (max-width: 991px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
  }

  .map-container {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 30px 0;
  }

  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-form-container h2 {
    font-size: 1.5rem;
  }
}

/* Footer Styles */
.footer {
  background: var(--primary-color2);
  color: white;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color1),
    var(--primary-color2)
  );
}

.footer-top {
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  max-height: 50px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color1);
  transform: translateY(-3px);
}

.footer-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color1);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

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

.footer-links a i {
  font-size: 0.8rem;
  color: var(--primary-color1);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color1);
  flex-shrink: 0;
}

.footer-contact-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-contact-info a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--primary-color1);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 60px;
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.footer-copyright a {
  color: var(--primary-color1);
  text-decoration: none;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

@media (max-width: 991px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer-top {
    margin-bottom: 40px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

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

  .footer-title {
    margin-top: 30px;
  }
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color1) 0%,
    var(--primary-color2) 100%
  );
  padding: 80px 0;
  color: #fff;
  margin-bottom: 60px;
}

.about-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-subtitle {
  font-size: 20px;
  opacity: 0.9;
}

.about-section {
  padding: 80px 0;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image .main-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color1);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .number {
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 14px;
  opacity: 0.9;
}

.about-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color1);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-color);
}

.feature-content p {
  color: var(--text-color);
  margin: 0;
}

.stats-section {
  background: #f8f9fa;
  padding: 80px 0;
  margin: 60px 0;
}

.stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.stat-title {
  color: var(--text-color);
  font-size: 18px;
}

@media (max-width: 991px) {
  .about-title {
    font-size: 36px;
  }

  .about-subtitle {
    font-size: 18px;
  }

  .about-image {
    margin-bottom: 40px;
  }

  .stat-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 60px 0;
  }

  .about-title {
    font-size: 32px;
  }

  .about-section {
    padding: 60px 0;
  }
}

.content-text h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.content-text p {
  font-size: 15px;
}

/* Blog Listeleme Kartları */
.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(30, 61, 80, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f1f5f9;
}

.blog-card:hover {
  box-shadow: 0 8px 32px 0 rgba(10, 141, 88, 0.13);
  transform: translateY(-4px) scale(1.02);
  border-color: var(--primary-color1);
}

.blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--primary-color1);
  color: #fff;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(10, 141, 88, 0.08);
  font-weight: 500;
}

.blog-content {
  padding: 28px 22px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title-s {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color1);
  line-height: 1.25;
}

.blog-title-s a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-title-s a:hover {
  color: var(--primary-color2);
}

.blog-desc {
  color: #444;
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.blog-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
}

.read-more {
  color: #fff;
  background: var(--primary-color1);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(10, 141, 88, 0.08);
}

.blog-area {
  margin: 38px 0px;
}

.read-more:hover {
  background: var(--primary-color2);
  color: var(--primary-color1);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .blog-img img {
    height: 180px;
  }
  .blog-content {
    padding: 18px 12px 16px 12px;
  }
  .blog-title-s {
    font-size: 0.98rem;
  }
  .blog-desc {
    font-size: 0.89rem;
  }
  .read-more {
    font-size: 0.89rem;
    padding: 7px 12px;
  }
}

@media (max-width: 767px) {
  .blog-img img {
    height: 140px;
  }
  .blog-card {
    border-radius: 12px;
  }
  .blog-content {
    padding: 12px 8px 10px 8px;
  }
  .blog-title-s {
    font-size: 0.93rem;
  }
  .blog-desc {
    font-size: 0.85rem;
  }
  .read-more {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}

/* Blog Detay Sayfası */
.blog-detail-page {
  margin: 38px 0 48px 0;
}

.blog-header {
  margin-bottom: 32px;
  text-align: center;
}

.blog-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-color1);
  margin-bottom: 10px;
  line-height: 1.25;
}

.blog-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(30, 61, 80, 0.08);
  padding: 38px 38px 32px 38px;
  margin-bottom: 24px;
}

.featured-image {
  margin-bottom: 28px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(30, 61, 80, 0.07);
  position: relative;
}

.featured-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
  /* object-fit: cover; */
  /* max-height: 380px; */
}

.blog-date-detail {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--primary-color1);
  color: #fff;
  font-size: 14px;
  padding: 7px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(10, 141, 88, 0.08);
  font-weight: 500;
  z-index: 2;
}

.blog-text {
  font-size: 1.07rem;
  color: #222;
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin-top: 10px;
}

.blog-text h1,
.blog-text h2,
.blog-text h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--primary-color1);
  margin-top: 32px;
  margin-bottom: 16px;
  padding: 13px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  border-left: 4px solid var(--primary-color1);
  padding-left: 12px;
  background: linear-gradient(90deg, #f8fafc 80%, transparent);
  border-radius: 6px;
}

.blog-text h1 {
  font-size: 1.5rem;
}
.blog-text h2 {
  font-size: 1.2rem;
}
.blog-text h3 {
  font-size: 1.05rem;
}

.blog-text p {
  margin-bottom: 18px;
  color: #444;
  font-size: 1.07rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .blog-content {
    padding: 18px 10px 16px 10px;
  }
  .featured-image img {
    max-height: 220px;
  }
  .blog-title {
    font-size: 1.18rem;
  }
}

@media (max-width: 767px) {
  .blog-content {
    padding: 10px 2px 10px 2px;
  }
  .featured-image img {
    max-height: 140px;
  }
  .blog-title {
    font-size: 1.05rem;
  }
  .blog-text h1 {
    font-size: 1.1rem;
  }
  .blog-text h2 {
    font-size: 1rem;
  }
  .blog-text h3 {
    font-size: 0.95rem;
  }
  .blog-text {
    font-size: 0.97rem;
  }
}

.hero-slider-bg {
  position: relative;

  min-height: 480px;
  height: 60vh;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-bg .swiper {
  width: 100vw;
  height: 100%;
}

.hero-slider-bg .swiper-slide {
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.7s;
}

.hero-slider-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.hero-content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  pointer-events: auto;
}

.hero-title {
  font-size: 27px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 26px;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 24px rgba(30, 61, 80, 0.13);
}

.hero-form-box {
  width: 100%;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(30, 61, 80, 0.13);
  padding: 38px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-form-inline {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-form-inline .form-group {
  width: 100%;
  margin-bottom: 0 !important;
  position: relative;
}

.hero-form-inline select.form-select {
    width: 100%;
    font-size: 16px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    padding: 16px 20px 16px 48px;
    background: #f8fafc;
    font-weight: 400;
    color: #222;
    transition: all 0.2s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.hero-form-inline select.form-select:focus {
  border: 1.5px solid var(--primary-color1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 141, 88, 0.15);
}

.hero-form-inline .form-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--primary-color1);
  pointer-events: none;
}

.hero-form-inline .btn-evaluate {
  background: linear-gradient(
    90deg,
    var(--primary-color1) 0%,
    var(--primary-color2) 100%
  );
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px 0;
  font-size: 1.2rem;
  font-weight: 700;
  width: 100%;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(10, 141, 88, 0.2);
  transition: all 0.2s;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-form-inline .btn-evaluate:hover {
  background: linear-gradient(
    90deg,
    var(--primary-color2) 0%,
    var(--primary-color1) 100%
  );
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 141, 88, 0.25);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(30, 61, 80, 0.55);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 16px rgba(30, 61, 80, 0.18);
  z-index: 10;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s, border 0.2s, color 0.2s;
  opacity: 0.92;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-prev:focus {
  background: #fff;
  color: #ffb347;
  border: 2px solid #ffb347;
  opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 2.1rem;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color1);
  opacity: 1;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 1.7rem;
    margin-bottom: 22px;
  }

  .hero-form-box {
    padding: 24px 20px 20px 20px;
    max-width: 98vw;
  }

  .hero-form-inline select.form-select {
    font-size: 1.1rem;
    padding: 14px 18px 14px 44px;
  }

  .hero-form-inline .form-group i {
    font-size: 1.1rem;
    left: 16px;
  }

  .hero-form-inline .btn-evaluate {
    padding: 16px 0;
    font-size: 1.15rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 38px;
    height: 38px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .hero-slider-bg,
  .hero-slider-bg .swiper,
  .hero-slider-bg .swiper-slide {
    min-height: 320px;
    height: 320px;
  }

  .hero-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .hero-form-box {
    padding: 16px 12px 12px 12px;
  }

  .hero-form-inline {
    gap: 14px;
  }

  .hero-form-inline select.form-select {
    font-size: 1rem;
    padding: 12px 16px 12px 40px;
  }

  .hero-form-inline .form-group i {
    font-size: 1rem;
    left: 14px;
  }

  .hero-form-inline .btn-evaluate {
    padding: 14px 0;
    font-size: 1.1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 28px;
    height: 28px;
    right: 8px;
    left: 8px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 0.9rem;
  }
}

.digital-appraisal-section {
  padding: 60px 0;
  background-color: #f1f5f9;
}

.digital-appraisal-header {
  text-align: center;
  margin-bottom: 50px;
}

.digital-appraisal-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color2);
  margin-bottom: 15px;
}

.digital-appraisal-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.appraisal-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 rgba(30, 61, 80, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f1f5f9;
}

.appraisal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px 0 rgba(10, 141, 88, 0.13);
  border-color: var(--primary-color1);
}

.appraisal-card .card-content {
  padding: 25px;
  text-align: center;
}

.appraisal-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.appraisal-card img 
{
    object-fit: cover;
    width: 217px;
}
.appraisal-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.appraisal-card
{
  text-align: center;
}

.card-content .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #0a8d58;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 12px;
  box-shadow: 0 2px 8px rgba(10, 141, 88, 0.2);
}

.features-section {
  background: #f8fafc;
    padding: 115px 0;
  text-align: center;
}
.features-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1e293b;
}
.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(30, 61, 80, 0.10);
  padding: 38px 28px 32px 28px;
     max-width: 304px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(30, 61, 80, 0.16);
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 2.5rem;
  color: #1e3d50; /* Ana renk veya koyu gri */
  background: none;
  margin-bottom: 18px;
}
.feature-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e293b;
}
.feature-card p {
  color: #64748b;
    font-size: 14px;
  margin: 0;
}
@media (max-width: 991px) {
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .feature-card {
    max-width: 100%;
  }
}

.custom-blog-header {
  margin-bottom: 32px;
  text-align: center;
}

.custom-blog-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}

.blog-icon {
  font-size: 1.6rem;
  color: #0a8d58;
}

.custom-blog-desc {
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 32px;
  text-align: center;
}


.custom-blog-section
{
    margin: 55px 0px;
}
/* Responsive */
@media (max-width: 991px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-menu {
    display: none !important;
  }

  .custom-blog-title
  {
    font-size: 21px;
  }

  .custom-blog-desc
  {
        font-size: 15px;
  }
}