@charset "UTF-8";
.top-contact-bar {
  background-color: #F82027;
  padding: 8px 0;
}
.top-contact-bar .top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact-bar .contact-info {
  display: flex;
  gap: 40px;
}
.top-contact-bar .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.top-contact-bar .contact-info .contact-item .contact-icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}
.top-contact-bar .contact-info .contact-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-contact-bar .contact-info .contact-item a:hover {
  opacity: 0.8;
}
.top-contact-bar .social-media {
  display: flex;
  gap: 15px;
}
.top-contact-bar .social-media .social-link .social-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1200px) {
  .top-contact-bar .social-media {
    display: none;
  }
  .top-contact-bar .contact-info {
    justify-content: space-between;
    width: 100%;
  }
}
.site-header {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.site-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .header-content .site-branding {
  flex: 0 0 auto;
}
.site-header .header-content .site-branding .custom-logo {
  max-height: 50px;
  width: auto;
  height: 35px;
}
.site-header .header-content .site-branding .site-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.site-header .header-content .site-branding .site-title:hover {
  color: #007cba;
}
.site-header .header-content .main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-header .header-content .main-navigation #primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-header .header-content .main-navigation #primary-menu .nav-item {
  position: relative;
  margin: 0 25px;
}
.site-header .header-content .main-navigation #primary-menu .nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  transition: all 0.3s ease;
  position: relative;
}
.site-header .header-content .main-navigation #primary-menu .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F82027;
  transition: width 0.3s ease;
}
.site-header .header-content .main-navigation #primary-menu .nav-item .nav-link:hover {
  color: #F82027;
}
.site-header .header-content .main-navigation #primary-menu .nav-item .nav-link:hover::after {
  width: 100%;
}
.site-header .header-content .main-navigation #primary-menu .nav-item .nav-link .chevron-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children:hover .nav-link {
  color: #F82027;
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children:hover .nav-link::after {
  width: 100%;
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children:hover .nav-link .chevron-icon {
  transform: rotate(180deg);
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children .dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children .dropdown-menu .dropdown-item {
  margin: 0;
  list-style: none;
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children .dropdown-menu .dropdown-item:first-child a {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children .dropdown-menu .dropdown-item:last-child a {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children .dropdown-menu .dropdown-item a {
  display: block;
  padding: 15px 0px;
  color: #666;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children .dropdown-menu .dropdown-item a:hover {
  background-color: #F82027;
  color: #fff;
}
.site-header .header-content .main-navigation #primary-menu .nav-item.menu-item-has-children .dropdown-menu .dropdown-item:last-child a {
  border-bottom: none;
}
.site-header .header-content .header-buttons {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-header .header-content .header-buttons .search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  color: #333;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .header-content .header-buttons .search-toggle:hover {
  background-color: #f8f9fa;
  color: #F82027;
}
.site-header .header-content .header-buttons .search-toggle svg {
  width: 20px;
  height: 20px;
}
.site-header .header-content .header-buttons .btn-quote {
  padding: 10px 20px;
  background-color: #F82027;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.site-header .header-content .header-buttons .btn-quote:hover {
  background-color: #E01E24;
}
.site-header .header-content .mobile-actions {
  display: none;
  align-items: center;
  gap: 15px;
}
.site-header .header-content .mobile-actions .search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  color: #333;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .header-content .mobile-actions .search-toggle:hover {
  background-color: #f8f9fa;
  color: #F82027;
}
.site-header .header-content .mobile-actions .search-toggle svg {
  width: 20px;
  height: 20px;
}
.site-header .header-content .mobile-actions .mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}
.site-header .header-content .mobile-actions .mobile-menu-toggle .hamburger-icon,
.site-header .header-content .mobile-actions .mobile-menu-toggle .close-icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.site-header .mobile-menu {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 20px 0 0 0;
  margin-top: 20px;
  transform: translateY(-50px) scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.site-header .mobile-menu[style*=block] {
  transform: translateY(0) scaleY(1);
  opacity: 1;
}
.site-header .mobile-menu #mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .mobile-menu #mobile-nav li {
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}
.site-header .mobile-menu #mobile-nav li:last-child {
  border-bottom: none;
}
.site-header .mobile-menu #mobile-nav li a {
  display: block;
  padding: 15px 0px;
  color: #333;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  position: relative;
}
.site-header .mobile-menu #mobile-nav li a:hover {
  background-color: #f8f9fa;
  color: #F82027;
}
.site-header .mobile-menu #mobile-nav li.menu-item-has-children > a {
  padding-right: 50px;
}
.site-header .mobile-menu #mobile-nav li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../../../wp-content/uploads/chevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.site-header .mobile-menu #mobile-nav li.menu-item-has-children > a.submenu-open::after {
  transform: translateY(-50%) rotate(180deg);
}
.site-header .mobile-menu #mobile-nav li.menu-item-has-children .sub-menu {
  max-height: 0;
  overflow: hidden;
  background-color: #f8f9fa;
  transition: max-height 0.3s ease;
}
.site-header .mobile-menu #mobile-nav li.menu-item-has-children .sub-menu.submenu-open {
  max-height: 500px;
}
.site-header .mobile-menu #mobile-nav li.menu-item-has-children .sub-menu li {
  border-bottom: none;
}
.site-header .mobile-menu #mobile-nav li.menu-item-has-children .sub-menu li a {
  padding: 12px 20px 12px 40px;
  font-size: 14px;
  color: #666;
}
.site-header .mobile-menu #mobile-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: #e9ecef;
  color: #F82027;
}
.site-header .mobile-menu .mobile-menu-button {
  padding: 20px 0 0 0;
  text-align: center;
}
.site-header .mobile-menu .mobile-menu-button .btn-quote-mobile {
  display: inline-block;
  padding: 12px 24px;
  background-color: #F82027;
  color: #fff;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
}
.site-header .mobile-menu .mobile-menu-button .btn-quote-mobile:hover {
  background-color: #E01E24;
}

@media (max-width: 1200px) {
  .site-header .header-content .main-navigation {
    display: none;
  }
  .site-header .header-content .header-buttons {
    display: none;
  }
  .site-header .header-content .mobile-actions {
    display: flex;
  }
}
@media (max-width: 768px) {
  .top-contact-bar .contact-info .contact-item {
    font-size: 12px !important;
  }
}
.hero-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
}
.hero-section .hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-section .hero-overlay .hero-content {
  text-align: center;
  padding: 60px 0;
}
.hero-section .hero-overlay .hero-content .hero-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  animation: fadeInUp 1s ease-out;
  line-height: 1.2;
}
.hero-section .hero-overlay .hero-content .hero-title .cursor {
  color: #fff;
  animation: blink 1s infinite;
  font-weight: 400;
  font-size: 0.9em;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@media (max-width: 1200px) {
  .hero-section .hero-overlay .hero-content .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .hero-section {
    height: 40vh;
  }
  .hero-section .hero-overlay .hero-content {
    padding: 40px 0;
  }
  .hero-section .hero-overlay .hero-content .hero-title {
    font-size: 40px;
  }
}
/* Hizmetler Section */
.services-section {
  margin: 80px 0;
  padding: 0;
}
.services-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-section .section-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: #000;
  margin: 0 0 20px 0;
}
.services-section .section-subtitle {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  color: #666;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #e5e5e5;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #F82027, #E01E24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s ease;
}
.service-card .service-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2c3e50;
  margin: 0 0 15px 0;
}
.service-card .service-description {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .services-section .section-title {
    font-size: 36px;
  }
}
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .services-section {
    margin: 60px 0;
  }
  .services-section .section-title {
    font-size: 32px;
  }
  .services-section .section-subtitle {
    font-size: 16px;
  }
  .services-section .section-header {
    margin-bottom: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-card {
    padding: 30px 20px;
  }
}
/* Hakkımızda Section */
.about-section {
  margin: 80px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: #000;
  margin: 0 0 40px 0;
}

.about-text {
  text-align: left;
}
.about-text p {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 25px 0;
}
.about-text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .about-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .about-section {
    margin: 60px 0;
  }
  .about-content {
    max-width: 100%;
    padding: 0 15px;
  }
  .about-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .about-text p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
/* Nasıl Çalışır */
.how-it-works {
  margin: 80px 0;
  text-align: center;
}
.how-it-works .section-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: #000;
  margin: 0 0 60px 0;
}
.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.how-it-works .step {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
  position: relative;
  overflow: hidden;
}
.how-it-works .step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.how-it-works .step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F82027, #E01E24);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 25px;
}
.how-it-works .step .step-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2c3e50;
  margin: 0 0 15px 0;
}
.how-it-works .step .step-desc {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .how-it-works .section-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .how-it-works {
    margin: 60px 0;
  }
  .how-it-works .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .how-it-works .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* İletişim */
.contact-section {
  margin: 80px 0;
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.contact-section .section-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: #000;
  margin: 0 0 50px 0;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-section .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
  position: relative;
  overflow: hidden;
}
.contact-section .contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-card .contact-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 25px;
  display: block;
  filter: brightness(0);
}
.contact-section .contact-card h3 {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #2c3e50;
  margin: 0 0 10px 0;
}
.contact-section .contact-card a {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  color: #F82027;
  text-decoration: none;
  font-weight: 500;
}
.contact-section .contact-card a:hover {
  text-decoration: underline;
}
.contact-section .contact-card p {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.contact-section .contact-map {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1023px) {
  .contact-section .section-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    margin: 60px 0;
  }
  .contact-section .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-section .contact-map {
    height: 300px;
  }
}
/* Footer */
.footer {
  background: #2c3e50;
  padding: 40px 0;
  margin-top: 80px;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .footer-nav a {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}
.footer .footer-nav a:hover {
  color: #fff;
}
.footer .footer-address {
  text-align: right;
}
.footer .footer-address p {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer .footer-copyright {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-copyright p {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
    margin-top: 60px;
  }
  .footer .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer .footer-nav a {
    display: inline-block;
    margin: 5px 10px;
  }
  .footer .footer-address {
    text-align: center;
  }
  .footer .footer-address p {
    font-size: 12px;
  }
  .footer .footer-copyright p {
    font-size: 12px;
  }
}
/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.floating-buttons .whatsapp-btn,
.floating-buttons .phone-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.floating-buttons .whatsapp-btn::before,
.floating-buttons .phone-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floating-buttons .whatsapp-btn img,
.floating-buttons .phone-btn img {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.floating-buttons .whatsapp-btn:hover,
.floating-buttons .phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.floating-buttons .whatsapp-btn:hover::before,
.floating-buttons .phone-btn:hover::before {
  opacity: 0.1;
}
.floating-buttons .whatsapp-btn:hover img,
.floating-buttons .phone-btn:hover img {
  transform: scale(1.1);
}
.floating-buttons .whatsapp-btn:active,
.floating-buttons .phone-btn:active {
  transform: translateY(-1px);
}
.floating-buttons .whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.floating-buttons .whatsapp-btn::before {
  background: #fff;
}
.floating-buttons .whatsapp-btn img {
  filter: brightness(0) invert(1);
}
.floating-buttons .whatsapp-btn:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.floating-buttons .phone-btn {
  background: linear-gradient(135deg, #F82027 0%, #E01E24 100%);
}
.floating-buttons .phone-btn::before {
  background: #fff;
}
.floating-buttons .phone-btn img {
  filter: brightness(0) invert(1);
}
.floating-buttons .phone-btn:hover {
  box-shadow: 0 8px 25px rgba(248, 32, 39, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .floating-buttons {
    right: 15px;
    bottom: 15px;
    gap: 12px;
  }
  .floating-buttons .whatsapp-btn,
  .floating-buttons .phone-btn {
    width: 45px;
    height: 45px;
  }
  .floating-buttons .whatsapp-btn img,
  .floating-buttons .phone-btn img {
    width: 20px;
    height: 20px;
  }
}
/* Animation on page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.floating-buttons {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.whatsapp-btn {
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.phone-btn {
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

.container {
  max-width: 1365px;
  margin: 0 auto;
}

@media (min-width: 1200px) and (max-width: 1366px) {
  .container {
    padding: 0 50px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}/*# sourceMappingURL=style.css.map */