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

:root {
  --primary-color1: #d31a1a;
  --primary-color2: #1e3d50;
  --secondary-color: #f8fafc;
  --text-color: #1e293b;
  --border-color: #e2e8f0;
  --font-family: "Inter", "Roboto", 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;
}

/* Modern Alert Mesajları */
.alert {
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  border: none;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alert-success {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #166534;
  border-left: 4px solid #22c55e;
}

.alert-danger {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.alert-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.alert-content h4 {
  margin: 0 0 5px 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.alert-content p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Harita Bölümü */
.map-section {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(211, 26, 26, 0.1);
  position: relative;
  overflow: hidden;
}

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

.map-header {
  text-align: center;
  margin-bottom: 30px;
}

.map-header h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-color);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.map-header p {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
}

.modern-map-container {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(211, 26, 26, 0.1);
  margin-bottom: 25px;
}

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

.map-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(211, 26, 26, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color1);
}

.map-info-item i {
  color: var(--primary-color1);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.map-info-item span {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Header Styles */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(211, 26, 26, 0.1);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color1), #b01515, var(--primary-color1));
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.logo-area {
  position: relative;
  transition: transform 0.3s ease;
}

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

.logo-area img {
  max-height: 51px;
  transition: filter 0.3s ease;
}

.logo-area:hover img {
  filter: drop-shadow(0 4px 8px rgba(211, 26, 26, 0.2));
}

.nav-area {
  display: flex;
  align-items: center;
  gap: 40px;
}

.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: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  position: relative;
  padding: 8px 0;
  display: block;
}

.main-menu li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color1), #b01515);
  transition: width 0.3s ease;
}

.main-menu li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(211, 26, 26, 0.05);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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



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

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.evaluate-btn {
    background: linear-gradient(135deg, var(--primary-color1), #b01515);
    color: #fff;
    text-decoration: none;
    padding: 11px 24px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 12px;
    display: flex
;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(211, 26, 26, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evaluate-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.evaluate-btn:hover::before {
  left: 100%;
}

.evaluate-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(211, 26, 26, 0.4);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.evaluate-btn:active {
  transform: translateY(0);
}

.evaluate-btn i {
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.evaluate-btn span {
  position: relative;
  z-index: 2;
}

.evaluate-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.evaluate-btn:hover::after {
  width: 300px;
  height: 300px;
}

.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;
  z-index: 100000;
}

.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: 99999;
  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-evaluate-btn {
  padding: 20px;
  margin-top: 20px;
}

.mobile-evaluate-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  color: #fff;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(211, 26, 26, 0.3);
}

.mobile-evaluate-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 26, 26, 0.4);
  color: #fff;
}

.mobile-evaluate-link i {
  font-size: 1.2rem;
}

.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: 99998;
}

.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) 0%,
    #b01515 50%,
    var(--primary-color2) 100%
  );
  padding: 60px 0;
  color: white;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
}

.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.8rem;
  margin-bottom: 15px;
  font-weight: 900;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin: 0 0 40px 0;
  position: relative;
  font-weight: 400;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-stat .stat-text {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Yeni İletişim Bölümü */
.contact-info-section {
  margin: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-color);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  margin: 0;
}

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

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(211, 26, 26, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(211, 26, 26, 0.05), transparent);
  transition: left 0.6s ease;
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(211, 26, 26, 0.15);
  border-color: var(--primary-color1);
}

.card-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.icon-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.contact-info-card:hover .icon-bg {
  opacity: 0.2;
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-content p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color1);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(211, 26, 26, 0.05);
  border: 2px solid transparent;
}

.contact-link:hover {
  color: #fff;
  background: var(--primary-color1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 26, 26, 0.3);
}

.contact-link i {
  font-size: 1.1rem;
}

.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: #fff;
  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);
}

/* Modern Form ve Harita Bölümü */
.contact-main-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 80px 0;
  align-items: start;
}

.contact-form-section {
  background: #fff;
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(211, 26, 26, 0.1);
  position: relative;
  overflow: hidden;
}

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

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-color);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.form-header p {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-wrapper {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
  font-family: var(--font-family);
}

.form-control:focus {
  border-color: var(--primary-color1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(211, 26, 26, 0.1);
  background: #fff;
}

.form-label {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: #f8fafc;
  padding: 0 8px;
  color: #64748b;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.form-control:focus + .form-label i,
.form-control:not(:placeholder-shown) + .form-label i {
  color: var(--primary-color1);
}

.form-label i {
  font-size: 1rem;
  color: #94a3b8;
  transition: color 0.3s ease;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
  padding-top: 18px;
}

.captcha-wrapper {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.modern-submit-btn {
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  color: #fff;
  border: none;
  padding: 18px 0;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.modern-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(211, 26, 26, 0.3);
}

.modern-submit-btn:active {
  transform: translateY(0);
}

.btn-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.modern-submit-btn:hover .btn-bg {
  left: 100%;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
}

.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;
  }

  .hero-stats {
    gap: 40px;
  }

  .hero-stat .stat-number {
    font-size: 1.5rem;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .contact-main-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-form-section {
    padding: 40px 30px;
  }

  .map-section {
    padding: 30px;
  }

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


  .hero-stats {
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }

  .hero-stat .stat-number {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .contact-info-card {
    padding: 30px 25px;
  }

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

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

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

  .map-section {
    padding: 25px 20px;
  }

  .modern-map-container {
    height: 300px;
  }

  .form-header h2 {
    font-size: 1.6rem;
  }

  .map-header h3 {
    font-size: 1.4rem;
  }
}

/* Modern Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color1), var(--primary-color2), var(--primary-color1));
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.footer-logo {
  margin-bottom: 30px;
  position: relative;
}

.footer-logo img {
  max-height: 60px;
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.footer-about {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 30px;
  position: relative;
}

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

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: var(--primary-color1);
  border-color: var(--primary-color1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(211, 26, 26, 0.3);
}

.social-link i {
  font-size: 1.1rem;
  z-index: 1;
  position: relative;
}

.footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color1), var(--primary-color2));
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 12px;
  position: relative;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  padding: 5px 0;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color1);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 10px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(8px);
}

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

.footer-links a:hover i {
  transform: scale(1.2);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(211, 26, 26, 0.3);
  transform: translateY(-2px);
}

.footer-contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color1), var(--primary-color2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(211, 26, 26, 0.3);
}

.footer-contact-icon i {
  font-size: 1.1rem;
}

.footer-contact-info {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-info a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

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

.footer-contact-info p {
  margin: 5px 0 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 26, 26, 0.5), transparent);
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-copyright a {
  color: var(--primary-color1);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(211, 26, 26, 0.5);
}

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

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

.footer-bottom-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color1);
  transition: width 0.3s ease;
}

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

.footer-bottom-links a:hover::after {
  width: 100%;
}

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

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

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

  .footer-bottom-links {
    justify-content: center;
  }
}

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

  .footer-title {
    margin-top: 30px;
    font-size: 1.1rem;
  }

  .footer-social {
    justify-content: center;
    margin-top: 25px;
  }

  .footer-contact-item {
    padding: 12px;
    margin-bottom: 20px;
  }

  .footer-contact-icon {
    width: 40px;
    height: 40px;
  }

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

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

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

  .footer-title {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-contact-item {
    padding: 10px;
    gap: 15px;
  }

  .footer-contact-icon {
    width: 35px;
    height: 35px;
  }

  .footer-contact-info {
    font-size: 0.85rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* Otober Features Section */
.otober-features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.otober-features-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.otober-features-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-color1), var(--primary-color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.otober-features-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 30px;
  font-weight: 500;
}

.otober-features-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color1), var(--primary-color2));
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.otober-features-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--primary-color1);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px var(--primary-color1);
}

.otober-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.otober-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.otober-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color1), var(--primary-color2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.otober-feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(211, 26, 26, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.4s ease;
  opacity: 0;
}

.otober-feature-card:hover::after {
  opacity: 1;
  top: -20%;
  right: -20%;
}

.otober-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(211, 26, 26, 0.15);
  border-color: rgba(211, 26, 26, 0.2);
}

.otober-feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.otober-feature-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color1), var(--primary-color2));
  border-radius: 20px;
  opacity: 0.1;
  transition: all 0.3s ease;
}

.otober-feature-card:hover .otober-feature-icon-bg {
  opacity: 0.2;
  transform: scale(1.1);
}

.otober-feature-icon {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color1), var(--primary-color2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(211, 26, 26, 0.3);
  transition: all 0.3s ease;
}

.otober-feature-card:hover .otober-feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(211, 26, 26, 0.4);
}

.otober-feature-icon i {
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.otober-feature-card:hover .otober-feature-icon i {
  transform: scale(1.1);
}

.otober-feature-content {
  margin-bottom: 20px;
}

.otober-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.otober-feature-card:hover .otober-feature-title {
  color: var(--primary-color1);
}

.otober-feature-description {
font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.otober-feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color1), var(--primary-color2));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(211, 26, 26, 0.3);
  transition: all 0.3s ease;
}

.otober-feature-card:hover .otober-feature-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(211, 26, 26, 0.4);
}

/* Otober Features Responsive */
@media (max-width: 1200px) {
  .otober-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .otober-features-section {
    padding: 80px 0;
  }

  .otober-features-main-title {
    font-size: 2.2rem;
  }

  .otober-features-subtitle {
    font-size: 1.1rem;
  }

  .otober-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .otober-feature-card {
    padding: 30px 25px;
  }

  .otober-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .otober-feature-icon i {
    font-size: 1.8rem;
  }

  .otober-feature-title {
    font-size: 1.3rem;
  }

  .otober-feature-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .otober-features-section {
    padding: 60px 0;
  }

  .otober-features-header {
    margin-bottom: 60px;
  }

  .otober-features-main-title {
    font-size: 1.8rem;
  }

  .otober-features-subtitle {
    font-size: 1rem;
  }

  .otober-feature-card {
    padding: 25px 20px;
  }

  .otober-feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .otober-feature-icon i {
    font-size: 1.5rem;
  }

  .otober-feature-title {
    font-size: 1.2rem;
  }

  .otober-feature-description {
    font-size: 0.9rem;
  }

  .otober-feature-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
}

/* Otober FAQ Section */
.otober-faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.otober-faq-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.otober-faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-color1), var(--primary-color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.otober-faq-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 30px;
  font-weight: 500;
}

.otober-faq-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color1), var(--primary-color2));
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.otober-faq-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--primary-color1);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px var(--primary-color1);
}

.otober-faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.otober-faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.otober-faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color1), var(--primary-color2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.otober-faq-item:hover::before {
  transform: scaleX(1);
}

.otober-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(211, 26, 26, 0.15);
  border-color: rgba(211, 26, 26, 0.2);
}

.otober-faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}

.otober-faq-question:hover {
  background: rgba(211, 26, 26, 0.02);
}

.otober-faq-question-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
  flex: 1;
  padding-right: 20px;
  line-height: 1.4;
}

.otober-faq-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color1), var(--primary-color2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.otober-faq-icon i {
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.otober-faq-item.active .otober-faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--primary-color2), var(--primary-color1));
}

.otober-faq-item.active .otober-faq-icon i {
  transform: rotate(45deg);
}

.otober-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(248, 250, 252, 0.5);
}

.otober-faq-item.active .otober-faq-answer {
  max-height: 500px;
}

.otober-faq-answer-content {
  padding: 0 30px 25px 30px;
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
}

.otober-faq-answer-content p {
  margin: 0 0 15px 0;
}

.otober-faq-answer-content p:last-child {
  margin-bottom: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .otober-faq-section {
    padding: 80px 0;
  }

  .otober-faq-title {
    font-size: 2.2rem;
  }

  .otober-faq-subtitle {
    font-size: 1.1rem;
  }

  .otober-faq-grid {
    gap: 15px;
  }

  .otober-faq-question {
    padding: 20px 25px;
  }

  .otober-faq-question-title {
    font-size: 1.1rem;
    padding-right: 15px;
  }

  .otober-faq-icon {
    width: 35px;
    height: 35px;
  }

  .otober-faq-icon i {
    font-size: 0.9rem;
  }

  .otober-faq-answer-content {
    padding: 0 25px 20px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .otober-faq-section {
    padding: 60px 0;
  }

  .otober-faq-header {
    margin-bottom: 60px;
  }

  .otober-faq-title {
    font-size: 1.8rem;
  }

  .otober-faq-subtitle {
    font-size: 1rem;
  }

  .otober-faq-question {
    padding: 18px 20px;
  }

  .otober-faq-question-title {
    font-size: 1rem;
    padding-right: 12px;
  }

  .otober-faq-icon {
    width: 32px;
    height: 32px;
  }

  .otober-faq-icon i {
    font-size: 0.8rem;
  }

  .otober-faq-answer-content {
    padding: 0 20px 18px 20px;
    font-size: 0.9rem;
  }
}

/* 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;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.about-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(211, 26, 26, 0.15);
  border: 3px solid rgba(211, 26, 26, 0.1);
}

.about-image .main-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  max-height: 85vh;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(211, 26, 26, 0.3);
  border: 2px solid rgba(255, 255, 255, 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: linear-gradient(135deg, var(--primary-color2) 0%, #2a4a5c 100%);
  padding: 120px 0;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
  opacity: 0.3;
}

.stats-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(211, 26, 26, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.stats-header {
  position: relative;
  z-index: 3;
}

.stats-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
  letter-spacing: -0.02em;
}

.stats-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color1), #b01515);
  border-radius: 2px;
}

.stats-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

.stat-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 45px 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid rgba(211, 26, 26, 0.15);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(211, 26, 26, 0.1), transparent);
  transition: left 0.6s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(211, 26, 26, 0.25);
  border-color: var(--primary-color1);
  background: rgba(255, 255, 255, 1);
}

.stat-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 30px;
  box-shadow: 0 8px 25px rgba(211, 26, 26, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: all 0.4s ease;
}

.stat-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover .stat-icon::before {
  opacity: 0.3;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(211, 26, 26, 0.5);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}

.stat-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color1), #b01515);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover .stat-number::after {
  opacity: 1;
}

.stat-title {
  color: var(--text-color);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
}

@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: 50px 0;
  }

  .about-image .main-image {
    max-height: 70vh;
  }

  .stats-section {
    padding: 80px 0;
    margin: 40px 0;
  }

  .stat-card {
    padding: 35px 25px;
    margin-bottom: 25px;
  }

  .stat-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-title {
    font-size: 16px;
  }

  .stats-title {
    font-size: 2rem;
  }

  .stats-subtitle {
    font-size: 1rem;
  }
}

.content-text h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color1);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.content-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* 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;
  }
}

/* İletişim Sayfası CSS'leri - Sadece İletişim Sayfası */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-color1) 0%, #b01515 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  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 xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Stats Bölümü */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding: 0 20px;
}

.hero-stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* İletişim Bilgileri Bölümü */
.contact-info-section {
  padding: 80px 43px;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

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

.contact-info-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(211, 26, 26, 0.1), transparent);
  transition: left 0.6s ease;
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(211, 26, 26, 0.2);
  border-color: var(--primary-color1);
}

.card-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(211, 26, 26, 0.3);
}

.icon-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(211, 26, 26, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.card-content p {
  color: #64748b;
  margin-bottom: 20px;
  font-size: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color1);
  text-decoration: none;
  font-weight: 600;
font-size: 14px;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(211, 26, 26, 0.1);
}

.contact-link:hover {
  background: var(--primary-color1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 26, 26, 0.3);
}

/* WhatsApp Kartı Özel Stilleri */
.contact-info-card.whatsapp-card {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border: none;
}

.contact-info-card.whatsapp-card .contact-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.contact-info-card.whatsapp-card .icon-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.contact-info-card.whatsapp-card .card-content h3 {
  color: #fff;
}

.contact-info-card.whatsapp-card .card-content p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-info-card.whatsapp-card .contact-link {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(10px);
}

.contact-info-card.whatsapp-card .contact-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-card.whatsapp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.3);
}

/* Form ve Harita Bölümü */
.contact-main-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.contact-form-section {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  position: relative;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color1), #b01515, var(--primary-color1));
  border-radius: 20px 20px 0 0;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.form-header p {
  color: #64748b;
  font-size: 1rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.input-wrapper {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color1);
  box-shadow: 0 0 0 3px rgba(211, 26, 26, 0.1);
}

.form-label {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #94a3b8;
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  top: -10px;
  left: 15px;
  font-size: 0.85rem;
  color: var(--primary-color1);
  background: #fff;
  padding: 0 5px;
}

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

.captcha-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.modern-submit-btn {
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  color: #fff;
  border: none;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(211, 26, 26, 0.4);
}

.btn-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.modern-submit-btn:hover .btn-bg {
  left: 100%;
}

/* Harita Bölümü */
.map-section {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.map-header {
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-bottom: 1px solid #e5e7eb;
}

.map-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.map-header p {
  color: #64748b;
  font-size: 1rem;
}

.modern-map-container {
  height: 400px;
  position: relative;
}

.map-info {
  padding: 25px 30px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #64748b;
  font-size: 0.95rem;
}

.map-info-item i {
  color: var(--primary-color1);
  width: 20px;
}

/* Alert Mesajları */
.alert {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid;
}

.alert-success {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #166534;
}

.alert-danger {
  background: #fef2f2;
  border-color: #ef4444;
  color: #dc2626;
}

.alert-icon {
  font-size: 1.5rem;
}

.alert-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.alert-content p {
  font-size: 0.95rem;
  margin: 0;
}


/* Otober Style Hero Section - Sadece Home Page */
.otober-hero-section {
  position: relative;
  min-height: 70vh;
  height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
  overflow: hidden;
}

.otober-hero-section .hero-background-fixed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(211, 26, 26, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(211, 26, 26, 0.05) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d31a1a" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  z-index: 0;
  opacity: 0.8;
}

.otober-hero-section .hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.otober-hero-section .hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 60vh;
}

.otober-hero-section .hero-left-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.otober-hero-section .hero-text-content {
  max-width: 500px;
}

.otober-hero-section .hero-form-container {
  width: 400px;
  max-width: 100%;
}

.otober-hero-section .hero-main-title {
    font-size: 32px;
  font-weight: 700;
  color: var(--primary-color1);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.otober-hero-section .hero-subtitle {
  font-size: 1.4rem;
  color: #374151;
  margin-bottom: 40px;
  font-weight: 300;
  font-style: italic;
}

.otober-hero-section .hero-form-container {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(211, 26, 26, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(211, 26, 26, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.otober-hero-section .hero-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color1), #ff6b6b, var(--primary-color1));
  border-radius: 30px 30px 0 0;
}

.otober-hero-section .hero-form-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(211, 26, 26, 0.03) 0%, transparent 70%);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.otober-hero-section .form-inputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.otober-hero-section .input-group {
  position: relative;
}

.otober-hero-section .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.otober-hero-section .input-icon {
  position: absolute;
  left: 15px;
  color: var(--primary-color1);
  font-size: 1.1rem;
  z-index: 3;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}

.otober-hero-section .clean-select {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid rgba(211, 26, 26, 0.1);
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 500;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  color: #374151;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

.otober-hero-section .clean-select:focus {
  outline: none;
  border-color: var(--primary-color1);
  box-shadow: 
    0 0 0 4px rgba(211, 26, 26, 0.15),
    0 8px 25px rgba(211, 26, 26, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.otober-hero-section .clean-select:hover {
  border-color: var(--primary-color1);
  box-shadow: 
    0 6px 20px rgba(211, 26, 26, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.otober-hero-section .clean-evaluate-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color1) 0%, #b01515 50%, var(--primary-color1) 100%);
  color: #fff;
  border: none;
  padding: 18px 0;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 25px rgba(211, 26, 26, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.otober-hero-section .clean-evaluate-btn:hover {
  background: linear-gradient(135deg, #b01515 0%, var(--primary-color1) 50%, #b01515 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(211, 26, 26, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.otober-hero-section .clean-evaluate-btn:active {
  transform: translateY(0);
}

.otober-hero-section .clean-evaluate-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.otober-hero-section .btn-logo {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.otober-hero-section .clean-evaluate-btn:hover .btn-logo {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.otober-hero-section .hero-right-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.otober-hero-section .hero-car-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otober-hero-section .hero-car-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.otober-hero-section .hero-car-image img:hover {
  transform: scale(1.02);
}

/* Sağ Floating Menü */
.sag-menu {
  position: fixed;
    right: 20px;
    top: 43%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
  align-items: flex-end;
  justify-content: center;
}

.sag-menu-toggle {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color1);
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.sag-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(211, 26, 26, 0.3);
}

.sag-menu-toggle .hamburger {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.sag-menu-toggle .hamburger svg {
  width: 100%;
  height: 100%;
}

.sag-menu-toggle .hamburger .line {
  fill: none;
  stroke: var(--primary-color1);
  stroke-width: 2;
  stroke-linecap: round;
  transition: all 0.3s ease;
}

.sag-menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--primary-color1);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(211, 26, 26, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(211, 26, 26, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(100px);
  opacity: 0;
  min-width: 200px;
  backdrop-filter: blur(10px);
}

.sag-menu-item.animate-in {
  animation: slideInRight 0.5s ease forwards;
}

.sag-menu-item:hover {
  transform: translateX(-15px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(211, 26, 26, 0.25),
    0 8px 25px rgba(211, 26, 26, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color1);
  background: linear-gradient(135deg, var(--primary-color1) 0%, #b01515 100%);
  color: #fff;
}

.sag-menu-item .icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, rgba(211, 26, 26, 0.1) 0%, rgba(211, 26, 26, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 
    0 4px 15px rgba(211, 26, 26, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.sag-menu-item:hover .icon {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
  transform: scale(1.1);
  box-shadow: 
    0 6px 20px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sag-menu-item .icon i {
  font-size: 1.2rem;
  color: var(--primary-color1);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.sag-menu-item:hover .icon i {
  color: #fff;
}

.sag-menu.menu-open .sag-menu-item {
  transform: translateX(0);
  opacity: 1;
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.heroSwiper .swiper-pagination {
  bottom: 30px;
  z-index: 10;
}

.heroSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: var(--primary-color1);
  transform: scale(1.2);
}

.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-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(211, 26, 26, 0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0;
  width: 100%;
}

.hero-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero-text-section {
  color: #fff;
  position: relative;
  z-index: 15;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-badge i {
  color: #ffd700;
  font-size: 1rem;
}

.title-line-1 {
  display: block;
  color: #fff;
}

.title-line-2 {
  display: block;
  background: linear-gradient(135deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-3 {
  display: block;
  color: var(--primary-color1);
  text-shadow: 0 0 20px rgba(211, 26, 26, 0.5);
}

.hero-description {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  max-width: 450px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.feature-item i {
  width: 20px;
  color: var(--primary-color1);
  font-size: 1.1rem;
}

/* Modern Form Styles */
.hero-form-section {
  display: flex;
  justify-content: center;
}

.modern-form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}

.modern-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color1), #b01515, var(--primary-color1));
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.form-header p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.form-step-indicator {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.step.active {
  opacity: 1;
}

.step-number {
  width: 30px;
  height: 30px;
  background: #e2e8f0;
  color: #64748b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: var(--primary-color1);
  color: #fff;
  box-shadow: 0 4px 12px rgba(211, 26, 26, 0.3);
}

.step-text {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  text-align: center;
}

.step.active .step-text {
  color: var(--primary-color1);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.modern-form-group {
  position: relative;
}

.input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--primary-color1);
  font-size: 1rem;
  z-index: 2;
  pointer-events: none;
}

.modern-select {
  width: 100%;
  padding: 14px 18px 14px 45px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  background: #fff;
  color: var(--text-color);
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.modern-select:focus {
  outline: none;
  border-color: var(--primary-color1);
  box-shadow: 0 0 0 3px rgba(211, 26, 26, 0.1);
  transform: translateY(-1px);
}

.modern-select:hover {
  border-color: var(--primary-color1);
}

.select-arrow {
  position: absolute;
  right: 16px;
  color: #94a3b8;
  font-size: 0.85rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.modern-select:focus + .select-arrow {
  color: var(--primary-color1);
  transform: rotate(180deg);
}

.modern-evaluate-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color1), #b01515);
  color: #fff;
  border: none;
  padding: 15px 0;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-evaluate-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(211, 26, 26, 0.4);
}

.modern-evaluate-btn:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.modern-evaluate-btn.loading .btn-content {
  display: none;
}

.modern-evaluate-btn.loading .btn-loading {
  display: flex;
}

.btn-bg-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.modern-evaluate-btn:hover .btn-bg-effect {
  left: 100%;
}

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

.form-footer p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-footer i {
  color: #22c55e;
  font-size: 1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: #fff;
  animation: bounce 2s infinite;
}

.scroll-text {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.8;
}

.scroll-arrow {
  font-size: 1.2rem;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.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) {

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

  /* AOS animasyonlarını mobilde devre dışı bırak */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* İletişim Sayfası Küçük Mobil */
  .contact-hero {
    padding: 40px 0;
  }
  
  .contact-hero h1 {
    font-size: 1.8rem;
  }
  
  .contact-hero p {
    font-size: 0.9rem;
  }
  
  .contact-info-section {
    padding: 40px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .contact-main-section {
    padding: 40px 0;
    gap: 30px;
  }
  
  .contact-form-section {
    padding: 20px 15px;
  }
  
  .form-header h2 {
    font-size: 1.3rem;
  }
  
  .form-header p {
    font-size: 0.9rem;
  }
  
  .contact-cards-grid {
    gap: 15px;
  }
  
  .contact-info-card {
    padding: 25px 15px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .contact-link {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .form-control {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .modern-submit-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .map-header h3 {
    font-size: 1.3rem;
  }
  
  .map-header p {
    font-size: 0.9rem;
  }
  
  .modern-map-container {
    height: 250px;
  }
  
  .map-info {
    padding: 15px;
  }
  
  .map-info-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  /* İletişim Sayfası Çok Küçük Mobil */
  .contact-hero {
    padding: 30px 0;
  }
  
  .contact-hero h1 {
    font-size: 1.6rem;
  }
  
  .contact-hero p {
    font-size: 0.85rem;
  }
  
  .contact-info-section {
    padding: 30px 0;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
  
  .contact-main-section {
    padding: 30px 0;
    gap: 25px;
  }
  
  .contact-form-section {
    padding: 15px 10px;
  }
  
  .form-header h2 {
    font-size: 1.2rem;
  }
  
  .form-header p {
    font-size: 0.85rem;
  }
  
  .contact-cards-grid {
    gap: 12px;
  }
  
  .contact-info-card {
    padding: 20px 12px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .card-content h3 {
    font-size: 1.1rem;
  }
  
  .card-content p {
    font-size: 0.85rem;
  }
  
  .contact-link {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  
  .form-control {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .form-label {
    font-size: 0.85rem;
  }
  
  .modern-submit-btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .map-header h3 {
    font-size: 1.2rem;
  }
  
  .map-header p {
    font-size: 0.85rem;
  }
  
  .modern-map-container {
    height: 200px;
  }
  
  .map-info {
    padding: 12px;
  }
  
  .map-info-item {
    font-size: 0.8rem;
  }
}

  .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;
  }

  .header-actions {
    display: none;
  }

  .hero-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-main-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .modern-form-container {
    padding: 25px 20px;
  }

  .form-step-indicator {
    gap: 12px;
  }

  .step-text {
    font-size: 0.7rem;
  }
  

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

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


/* Responsive Tasarım */
@media (max-width: 991px) {
  .sag-menu
  {
    display: none !important;
  }
  .contact-main-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  /* AOS animasyonlarını mobilde devre dışı bırak */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* İletişim Sayfası Responsive */
  .contact-hero {
    padding: 60px 0;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero p {
    font-size: 1rem;
  }
  
  .contact-info-section {
    padding: 60px 0;
  }
  
  .contact-main-section {
    padding: 60px 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-section {
    padding: 30px 20px;
  }
  
  .form-header h2 {
    font-size: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-info-card {
    padding: 30px 20px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .contact-link {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
  
  .map-header h3 {
    font-size: 1.5rem;
  }
  
  .modern-map-container {
    height: 300px;
  }
  
  .map-info {
    padding: 20px;
  }
  
  .modern-submit-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
}



@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 0;
    border-radius: 0 0 20px 20px;
  }

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

  .contact-hero p {
    font-size: 1.1rem;
  }

  .hero-main-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .modern-form-container {
    padding: 20px 15px;
  }

  .form-header h2 {
    font-size: 1.3rem;
  }

  .modern-select {
    padding: 12px 16px 12px 40px;
  }

  .input-icon {
    left: 14px;
  }

  .select-arrow {
    right: 14px;
  }

  .hero-scroll-indicator {
    bottom: 15px;
  }

  /* Otober Hero Mobile */
  .otober-hero-section .hero-container {
    padding: 0 15px;
  }

  .otober-hero-section .hero-content-wrapper {
    gap: 25px;
    min-height: 50vh;
  }

  .otober-hero-section .hero-main-title {
    font-size: 2rem;
  }

  .otober-hero-section .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .otober-hero-section .hero-form-container {
    padding: 20px;
  }

  .otober-hero-section .form-inputs {
    gap: 15px;
  }

  .otober-hero-section .clean-select {
    padding: 12px 15px 12px 45px;
    font-size: 0.95rem;
  }

  .otober-hero-section .clean-evaluate-btn {
    padding: 15px 0;
    font-size: 1rem;
  }

  .otober-hero-section .hero-car-image {
    height: 250px;
  }

  /* Sağ menü mobile */
  .sag-menu {
    right: 5px;
    gap: 8px;
  }

  .sag-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .sag-menu-item {
    min-width: 120px;
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .sag-menu-item .icon {
    width: 25px;
    height: 25px;
  }

  .sag-menu-item .icon i {
    font-size: 0.9rem;
  }

  .heroSwiper .swiper-pagination {
    bottom: 20px;
  }

  .heroSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  /* Otober Hero Responsive */
  .otober-hero-section .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 0px;
    text-align: center;
    min-height: 50vh;
    display: block;
    padding-top: 155px;
  }

  .otober-hero-section .hero-background-fixed
  {
    z-index: 0;
  }

  .otober-hero-section .hero-main-title {
    font-size:25px;
  }

  .otober-hero-section .hero-subtitle {
    font-size: 1.2rem;
  }

  .otober-hero-section .hero-form-container {
    padding: 25px;
  }

  .otober-hero-section .hero-car-image {
    height: 300px;
  }

  /* Sağ menü responsive */
  .sag-menu {
    right: 10px;
    gap: 10px;
  }

  .sag-menu-item {
    min-width: 150px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }

  .sag-menu-item .icon {
    width: 30px;
    height: 30px;
  }
}


.step-form-header h4
{
  margin-bottom: 0 !important;
}

.step-form-header
{
    display: flex
;
    align-items: center;
    margin-bottom: 27px;
}