svg .B {
  fill: #F97316;
}

svg .D {
  fill: #EA580C;
}

/* ============================================
   HEADER / NAVIGATION STYLES - REDESIGNED
   ============================================ */

/* Root Variables */
:root {
  --primary-yellow: #F97316;
  --primary-yellow-hover: #EA580C;
  --primary-light: #FDBA74;
  --dark-gray: #111111;
  --dark-secondary: #374151;
  --white: #FFFFFF;
  --bg-light: #F5F5F5;
  --bg-card: #FFFFFF;
  --bg-alt: #F9FAFB;
  --text-muted: #6B7280;
  --text-mid: #9CA3AF;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 6px 24px rgba(249, 115, 22, 0.35);
}

/* Global Font Family */
body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   GENEL HOVER EFFECTS
   ============================================ */

/* Tüm linkler için genel hover efekti */
a {
  transition: var(--transition);
  position: relative;
}

/* Tüm linkler için genel hover animasyonu - özel hover'ı olmayanlar için */
a:not(.das-header__cta):not(.mobile-cta-button):not(.mobile-menu__close):not(.nav__link):not(.mobile-nav__link):not(.header__logo):hover {
  transform: translateY(-1px);
}

/* Tüm tıklanabilir elementler için genel hover efekti - özel hover'ı olmayanlar için */
button:not(.header__mobile-toggle):not(.mobile-menu__close):hover,
a:not(.das-header__cta):not(.mobile-cta-button):not(.mobile-menu__close):not(.nav__link):not(.mobile-nav__link):not(.header__logo):hover {
  filter: brightness(1.05);
}

/* Tüm linkler için genel hover efekti - ikon varsa */
a i,
a .bi,
a .fas,
a .far,
a .fab {
  transition: var(--transition);
}

a:hover i,
a:hover .bi,
a:hover .fas,
a:hover .far,
a:hover .fab {
  transform: scale(1.1);
  color: var(--primary-yellow);
}

/* Tüm butonlar için genel hover efekti */
button:hover,
a.button:hover {
  cursor: pointer;
  filter: brightness(1.1);
}

/* Hover efekti olan elementler için genel stil */
[class*="hover"],
[class*="link"],
[class*="button"] {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   TOPBAR STYLES - Modern & Minimal
   ============================================ */

.das-topbar {
  background: #f9fafb;
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  padding: 8px 0;
  font-size: 12px;
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  z-index: 999;
}

.das-topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, rgba(249, 115, 22, 0.5) 50%, var(--primary-yellow) 100%);
}


.das-topbar__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.das-topbar__contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.das-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-gray);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.das-topbar__item i {
  font-size: 12px;
  color: var(--primary-yellow);
  transition: var(--transition);
  width: 14px;
  text-align: center;
  font-weight: 700;
}

.das-topbar__item:hover {
  color: var(--dark-gray);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
}

.das-topbar__item:hover i {
  color: var(--primary-yellow);
  transform: scale(1.2);
}

.das-topbar__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.das-topbar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--dark-gray);
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.9;
  background: #fff;
  backdrop-filter: blur(5px);
  border-radius: 6px;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.das-topbar__social-link:hover {
  opacity: 1;
  background: var(--primary-yellow);
  color: #fff;
  border-color: var(--primary-yellow);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.das-topbar__social-link i {
  font-size: 12px;
  font-weight: 600;
}

/* Header Base Styles */
.das-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.das-header.is-scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.das-header .container {
  /* max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px; */
}

.das-header .header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  gap: 40px;
}

/* Logo Styles */
.das-header .header__brand {
  flex: 0 0 auto;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.das-header .header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.das-header .header__logo:hover {
  transform: scale(1.02) translateY(-1px);
  filter: brightness(1.05);
}

.das-header .header__logo img {
  max-height: 52px;
  width: auto;
  display: block;
}

/* Logo Rozeti */
.header__brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(90deg, rgba(249,115,22,0.08) 0%, rgba(249,115,22,0.04) 100%);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 20px;
  padding: 2px 10px 2px 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-yellow);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

.header__brand-badge-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Navigation Styles - Modern & Clean */
.das-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.das-header__nav .nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.das-header__nav .nav__item {
  margin: 0;
}

.das-header__nav .nav__link {
  display: block;
  padding: 10px 18px;
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  border-radius: 8px;
}

.das-header__nav .nav__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 8px;
  opacity: 0;
  transition: var(--transition);
}

.das-header__nav .nav__link:hover {
  color: var(--dark-gray);
  transform: translateY(-1px);
}

.das-header__nav .nav__link:hover::before {
  opacity: 1;
}

.das-header__nav .nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 6px;
  height: 6px;
  background: var(--primary-yellow);
  border-radius: 50%;
  transition: var(--transition);
}

.das-header__nav .nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ============================================
   CTA BUTTON - Premium Two-Line Design
   ============================================ */
.das-header .header__cta {
  flex: 0 0 auto;
}

.das-header__cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  padding: 0;
}

.das-header__cta-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 16px;
  position: relative;
  z-index: 2;
}

.das-header__cta-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.das-header__cta-icon i {
  font-size: 15px;
  color: #fff;
  transition: var(--transition);
}

.das-header__cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
}

.das-header__cta-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.das-header__cta-main {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.das-header__cta-arrow {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  margin-left: 4px;
}

.das-header__cta-arrow i {
  font-size: 12px;
  color: #fff;
  transition: var(--transition);
}

/* Shine sweep effect */
.das-header__cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.7s ease;
  z-index: 1;
  transform: skewX(-15deg);
}

.das-header__cta:hover .das-header__cta-shine {
  left: 150%;
}

.das-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.6), inset 0 1px 0 rgba(255,255,255,0.2);
  background: linear-gradient(135deg, #FB923C 0%, #F97316 50%, #EA580C 100%);
  color: #fff;
}

.das-header__cta:hover .das-header__cta-icon {
  background: rgba(255,255,255,0.28);
  transform: rotate(-8deg) scale(1.1);
}

.das-header__cta:hover .das-header__cta-arrow {
  background: rgba(255,255,255,0.28);
  transform: translateX(3px);
}

.das-header__cta:hover .das-header__cta-arrow i {
  transform: translateX(2px);
}

.das-header__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(249, 115, 22, 0.4);
}

/* Mobile Toggle Button */
.das-header .header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(45, 45, 45, 0.05);
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  border-radius: 10px;
  transition: var(--transition);
}

.das-header .header__mobile-toggle:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.2);
}

.das-header .header__mobile-toggle .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  position: relative;
}

.das-header .header__mobile-toggle .hamburger__line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--dark-gray);
  transition: var(--transition);
  transform-origin: center;
  border-radius: 2px;
}

.das-header .header__mobile-toggle[aria-expanded="true"] {
  background: rgba(249, 115, 22, 0.1);
}

.das-header .header__mobile-toggle[aria-expanded="true"] .hamburger__line--top {
  transform: translateY(6.75px) rotate(45deg);
}

.das-header .header__mobile-toggle[aria-expanded="true"] .hamburger__line--middle {
  opacity: 0;
}

.das-header .header__mobile-toggle[aria-expanded="true"] .hamburger__line--bottom {
  transform: translateY(-6.75px) rotate(-45deg);
}

/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu #das-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 45, 45, 0.75);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.mobile-menu.is-open #das-overlay {
  opacity: 1;
}

.mobile-menu #das-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background: var(--white);
  box-shadow: -8px 0 32px rgba(45, 45, 45, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.is-open #das-drawer {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
  position: relative;
  overflow: hidden;
}

.mobile-menu__header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #F97316 0%, #FB923C 50%, #F97316 100%);
}

.mobile-menu__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 20px;
  padding: 2px 8px;
}

.mobile-menu__badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
  animation: badgePulse 2s infinite;
}

.mobile-menu__logo {
  display: inline-flex;
  align-items: center;
}

.mobile-menu__logo img {
  max-height: 48px;
  width: auto;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 10px;
}

.mobile-menu__close:hover {
  background: rgba(249, 115, 22, 0.2);
  color: var(--primary-yellow);
  transform: rotate(90deg);
}

/* Mobile Quick Info */
.mobile-menu__quickinfo {
  padding: 12px 24px;
  background: rgba(249,115,22,0.05);
  border-bottom: 1px solid rgba(249,115,22,0.1);
}

.mobile-quickinfo__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-quickinfo__link i {
  color: var(--primary-yellow);
  font-size: 13px;
}

.mobile-quickinfo__link:hover {
  color: var(--primary-yellow);
}

.mobile-menu__nav {
  flex: 1 1 auto;
  padding: 24px 0 16px;
  overflow-y: auto;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0 16px;
}

.mobile-nav__item {
  margin: 0 0 8px 0;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: var(--transition);
  position: relative;
  border-radius: 12px;
  background: transparent;
}

.mobile-nav__link i {
  width: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
  flex-shrink: 0;
}

.mobile-nav__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--primary-yellow);
  border-radius: 0 4px 4px 0;
  transition: var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link:active {
  color: #111111;
  background: rgba(249, 115, 22, 0.07);
  padding-left: 26px;
}

.mobile-nav__link:hover i,
.mobile-nav__link:active i {
  color: var(--primary-yellow);
  transform: translateX(2px);
}

.mobile-nav__link:hover::before,
.mobile-nav__link:active::before {
  height: 60%;
}

.mobile-menu__cta {
  padding: 24px;
  border-top: 1px solid rgba(249, 115, 22, 0.15);
  flex-shrink: 0;
  background: #f9fafb;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.mobile-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
}

.mobile-cta-text small {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-cta-text strong {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.mobile-cta-arrow {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  transition: var(--transition);
}

.mobile-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.7s ease;
  transform: skewX(-15deg);
}

.mobile-cta-button:hover::before {
  left: 150%;
}

.mobile-cta-button:hover {
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.mobile-cta-button:hover .mobile-cta-arrow {
  background: rgba(255,255,255,0.3);
  transform: translateX(3px);
}

.mobile-cta-button > i:first-child {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  flex-shrink: 0;
}

.mobile-cta-button:hover > i:first-child {
  transform: rotate(-8deg) scale(1.15);
}

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

/* Responsive Styles */
@media (max-width: 991px) {
  .das-topbar {
    display: none;
  }

  .das-header__nav {
    display: none;
  }

  .das-header .header__cta {
    display: none;
  }

  .das-header .header__mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .das-header .header__wrapper {
    gap: 0;
  }
}

@media (max-width: 767px) {
  .das-topbar {
    display: none;
  }

  .das-header .container {
    padding: 0 16px;
  }

  .das-header .header__wrapper {
    height: 72px;
  }

  .das-header .header__logo img {
    max-height: 42px;
  }

  .mobile-menu #das-drawer {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .das-topbar {
    display: none;
  }

  .das-header .header__wrapper {
    height: 68px;
  }

  .das-header .header__logo img {
    max-height: 38px;
  }
}

/* ============================================
   FOOTER STYLES - Modern & Premium
   ============================================ */

.das-footer {
  background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.das-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, rgba(249, 115, 22, 0.5) 50%, var(--primary-yellow) 100%);
}

.das-footer__top {
  padding: 80px 0 60px;
  position: relative;
}

.das-footer__top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(253, 185, 19, 0.2) 50%, transparent 100%);
}

.das-footer__brand {
  padding-right: 20px;
}

.das-footer__logo {
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition);
}

.das-footer__logo:hover {
  transform: translateY(-2px);
}

.das-footer__logo img {
  max-height: 50px;
  width: auto;
  filter: brightness(1.1);
}

.das-footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  max-width: 280px;
}

.das-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.das-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 8px;
}

.das-footer__social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
  z-index: 0;
}

.das-footer__social-link:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.das-footer__social-link:hover {
  color: #ffffff;
  border-color: #F97316;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.das-footer__social-link i {
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.das-footer__social-link:hover i {
  transform: scale(1.15) rotate(5deg);
}

.das-footer__column {
  margin-bottom: 20px;
}

.das-footer__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.das-footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #F97316 0%, rgba(249, 115, 22, 0.4) 100%);
  border-radius: 3px;
  transition: var(--transition);
}

.das-footer__column:hover .das-footer__title::after {
  width: 60px;
}

.das-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.das-footer__links li {
  margin-bottom: 12px;
}

.das-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  padding: 6px 0;
  position: relative;
}

.das-footer__links a i {
  font-size: 10px;
  color: #F97316;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

.das-footer__links a:hover {
  color: #F97316;
  padding-left: 8px;
  transform: translateX(4px);
}

.das-footer__links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.das-footer__links a span {
  transition: var(--transition);
}

.das-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.das-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.das-footer__contact-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #F97316, #EA580C);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}

.das-footer__contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 16px;
  transform: translateX(4px);
}

.das-footer__contact-item:hover::before {
  transform: scaleY(1);
}

.das-footer__contact-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.08) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.das-footer__contact-item:hover .das-footer__contact-icon {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  transform: scale(1.1) rotate(5deg);
}

.das-footer__contact-icon i {
  font-size: 16px;
  color: #F97316;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.das-footer__contact-item:hover .das-footer__contact-icon i {
  color: #ffffff;
  transform: scale(1.1);
}

.das-footer__contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.das-footer__contact-info a,
.das-footer__contact-info span {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  transition: var(--transition);
}

.das-footer__contact-info a:hover {
  color: #F97316;
  transform: translateX(2px);
}

.das-footer__bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 24px 0;
  position: relative;
}

.das-footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.das-footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.das-footer__copyright p {
  margin: 0;
}

.das-footer__copyright a {
  color: #F97316;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.das-footer__copyright a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F97316;
  transition: var(--transition);
}

.das-footer__copyright a:hover {
  color: var(--white);
}

.das-footer__copyright a:hover::after {
  width: 100%;
}

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

  .das-footer__brand {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .das-footer__desc {
    max-width: 100%;
  }

  .das-footer__column {
    margin-bottom: 40px;
  }

  .das-footer__contact-item {
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .das-footer__top {
    padding: 50px 0 40px;
  }

  .das-footer__logo img {
    max-height: 42px;
  }

  .das-footer__desc {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .das-footer__social-link {
    width: 38px;
    height: 38px;
  }

  .das-footer__social-link i {
    font-size: 14px;
  }

  .das-footer__title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .das-footer__links a {
    font-size: 13px;
  }

  .das-footer__contact-item {
    padding: 10px;
    gap: 12px;
  }

  .das-footer__contact-icon {
    width: 36px;
    height: 36px;
  }

  .das-footer__contact-icon i {
    font-size: 14px;
  }

  .das-footer__contact-info a,
  .das-footer__contact-info span {
    font-size: 13px;
  }

  .das-footer__bottom {
    padding: 20px 0;
  }

  .das-footer__copyright {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .das-footer__top {
    padding: 40px 0 30px;
  }

  .das-footer__logo img {
    max-height: 38px;
  }

  .das-footer__social {
    gap: 10px;
  }

  .das-footer__social-link {
    width: 36px;
    height: 36px;
  }

  .das-footer__contact-icon {
    width: 32px;
    height: 32px;
  }

  .das-footer__contact-icon i {
    font-size: 12px;
  }
}



.form-call-wrapper {
    font-style: normal;
    text-transform: none;
    word-spacing: normal;
    letter-spacing: normal;
    display: block;
    background: none;
    border: 0;
    border-radius: 0;
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none;
    font-style: normal;
    text-transform: none;
    height: auto;
    width: auto;
    max-width: none;
    max-height: none;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    outline: 0;
    overflow: visible;
    text-decoration: none;
    vertical-align: top;
    word-spacing: normal;
    letter-spacing: normal
}

.form-call-wrapper * {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
    color: #505050
}

.form-call-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 6.25px;
    line-height: 50px;
    -webkit-font-smoothing: antialiased;
    z-index: 1000;
    cursor: pointer
}

.whatsApp {
    right: 100px
}

.whatsApp:before {
    border-color: #25d366!important
}

.whatsApp i {
    color: #fff!important
}

.whatsApp:after {
    background: #25d366!important
}

.whatsApp .form-call-btn {
    background-color: #25d366!important
}

.form-call-wrapper:after,.form-call-wrapper:before {
    content: "";
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 9;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.form-call-wrapper:after {
    background: #ddd;
    -webkit-animation: lexprofitBackAnim 3s linear infinite;
    animation: lexprofitBackAnim 3s linear infinite
}

.form-call-wrapper:before {
    border: 1px solid #ddd;
    -webkit-animation: lexprofitBorderAnim 3s -0.5s linear infinite;
    animation: lexprofitBorderAnim 3s -0.5s linear infinite
}

.form-call-wrapper .form-call-btn {
    z-index: 10;
    position: absolute;
    background-color: #ccc;
    border-radius: 100%;
    width: 100%;
    height: 100%
}

.form-call-wrapper .form-call-btn .form-call-phone-icon {
    font-family: Flaticon-call-button;
    font-size: 40px;
    font-style: normal;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.form-call-wrapper .form-call-btn .form-call-phone-icon:before {
    content: "";
    color: #888
}

.form-call-wrapper:hover .form-call-btn {
    background-color: #bbb
}

.form-call-wrapper:hover:after {
    background-color: #aaa
}

.form-call-wrapper:hover:before {
    border-color: #aaa
}

.form-call-wrapper:hover .form-call-btn {
    -webkit-animation: lexprofitBoundingAnim 1s linear infinite;
    animation: lexprofitBoundingAnim 1s linear infinite
}

@-webkit-keyframes lexprofitBackAnim {
    0% {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7)
    }

    25% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    65% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2);
        opacity: 0.7
    }

    to {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7);
        opacity: 0
    }
}

@keyframes lexprofitBackAnim {
    0% {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7)
    }

    25% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    65% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2);
        opacity: 0.7
    }

    to {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7);
        opacity: 0
    }
}

@-webkit-keyframes lexprofitBorderAnim {
    0% {
        -webkit-transform: scaleX(1) scaleY(1);
        transform: scaleX(1) scaleY(1)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    to {
        -webkit-transform: scaleX(2) scaleY(2);
        transform: scaleX(2) scaleY(2);
        opacity: 0
    }
}

@keyframes lexprofitBorderAnim {
    0% {
        -webkit-transform: scaleX(1) scaleY(1);
        transform: scaleX(1) scaleY(1)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    to {
        -webkit-transform: scaleX(2) scaleY(2);
        transform: scaleX(2) scaleY(2);
        opacity: 0
    }
}

@-webkit-keyframes lexprofitBoundingAnim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    15% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    30% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    45% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    60% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes lexprofitBoundingAnim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    15% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    30% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    45% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    60% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}
