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

:root {
  /* Brand Colors */
  --primary-color1: #f26a0a;         /* Orange */
  --primary-color1-rgb: 242, 106, 10;
  --primary-hover: #d85c05;          /* Dark Orange */
  
  --primary-dark: #2b2b2b;           /* Dark Gray/Black */
  --primary-dark-rgb: 43, 43, 43;
  
  --bg-light: #f5f5f5;               /* Light Background */
  --bg-white: #ffffff;
  
  --text-primary: #2b2b2b;           /* Same as Primary Dark */
  --text-secondary: #6b6b6b;         /* Medium Gray */
  
  --border-color: #e2e8f0;
  --font-family: 'Poppins', sans-serif;
  
  /* Utils */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --glass: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.5);
}

* {
  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
   ============================================= */
.main-header {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  padding: 8px 0;
}

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

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

.main-header.scrolled .logo-area img {
  max-height: 46px;
}

/* Desktop Nav */
.nav-area {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.main-menu li a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: var(--transition);
  display: block;
}

.main-menu li a:hover {
  color: var(--primary-color1);
  background: rgba(242, 106, 10, 0.07);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Phone Link */
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.header-phone-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(242, 106, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color1);
  font-size: 15px;
  transition: var(--transition);
}

.header-phone:hover .header-phone-icon {
  background: var(--primary-color1);
  color: #fff;
}

.header-phone-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* CTA Button */
.header-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color1);
  color: #fff;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(242, 106, 10, 0.3);
}

.header-cta-btn:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(242, 106, 10, 0.4);
}

.header-cta-btn i {
  font-size: 14px;
}

/* Hamburger */
.mobile-menu-btn {
  width: 38px;
  height: 38px;
  position: relative;
  cursor: pointer;
  display: none;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}

.mobile-menu-btn .line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.open .line-1 {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.open .line-2 {
  opacity: 0;
}
.mobile-menu-btn.open .line-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

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

/* Mobile Nav Panel */
.mobile-nav-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

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

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

.mobile-nav-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.mobile-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.mobile-close-btn:hover {
  background: var(--primary-color1);
  color: #fff;
  border-color: var(--primary-color1);
}

/* Mobile Nav Links */
.mobile-nav {
  flex: 1;
  padding: 20px 0;
}

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

.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  transition: var(--transition);
  margin-bottom: 4px;
}

.mobile-nav ul li a i {
  width: 20px;
  color: var(--primary-color1);
  font-size: 15px;
  text-align: center;
}

.mobile-nav ul li a:hover {
  background: rgba(242, 106, 10, 0.08);
  color: var(--primary-color1);
  padding-left: 22px;
}

/* Mobile Footer Buttons */
.mobile-nav-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-color1);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 14px rgba(242, 106, 10, 0.3);
}

.mobile-cta-btn:hover {
  background: var(--primary-hover);
  color: #fff;
}

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-light);
  color: var(--text-primary);
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.mobile-phone-btn:hover {
  border-color: var(--primary-color1);
  color: var(--primary-color1);
}

body.nav-open {
  overflow: hidden;
}

/* Responsive breakpoints */
@media (max-width: 1199px) {
  .header-phone-text {
    display: none;
  }
}

@media (max-width: 991px) {
  .nav-area {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .header-cta-btn span {
    display: none;
  }
  .header-cta-btn {
    padding: 11px 14px;
  }
}

@media (max-width: 576px) {
  .header-phone {
    display: none;
  }
  .header-cta-btn span {
    display: inline;
  }
  .header-cta-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}


.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) 0%,
    var(--primary-hover) 50%,
    var(--primary-dark) 100%
  );
  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;
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section {
  padding: 0;
  margin-top: -1px;
}

.trust-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 24px 40px;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border-color);
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
  padding: 10px 20px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(242, 106, 10, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color1);
  font-size: 22px;
  transition: var(--transition);
}

.trust-item:hover .trust-icon {
  background: var(--primary-color1);
  color: #fff;
}

.trust-content h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 3px;
}

.trust-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--border-color);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-wrapper {
    padding: 20px;
    margin-top: 0;
    gap: 10px;
  }
  .trust-item {
    min-width: 45%;
    padding: 8px;
  }
  .trust-divider {
    display: none;
  }
}

/* =============================================
   BLOG CARDS V2
   ============================================= */
.blog-section-v2 {
  padding: 80px 0;
  background: var(--bg-white);
}

.blog-card-v2 {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--primary-color1);
}

.blog-thumb {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-color1);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-meta span {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: var(--primary-color1);
}

.blog-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
  flex: 1;
}

.blog-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

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

.blog-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color1);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
}

.read-more-link:hover {
  gap: 10px;
  color: var(--primary-hover);
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.view-all-btn:hover {
  background: var(--primary-color1);
  color: #fff;
  border-color: var(--primary-color1);
}

@media (max-width: 768px) {
  .blog-section-v2 {
    padding: 50px 0;
  }
  .blog-thumb {
    height: 180px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Modernized Components - Orange/Dark Gray Palette */


.hero-section {
  position: relative;
  min-height: 600px;
  height: 80vh;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
}

.hero-section .swiper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.slide-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(43, 43, 43, 0.85) 0%, rgba(43, 43, 43, 0.4) 100%);
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 106, 10, 0.15);
  color: var(--primary-color1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 106, 10, 0.3);
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--primary-color1);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.h-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
}

.h-feature i {
  color: var(--primary-color1);
}

.hero-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card .card-header {
  margin-bottom: 24px;
  text-align: center;
}

.hero-card .card-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.hero-card .card-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

.hero-form .form-group {
  margin-bottom: 18px;
}

.hero-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.hero-form .form-group label i {
  color: var(--primary-color1);
  margin-right: 5px;
}

.hero-form .form-select {
  height: 56px;
  border-radius: 12px;
  border: 1.5px solid var(--border-color);
  padding: 0 16px;
  font-size: 15px;
  background-color: var(--bg-light);
  transition: var(--transition);
}

.hero-form .form-select:focus {
  border-color: var(--primary-color1);
  box-shadow: 0 0 0 4px rgba(242, 106, 10, 0.1);
}

.btn-primary-orange {
  background-color: var(--primary-color1);
  color: #fff;
  height: 60px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  border: none;
  width: 100%;
}

.btn-primary-orange:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 106, 10, 0.3);
  color: #fff;
}

/* Trust Section */
.trust-section {
  padding: 40px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.trust-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  margin-top: -60px;
  position: relative;
  z-index: 15;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-icon {
  width: 50px; height: 50px;
  background: rgba(242, 106, 10, 0.1);
  color: var(--primary-color1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.trust-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.trust-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Steps Section */
.steps-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.section-header .sub-title {
  color: var(--primary-color1);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}

.section-header .main-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-header .main-title span {
  color: var(--primary-color1);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* ---- New Step Cards v2 (Icon Based) ---- */
.step-card-v2 {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 40px 30px 36px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.step-card-v2::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(242, 106, 10, 0.04);
  transition: var(--transition);
}

.step-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(242, 106, 10, 0.12);
  border-color: var(--primary-color1);
}

.step-card-v2:hover::before {
  background: rgba(242, 106, 10, 0.08);
  transform: scale(1.3);
}

/* Icon Wrap */
.step-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.step-card-v2:hover .step-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
}

.step-color-1 {
  background: linear-gradient(135deg, #fff3ec 0%, #ffe0cc 100%);
  color: #f26a0a;
}

.step-color-2 {
  background: linear-gradient(135deg, #edf4ff 0%, #cde0ff 100%);
  color: #2563eb;
}

.step-color-3 {
  background: linear-gradient(135deg, #edfaf3 0%, #c6f0da 100%);
  color: #16a34a;
}

/* Step Badge (number) */
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-color1);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(242, 106, 10, 0.35);
  letter-spacing: -0.5px;
}

.step-content h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* connector arrow between cards */
@media (min-width: 992px) {
  .step-card-v2-wrap {
    position: relative;
  }
}



/* CTA Section */
.cta-section {
  padding: 60px 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #444 100%);
  border-radius: 30px;
  padding: 60px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(242, 106, 10, 0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 40px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-white:hover {
  background: var(--primary-color1);
  color: #fff;
  transform: scale(1.05);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Blog Section V2 */
.blog-section-v2 {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.view-all-btn {
  color: var(--primary-color1);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.view-all-btn:hover {
  gap: 12px;
  color: var(--primary-hover);
}

.blog-card-v2 {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

.blog-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-thumb {
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card-v2:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--primary-color1);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.blog-body {
  padding: 25px;
}

.blog-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.blog-body .blog-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-body .blog-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.blog-body .blog-title a:hover {
  color: var(--primary-color1);
}

.blog-body p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.read-more-link {
  color: var(--primary-color1);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.read-more-link:hover {
  gap: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-title { font-size: 36px; }
  .hero-section { min-height: auto; height: auto; }
  .trust-wrapper { flex-direction: column; gap: 20px; margin-top: 20px; }
  .trust-divider { width: 80%; height: 1px; }
  .section-header .main-title { font-size: 32px; }
  .cta-card { padding: 40px 20px; }
}

@media (max-width: 767px) {
  .hero-badge { font-size: 12px; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 16px; }
  .hero-card { padding: 25px; }
  .steps-section, .blog-section-v2 { padding: 60px 0; }
}

.mobile-menu-btn {
  display: none !important;
}

/* =============================================
   FOOTER - Dark Theme
   ============================================= */

.footer {
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 70px;
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  max-height: 60px;
  filter: brightness(0) invert(1);
}
/* =============================================
   COOKIE CONSENT & KVKK
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 9999;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(120%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-icon {
  width: 44px;
  height: 44px;
  background: rgba(242, 106, 10, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color1);
  font-size: 20px;
}

.cookie-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cookie-content p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.cookie-content a {
  color: var(--primary-color1);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.btn-cookie-accept {
  flex: 1;
  background: var(--primary-color1);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-cookie-decline {
  padding: 12px 20px;
  background: var(--bg-light);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-decline:hover {
  background: #eee;
}

/* KVKK Form Styles */
.kvkk-row {
  margin: 20px 0;
}

.kvkk-check-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.kvkk-check-wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--primary-color1);
  cursor: pointer;
  margin-top: 2px;
}

.kvkk-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.kvkk-text a {
  color: var(--primary-color1);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Footer Titles */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

/* Footer Contact */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(242, 106, 10, 0.15);
  border: 1px solid rgba(242, 106, 10, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color1);
  font-size: 16px;
}

.footer-contact-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: block;
  line-height: 1.4;
}

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

.footer-contact-info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin: 2px 0 0 0;
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #111111;
  padding: 18px 0;
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
}

.footer-copyright strong {
  color: var(--primary-color1);
  font-weight: 700;
}

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

  .footer-top {
    padding-bottom: 30px;
  }

  .footer .col-6 {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer-logo {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

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

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

  .footer-contact-item {
    justify-content: center;
  }
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section {
  padding: 100px 0;
  background: var(--bg-light);
}

/* Left Card */
.faq-left-card {
  background: linear-gradient(145deg, var(--primary-dark) 0%, #3a3a3a 100%);
  border-radius: 28px;
  padding: 44px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.faq-left-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(242, 106, 10, 0.08);
}

.faq-left-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(242, 106, 10, 0.06);
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 106, 10, 0.2);
  color: var(--primary-color1);
  border: 1px solid rgba(242, 106, 10, 0.35);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.faq-brand-box h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.faq-brand-box h2 span {
  color: var(--primary-color1);
}

.faq-brand-box > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* CTA Phone Button */
.faq-cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 14px 20px;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 14px;
}

.faq-cta-btn:hover {
  background: rgba(242, 106, 10, 0.15);
  border-color: var(--primary-color1);
}

.faq-cta-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: var(--primary-color1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
}

.faq-cta-text small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.faq-cta-text strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

/* Start Button */
.faq-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-color1);
  color: #fff;
  border-radius: 14px;
  padding: 15px 24px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 32px;
}

.faq-start-btn:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 106, 10, 0.35);
}

.faq-start-btn i {
  transition: transform 0.3s;
}

.faq-start-btn:hover i {
  transform: translateX(4px);
}

/* Stats Row */
.faq-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.faq-stat {
  flex: 1;
  text-align: center;
}

.faq-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color1);
  line-height: 1;
}

.faq-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

.faq-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 18px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-color1);
  box-shadow: 0 8px 24px rgba(242, 106, 10, 0.10);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-color1);
}

.faq-item.active .faq-question {
  color: var(--primary-color1);
}

.faq-question span:nth-child(2) {
  flex: 1;
}

/* Question icon */
.faq-q-icon {
  width: 38px; height: 38px;
  min-width: 38px;
  background: rgba(242, 106, 10, 0.1);
  color: var(--primary-color1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: var(--transition);
}

.faq-item.active .faq-q-icon {
  background: var(--primary-color1);
  color: #fff;
}

/* Chevron */
.faq-chevron {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  background: var(--primary-color1);
  border-color: var(--primary-color1);
  color: #fff;
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section { padding: 60px 0; }
  .faq-left-card { padding: 30px 24px; margin-bottom: 20px; }
  .faq-brand-box h2 { font-size: 24px; }
}