svg .B {
  fill: #ffd800;
}

svg .D {
  fill: #d71920;
}

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

/* Root Variables */
:root {
  --primary-yellow: #FDB913;
  --primary-yellow-hover: #E6A800;
  --dark-gray: #2D2D2D;
  --white: #FFFFFF;
  --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);
}

/* Global Font Family */
body {
  font-family: 'Inter Tight', -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: linear-gradient(135deg, rgba(253, 185, 19, 0.12) 0%, rgba(253, 185, 19, 0.06) 100%);
  border-bottom: 2px solid rgba(253, 185, 19, 0.2);
  padding: 6px 0;
  font-size: 12px;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(253, 185, 19, 0.1);
}

.das-topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, rgba(253, 185, 19, 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.6);
  backdrop-filter: blur(5px);
  border: none;
}

.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: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(253, 185, 19, 0.2);
}

.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: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 6px;
  border: 1px solid rgba(253, 185, 19, 0.2);
}

.das-topbar__social-link:hover {
  opacity: 1;
  background: var(--primary-yellow);
  color: var(--dark-gray);
  border-color: var(--primary-yellow);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(253, 185, 19, 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: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  backdrop-filter: blur(10px);
}

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

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

/* Navigation Styles - Modern & Clean (menü sağa yaslı) */
.das-header__nav {
  flex: 0 1 auto;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  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;
}

/* Aracını Değerle en sağda, diğer menüden hafif ayrık */
.das-header__nav .nav__item--primary {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(45, 45, 45, 0.1);
}

.das-header__nav .nav__link {
    display: inline-block;
    padding: 10px 18px;
    color: var(--dark-gray);
    text-decoration: none;
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

/* Premium hover: altında hafif düz çizgi */
.das-header__nav .nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 1.5px;
  background: var(--dark-gray);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

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

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

/* Menüde "Aracını Değerle" – logodaki sarı + siyah, belirgin */
.das-header__nav .nav__link--primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-yellow);
  color: var(--dark-gray);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border: 2px solid var(--primary-yellow);
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(253, 185, 19, 0.35);
}
.das-header__nav .nav__link--primary::before,
.das-header__nav .nav__link--primary::after {
  display: none;
}
.das-header__nav .nav__link--primary .nav__link-icon {
  font-size: 1.15em;
  color: var(--dark-gray);
  opacity: 1;
  transition: var(--transition);
}
.das-header__nav .nav__link--primary:hover {
  background: var(--primary-yellow-hover);
  color: var(--dark-gray);
  border-color: var(--primary-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(253, 185, 19, 0.45);
}
.das-header__nav .nav__link--primary:hover .nav__link-icon {
  transform: translateX(2px);
  color: var(--dark-gray);
  opacity: 1;
}

/* CTA Button Styles - Premium & Elegant (artık menü içinde kullanılmıyor, referans için bırakıldı) */
.das-header .header__cta {
  flex: 0 0 auto;
}

.das-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFC843 100%);
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(253, 185, 19, 0.35);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.das-header__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  transition: var(--transition);
}

.das-header__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-yellow-hover) 0%, #D99A00 100%);
  opacity: 0;
  transition: var(--transition);
}

.das-header__cta:hover::before {
  left: 100%;
}

.das-header__cta:hover::after {
  opacity: 1;
}

.das-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 185, 19, 0.45);
  color: var(--white);
}

.das-header__cta:active {
  transform: translateY(0);
}

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

.das-header__cta:hover i {
  transform: rotate(5deg) scale(1.1);
  color: var(--white);
}

.das-header__cta span {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.das-header__cta:hover span {
  color: var(--white);
}

/* 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: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  border-radius: 10px;
  transition: var(--transition);
}

.das-header .header__mobile-toggle:hover {
  background: rgba(45, 45, 45, 0.1);
}

.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(253, 185, 19, 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;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
  flex-shrink: 0;
  background: rgba(253, 185, 19, 0.03);
}

.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(45, 45, 45, 0.05);
  border: none;
  color: var(--dark-gray);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 10px;
}

.mobile-menu__close:hover {
  background: rgba(253, 185, 19, 0.1);
  color: var(--primary-yellow);
  transform: rotate(90deg);
}

.mobile-menu__nav {
  flex: 1 1 auto;
  padding: 32px 0;
  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;
  padding: 16px 20px;
  color: var(--dark-gray);
  text-decoration: none;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: var(--transition);
  position: relative;
  border-radius: 12px;
  background: transparent;
}

.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: var(--dark-gray);
  background: rgba(253, 185, 19, 0.08);
  padding-left: 24px;
  transform: translateX(4px);
  filter: brightness(1.02);
}

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

/* Mobil menüde "Aracını Değerle" en altta – siyah buton */
.mobile-nav__item--primary {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(45, 45, 45, 0.08);
}

.mobile-nav__link--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-yellow) !important;
  color: var(--dark-gray) !important;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 2px solid var(--primary-yellow) !important;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(253, 185, 19, 0.35) !important;
}
.mobile-nav__link--primary::before {
  display: none;
}
.mobile-nav__link--primary .nav__link-icon {
  font-size: 1.2em;
  color: var(--dark-gray);
  opacity: 1;
}
.mobile-nav__link--primary:hover,
.mobile-nav__link--primary:active {
  background: var(--primary-yellow-hover) !important;
  color: var(--dark-gray) !important;
  border-color: var(--primary-yellow-hover) !important;
  box-shadow: 0 4px 14px rgba(253, 185, 19, 0.45) !important;
  transform: translateY(-1px);
}
.mobile-nav__link--primary:hover .nav__link-icon,
.mobile-nav__link--primary:active .nav__link-icon {
  color: var(--dark-gray);
}

/* 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 - Light & Ferah
   ============================================ */

.das-footer {
  background: #f8f9fa;
  color: #495057;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.02);
}

.das-footer__top {
  padding: 4.5rem 0 4rem;
  position: relative;
}

.das-footer__top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.06) 15%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.06) 85%, transparent 100%);
}

.das-footer__brand {
  padding-right: 1.5rem;
}

.das-footer__logo {
  margin-bottom: 1.25rem;
  display: inline-block;
  transition: transform 0.25s ease;
}

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

.das-footer__logo img {
  max-height: 52px;
  width: auto;
  height: auto;
}

.das-footer__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #6c757d;
  margin-bottom: 2rem;
  max-width: 280px;
}

.das-footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.das-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  color: #6c757d;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.das-footer__social-link:hover {
  color: var(--dark-gray);
  background: #fff;
  border-color: rgba(253, 185, 19, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.das-footer__social-link i {
  font-size: 1.125rem;
  transition: transform 0.25s ease;
}

.das-footer__social-link:hover i {
  transform: scale(1.08);
}

.das-footer__column {
  margin-bottom: 0;
}

.das-footer__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.das-footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: rgba(253, 185, 19, 0.6);
  border-radius: 1px;
}

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

.das-footer__links li {
  margin-bottom: 0.75rem;
}

.das-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
  padding: 0.25rem 0;
}

.das-footer__links a i {
  font-size: 0.625rem;
  color: rgba(253, 185, 19, 0.8);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-4px);
}

.das-footer__links a:hover {
  color: #2D2D2D;
  padding-left: 4px;
}

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

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

.das-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.das-footer__contact-item:hover {
  border-color: rgba(253, 185, 19, 0.2);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.das-footer__contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(253, 185, 19, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.das-footer__contact-item:hover .das-footer__contact-icon {
  background: rgba(253, 185, 19, 0.18);
}

.das-footer__contact-icon i {
  font-size: 1rem;
  color: #2D2D2D;
}

.das-footer__contact-info {
  flex: 1;
  min-width: 0;
}

.das-footer__contact-info a,
.das-footer__contact-info span {
  color: #495057;
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.das-footer__contact-info a:hover {
  color: var(--primary-yellow);
}

.das-footer__bottom {
  background: #fff;
  padding: 1.75rem 0;
}

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

.das-footer__copyright {
  font-size: 0.8125rem;
  color: #868e96;
}

.das-footer__copyright p {
  margin: 0;
}

.das-footer__copyright a {
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

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

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

  .das-footer__brand {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }

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

  .das-footer__column {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 767px) {
  .das-footer__top {
    padding: 3rem 0 2.5rem;
  }

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

  .das-footer__desc {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

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

  .das-footer__social-link i {
    font-size: 1rem;
  }

  .das-footer__title {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .das-footer__links a {
    font-size: 0.875rem;
  }

  .das-footer__contact-item {
    padding: 0.875rem 1rem;
    gap: 0.875rem;
  }

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

  .das-footer__contact-icon i {
    font-size: 0.9375rem;
  }

  .das-footer__contact-info a,
  .das-footer__contact-info span {
    font-size: 0.875rem;
  }

  .das-footer__bottom {
    padding: 1.5rem 0;
  }

  .das-footer__copyright {
    font-size: 0.75rem;
  }
}

@media (max-width: 575px) {
  .das-footer__top {
    padding: 2.5rem 0 2rem;
  }

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

  .das-footer__social {
    gap: 0.5rem;
  }

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

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

  .das-footer__contact-icon i {
    font-size: 0.875rem;
  }
}



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