html {
  scroll-padding-top: 3rem;
}

footer {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%) !important;
}

.center {
  align-items: center;
}

.logo-svg {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo-svg:hover {
  transform: scale(1.05);
}

.hover-link {
  transition: all 0.3s ease;
  position: relative;
}

.hover-link:hover {
  color: #007bff !important;
  transform: translateX(5px);
}

.hover-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #007bff;
  transition: width 0.3s ease;
}

.hover-link:hover::after {
  width: 100%;
}

.social-icon {
  transition: all 0.3s ease;
  padding: 8px;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: white !important;
}

@media (max-width: 768px) {
  footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .social-icon {
    padding: 6px;
  }

  .social-icon i {
    font-size: 1.2rem !important;
  }
}

footer .row>div {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  filter: brightness(0) saturate(100%) invert(32%) sepia(0%) saturate(7462%) hue-rotate(188deg) brightness(92%) contrast(85%);
  transition: filter 0.3s ease;
  cursor: pointer;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.1);
}

.logo-link:hover .brand-logo {
  filter: brightness(0) saturate(100%) invert(32%) sepia(0%) saturate(7462%) hue-rotate(188deg) brightness(92%) contrast(85%);
}

@media (max-width: 768px) {
  .brand-logo {
    height: 50px;
  }

  .logo-link {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    height: 40px;
  }
}

.brands .col-6,
.brands .col-md-2 {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.brands .col-6:nth-child(1) {
  animation-delay: 0.1s;
}

.brands .col-6:nth-child(2) {
  animation-delay: 0.2s;
}

.brands .col-6:nth-child(3) {
  animation-delay: 0.3s;
}

.brands .col-6:nth-child(4) {
  animation-delay: 0.4s;
}

.brands .col-6:nth-child(5) {
  animation-delay: 0.5s;
}

.brands .col-6:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brands {
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.hero-section {
  height: 60vh;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

.hero-section .overlay {
  z-index: 1;
  transition: background-color 0.3s ease;
}

.hero-section .container {
  z-index: 2;
  position: relative;
}

.dynamic-text {
  display: inline-block;
  position: relative;
  width: 220px;
  white-space: nowrap;
  text-align: left;
  color: #00d4ff;
  font-weight: 700;
}

@keyframes flyInDown {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }

  15% {
    opacity: 1;
    transform: translateY(0);
  }

  85% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(60px);
  }
}

.dynamic-text.animate {
  animation: flyInDown 3s ease-in-out forwards;
}

@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .hero-section h1 {
    font-size: 2.2rem !important;
  }

  .hero-section .lead {
    font-size: 1.1rem !important;
  }

  .dynamic-text {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.8rem !important;
  }

  .hero-section .lead {
    font-size: 1rem !important;
  }

  .hero-form .form-control,
  .hero-form .btn {
    width: 80%;
  }

  .dynamic-text {
    text-align: center;
  }
}

.hero-section .container>.row {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flyIn {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flyOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(60px);
  }
}

.dynamic-text.animate-in {
  animation: flyIn 0.8s ease-out forwards;
}

.dynamic-text.animate-out {
  animation: flyOut 0.8s ease-in forwards;
}

.dynamic-text.animate {
  animation: flyInDown 3s ease-in-out forwards;
}

.contact-section {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  color: white;
  padding: 80px 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  color: #333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

@media (min-width: 768px) {
  .contact-card {
    padding-bottom: 10px;
  }
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.section-title {
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.payment-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-icon {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.payment-icon:hover {
  border-color: #667eea;
  transform: scale(1.05);
}

.contact-item {
  align-items: center;
  padding: 0px 0;
}

.contact-item i {
  color: #667eea;
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0px 0;
  border-bottom: 1px solid #eee;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 500;
}

.hours-time {
  color: #666;
}

.contact-navbar {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 0px 0;
}

.contact-navbar .navbar-nav {
  gap: 2rem;
}

.contact-navbar .nav-link {
  color: #495057;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-navbar .nav-link:hover {
  color: #0d6efd;
}

.contact-navbar .nav-link i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-navbar .navbar-nav {
    justify-content: center;
    gap: 0;
  }
}

.main-navbar {
  transition: all 0.3s ease;
  z-index: 1030;
}

.main-navbar.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body.navbar-sticky {
  padding-top: 56px;
}

@media (min-width: 992px) {
  body.navbar-sticky {
    padding-top: 56px;
  }
}

.advantages-section {
  padding: 80px 0;
  color: white;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 10px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.advantage-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
  display: block;
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.advantage-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.section-title2 {
  text-align: center;
  margin-bottom: 60px;
}

.section-title2 h2 {
  margin-bottom: 15px;
}

.section-title2 p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 0;
  }

  .advantage-card {
    margin-bottom: 10px;
  }
}
.apple-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.apple-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}