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: '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: 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: 'Mulish', -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: 'Mulish', -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 */
.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(253, 185, 19, 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 Styles - Premium & Elegant */
.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;
}

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

.mobile-menu__cta {
  padding: 24px;
  border-top: 1px solid rgba(45, 45, 45, 0.08);
  flex-shrink: 0;
  background: rgba(253, 185, 19, 0.03);
}

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

.mobile-cta-button::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);
}

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

.mobile-cta-button:hover {
  background: linear-gradient(135deg, var(--primary-yellow-hover) 0%, #D99A00 100%);
  box-shadow: 0 6px 20px rgba(253, 185, 19, 0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.mobile-cta-button i {
  font-size: 20px;
  transition: var(--transition);
}

.mobile-cta-button:hover i {
  transform: rotate(5deg) scale(1.1);
  color: var(--white);
}

/* 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, #1a1a1a 0%, #2D2D2D 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(253, 185, 19, 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.08);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(253, 185, 19, 0.2);
}

.das-footer__social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFC843 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: var(--dark-gray);
  border-color: var(--primary-yellow);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(253, 185, 19, 0.4);
}

.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, var(--primary-yellow) 0%, rgba(253, 185, 19, 0.5) 100%);
  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: var(--primary-yellow);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

.das-footer__links a:hover {
  color: var(--white);
  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: var(--primary-yellow);
  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(253, 185, 19, 0.15) 0%, rgba(253, 185, 19, 0.08) 100%);
  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, var(--primary-yellow) 0%, #FFC843 100%);
  transform: scale(1.1) rotate(5deg);
}

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

.das-footer__contact-item:hover .das-footer__contact-icon i {
  color: var(--dark-gray);
  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: var(--primary-yellow);
  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: var(--primary-yellow);
  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: var(--primary-yellow);
  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)
    }
}
