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

:root {
  --primary-color1: #0E4A8A;
  --primary-color2: #082d5a;
  --secondary-color: #f8fafc;
  --text-color: #2B2B2B;
  --border-color: #E5E7EB;
  --accent-color: #F36B21;
  --font-family: "Poppins", sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-degerleme-nav {
  background: var(--primary-color1);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(14, 74, 138, 0.2);
  white-space: nowrap;
}

.btn-degerleme-nav:hover {
  background: var(--primary-color2);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 74, 138, 0.3);
}

.btn-degerleme-nav i {
  font-size: 16px;
  margin-right: 8px;
}


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

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

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

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

.mobile-menu-btn .line-1 {
  top: 0;
}

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

.mobile-menu-btn .line-3 {
  bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-control:focus {
  border-color: var(--primary-color1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 74, 138, 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(14, 74, 138, 0.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blog-card:hover {
  box-shadow: 0 8px 32px 0 rgba(14, 74, 138, 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(14, 74, 138, 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(14, 74, 138, 0.08);
}

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

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

@media (max-width: 991px) {
  .blog-img img {
    height: 180px;
  }

  .blog-content {
    padding: 18px 12px 16px 12px;
  }

  .blog-title-s {
    font-size: 0.98rem;
  }

  .blog-desc {
    font-size: 0.89rem;
  }

  .read-more {
    font-size: 0.89rem;
    padding: 7px 12px;
  }
}

@media (max-width: 767px) {
  .blog-img img {
    height: 140px;
  }

  .blog-card {
    border-radius: 12px;
  }

  .blog-content {
    padding: 12px 8px 10px 8px;
  }

  .blog-title-s {
    font-size: 0.93rem;
  }

  .blog-desc {
    font-size: 0.85rem;
  }

  .read-more {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}

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

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

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

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

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

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

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

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

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

.blog-text h1 {
  font-size: 1.5rem;
}

.blog-text h2 {
  font-size: 1.2rem;
}

.blog-text h3 {
  font-size: 1.05rem;
}

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

@media (max-width: 991px) {
  .blog-content {
    padding: 18px 10px 16px 10px;
  }

  .featured-image img {
    max-height: 220px;
  }

  .blog-title {
    font-size: 1.18rem;
  }
}

@media (max-width: 767px) {
  .blog-content {
    padding: 10px 2px 10px 2px;
  }

  .featured-image img {
    max-height: 140px;
  }

  .blog-title {
    font-size: 1.05rem;
  }

  .blog-text h1 {
    font-size: 1.1rem;
  }

  .blog-text h2 {
    font-size: 1rem;
  }

  .blog-text h3 {
    font-size: 0.95rem;
  }

  .blog-text {
    font-size: 0.97rem;
  }
}

.hero-slider-bg {
  position: relative;

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

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

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

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

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

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

.hero-form-box {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 10px 40px 0 rgba(30, 61, 80, 0.15);
  padding: 45px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: heroFormPulse 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes heroFormPulse {
  0% {
    box-shadow: 0 10px 40px 0 rgba(30, 61, 80, 0.15), 0 0 0 0 rgba(14, 74, 138, 0.5);
  }

  60% {
    box-shadow: 0 10px 40px 0 rgba(30, 61, 80, 0.15), 0 0 0 18px rgba(14, 74, 138, 0);
  }

  100% {
    box-shadow: 0 10px 40px 0 rgba(30, 61, 80, 0.15), 0 0 0 0 rgba(14, 74, 138, 0);
  }
}

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

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

.hero-form-inline select.form-select {
  width: 100%;
  font-size: 17px;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  padding: 18px 24px 18px 54px;
  background: #f8fafc;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.3s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hero-form-inline select.form-select:focus {
  border: 1.5px solid var(--primary-color1);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(14, 74, 138, 0.12);
}

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

.hero-form-inline .btn-evaluate {
  background: linear-gradient(135deg, #F36B21 0%, #e05a10 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 22px 0;
  font-size: 1.25rem;
  font-weight: 800;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 6px 20px rgba(243, 107, 33, 0.35);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-form-inline .btn-evaluate:hover {
  background: linear-gradient(90deg, #e05a10 0%, #F36B21 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 107, 33, 0.4);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 600px) {

  .hero-slider-bg,
  .hero-slider-bg .swiper,
  .hero-slider-bg .swiper-slide {
    min-height: 320px;
    height: 320px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.appraisal-card img {
  object-fit: cover;
  width: 217px;
}

.appraisal-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

.features-section {
  background: #f8fafc;
  padding: 100px 0;
  text-align: center;
}

.features-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #1e293b;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  letter-spacing: -0.5px;
}

.features-title::before {
  content: 'NEDEN BİZ?';
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color1);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color1) 0%, #3B82F6 100%);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(14, 74, 138, 0.3);
}

@media (max-width: 768px) {
  .features-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 61, 80, 0.05);
  padding: 45px 35px;
  max-width: 310px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(241, 245, 249, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 61, 80, 0.12);
  border-color: rgba(14, 74, 138, 0.1);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  font-size: 2.2rem;
  background: rgba(14, 74, 138, 0.06);
  border-radius: 24px;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: iconPulseGlow 3s infinite;
}

.feature-icon i {
  background: linear-gradient(135deg, var(--primary-color1) 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

@keyframes iconPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 74, 138, 0.3);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(14, 74, 138, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(14, 74, 138, 0);
  }
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-color1) 0%, #3B82F6 100%);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 20px rgba(14, 74, 138, 0.3);
}

.feature-card:hover .feature-icon i {
  -webkit-text-fill-color: #ffffff;
  background: none;
  color: #ffffff;
}

.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: #0E4A8A;
}

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


.custom-blog-section {
  margin: 55px 0px;
}

/* Responsive */
@media (max-width: 991px) {
  .mobile-menu-btn {
    display: block;
  }

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

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

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

/* Pagination Styling */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination li.active span,
.pagination li a:hover {
  background: var(--primary-color1);
  color: #fff;
  border-color: var(--primary-color1);
  box-shadow: 0 4px 12px rgba(14, 74, 138, 0.2);
}

.pagination li.disabled span {
  opacity: 0.5;
  cursor: not-allowed;
}

.blog-area {
  padding-bottom: 80px;
}

/* Blog Detail Page Styling */
.breadcrumb-nav {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
}

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

.breadcrumb-item.active {
  color: #64748b;
}

.blog-detail-page {
  padding: 60px 0;
  background: #fff;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color2);
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
}

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

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-date-detail {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary-color1);
  color: #fff;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(14, 74, 138, 0.2);
}

.blog-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569;
}

.blog-text p {
  margin-bottom: 25px;
}

.blog-text h2,
.blog-text h3 {
  color: var(--primary-color2);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.blog-text img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 1.8rem;
  }

  .blog-detail-page {
    padding: 40px 0;
  }

  .blog-text {
    font-size: 1.05rem;
  }
}


/* ===================================================
   HOME STATS COUNTER SECTION
   =================================================== */
.home-stats-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #082d5a 0%, #0E4A8A 60%, #082d5a 100%);
  overflow: hidden;
}

.stats-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.home-stat-card {
  text-align: center;
  padding: 50px 25px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.home-stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.home-stat-icon {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.home-stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: inline;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.home-stat-suffix {
  font-size: 1.8rem;
  font-weight: 700;
  color: #F36B21;
  display: inline;
  margin-left: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-stat-label {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .home-stat-card {
    padding: 30px 15px;
  }

  .home-stat-number {
    font-size: 2.5rem;
  }

  .home-stat-icon {
    width: 65px;
    height: 65px;
    font-size: 2rem;
  }

  .home-stat-suffix {
    font-size: 1.5rem;
  }
}


/* ===================================================
   HOME TESTIMONIALS SECTION
   =================================================== */
.home-testimonials-section {
  padding: 80px 0 100px;
  background: #f8fafc;
  position: relative;
}

.home-testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14, 74, 138, 0.12), rgba(14, 74, 138, 0.06));
  color: var(--primary-color1);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(14, 74, 138, 0.2);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-testimonials-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.home-testimonials-header p {
  font-size: 1.05rem;
  color: #64748b;
}

.testimonialsSwiper {
  padding-bottom: 50px !important;
}

.testimonialsSwiper .swiper-slide {
  display: flex;
  align-items: stretch;
  padding: 10px 8px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px 30px;
  box-shadow: 0 4px 30px rgba(30, 61, 80, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(14, 74, 138, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14, 74, 138, 0.14);
  border-color: rgba(14, 74, 138, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.testimonial-avatar {
  font-size: 2.8rem;
  color: var(--primary-color1);
  flex-shrink: 0;
  opacity: 0.85;
}

.testimonial-info strong {
  display: block;
  font-size: 1rem;
  color: #1e293b;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: #94a3b8;
}

.testimonials-pagination {
  bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color1);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .home-testimonials-header h2 {
    font-size: 1.6rem;
  }

  .testimonial-card {
    padding: 24px 20px 20px;
  }
}


/* ===================================================
   HOME CTA BANNER SECTION
   =================================================== */
.home-cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #082d5a 0%, #0E4A8A 40%, #0E4A8A 100%);
  overflow: hidden;
}

.home-cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(14, 74, 138, 0.3) 0%, transparent 70%);
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
}

.cta-shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.home-cta-text {
  flex: 1;
  min-width: 280px;
}

.home-cta-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.home-cta-text h2 span {
  background: linear-gradient(90deg, #F36B21, #FFA726);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-cta-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.7;
}

.home-cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.home-cta-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.home-cta-benefits li i {
  color: #F36B21;
  font-size: 1.1rem;
}

.home-cta-action {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  flex-shrink: 0;
}

.home-cta-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #F36B21, #e05a10);
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(243, 107, 33, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.home-cta-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(243, 107, 33, 0.5);
  background: linear-gradient(135deg, #e05a10, #F36B21);
}

.home-cta-main-btn i {
  font-size: 1.2rem;
}

.home-cta-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.home-cta-phone-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
  .home-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }

  .home-cta-text h2 {
    font-size: 1.9rem;
  }

  .home-cta-action {
    align-items: center;
  }

  .home-cta-benefits {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .home-cta-text h2 {
    font-size: 1.6rem;
  }

  .home-cta-main-btn {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .home-cta-banner {
    padding: 60px 0;
  }
}