

/* Car Service Specific Styles */


    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');



*{
  margin : 0;
  padding : 0;
}

:root {
  --violet: #3b254e;
  --violet-dark: #2a1839;
  --blue: #0057ff;
  --red: #cc2e2e;
  --black: #111111;
  --white: #ffffff;
  --gray: #f5f5f7;
  --success: #28a745;
  --warning: #ffc107;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* ====== HEADER SECTION ====== */
header {
  width: 90%;
  max-height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  margin: 0 auto;
  padding: 0 30px;
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 1003;
}

.logo img {
  width: 180px;
  height: 140px;
  border-radius: 0%;
  background: transparent;
}

header ul {
  display: flex;
  gap: 25px;
}

header ul li {
  list-style: none;
  text-transform: capitalize;
}

header ul a {
  position: relative;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  padding-bottom: 5px;
  font-weight: 600;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header ul i {
  margin-right: 5px;
}

header ul a i {
  margin-left: 5px;
}

header ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: rgb(126, 24, 24);
  transition: width 0.6s ease;
}

header ul li a:hover::after {
  width: 100%;
}

/* ====== DROPDOWN MENU ====== */
header ul li ul {
  position: absolute;
  top: 100px;
  background: rgba(255, 255, 255, 0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
}

header ul li ul li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
  width: 100%;
}

header ul li ul li a {
  padding: 12px 20px;
  color: #000;
}

header ul li ul li:hover {
  background: rgb(100, 98, 98);
  color: #fff;
  padding: 10px;
}

header ul li ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #fff;
  transition: width 0.6s ease;
}

header ul li.show ul,
header ul li:hover ul {
  display: flex;
}

/* ====== HAMBURGER MENU ====== */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ====== HEADER RESPONSIVE ====== */
@media (min-width: 992px) {
  .hamburger {
    display: none !important;
  }
}

@media (max-width: 991px) {
  header {
    padding: 10px 20px;
    width: 95%;
    border-radius: 40px 40px 0 0;
  }
  
  .logo img {
    width: 120px;
    height: 100px;
  }
  
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    flex-direction: column;
    padding: 15px;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .menu.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    display: flex !important;
  }
  
  .menu li {
    margin: 5px 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  header {
    padding: 8px 15px;
    width: 98%;
    top: 10px;
    border-radius: 40px 40px 0 0;
  }
  
  .logo img {
    width: 100px;
    height: 80px;
  }
  
  .hamburger {
    gap: 3px;
  }
  
  .hamburger span {
    width: 18px;
    height: 2px;
  }
  
  .menu {
    padding: 10px;
  }
}

/* Hero Section */
.hero-tl {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 80px;
  min-height: 100vh;
  top: 0;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

#heroCarousel .carousel-control-prev {
  left: 30px;
}

#heroCarousel .carousel-control-next {
  right: 30px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  background: rgba(0, 87, 255, 0.8);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  width: 25px;
  height: 25px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 80px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(17, 17, 17, 0.45), rgba(17, 17, 17, 0.55));
}

.hero-tl .gradien {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 87, 255, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.2), rgba(59, 130, 246, 0.2));
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 87, 255, 0.2);
}

.hero-tl h1 {
  font-family: 'Laviossa', serif;
}

/* Buttons */
.btn-blue {
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-blue:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 87, 255, 0.4);
  color: var(--white);
}

.btn-red {
  background: linear-gradient(135deg, var(--red), #ef4444);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-red:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(204, 46, 46, 0.4);
  color: var(--white);
}

/* Service Cards */
.service-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 37, 78, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card-compact {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: white;
  backdrop-filter: blur(5px);
}

.service-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 87, 255, 0.15);
}

/* Service Image Styles */
.service-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.service-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(145deg, #667eea, #764ba2);
  padding: 3px;
  width: 100%;
  max-width: 600px;
}

.service-image-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #0057ff, #cc2e2e, #28a745, #ffc107);
  border-radius: 25px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.02); }
}

.service-image-wrapper:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.08);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-hero-image {
  width: 100%;
  height: 500px;
  display: block;
  border-radius: 22px;
  transition: all 0.4s ease;
  /*filter: brightness(1.1) contrast(1.1);*/
}

.service-image-wrapper:hover .service-hero-image {
  filter: brightness(1.2) contrast(1.2) saturate(1.1);
}

.image-overlay {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: linear-gradient(135deg, 
    rgba(0, 87, 255, 0.9) 0%, 
    rgba(102, 126, 234, 0.8) 50%, 
    rgba(204, 46, 46, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 22px;
  backdrop-filter: blur(2px);
}

.service-image-wrapper:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(30px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-image-wrapper:hover .overlay-content {
  transform: translateY(0) scale(1);
}

.overlay-content i {
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.overlay-content h4 {
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 87, 255, 0.15);
  border-color: rgba(0, 87, 255, 0.2);
}

.service-icon-house {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.1), rgba(0, 87, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
  font-size: 1.8rem;
}

.service-card h5 {
  color: var(--black);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-card ul li {
  padding: 0.25rem 0;
  color: #6b7280;
}

.service-card ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Property Cards (Car Cards) */
.property-card {
  background: white;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.property-card .carousel {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 87, 255, 0.15);
}

.property-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 5;
  pointer-events: none;
}

.property-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  z-index: 5;
  pointer-events: none;
}

.property-content {
  padding: 1.5rem;
}

.property-content h5 {
  color: var(--black);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.property-features {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

/* Car Basic Info */
.car-basic-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1rem 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #374151;
}

.info-item i {
  color: var(--blue);
  width: 16px;
}

/* Modal Enhancements */
.modal-xl .carousel-item img {
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Image Gallery Modal */
#imageGalleryModal .modal-content {
  background: rgba(0, 0, 0, 0.9);
}

#imageGalleryModal .carousel-item {
  text-align: center;
}

#imageGalleryModal .carousel-item img,
#imageGalleryModal .carousel-item video {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}

/* Gallery Navigation Arrows */
#imageGalleryModal .carousel-control-prev,
#imageGalleryModal .carousel-control-next {
  width: 5%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

#imageGalleryModal .carousel-control-prev:hover,
#imageGalleryModal .carousel-control-next:hover {
  opacity: 1;
}

#imageGalleryModal .carousel-control-prev-icon,
#imageGalleryModal .carousel-control-next-icon {
  background-color: rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 20px;
}

/* Gallery Indicators */
#imageGalleryModal .carousel-indicators {
  margin-bottom: 20px;
}

#imageGalleryModal .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.5);
  border: none;
}

#imageGalleryModal .carousel-indicators button.active {
  background-color: white;
}

.property-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}



/* Continuous Scroll Styles */
.continuous-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.continuous-scroll-track {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.continuous-scroll-track::-webkit-scrollbar {
  display: none;
}

.continuous-scroll-item {
  flex: 0 0 280px;
  min-width: 280px;
  pointer-events: auto;
}

.continuous-scroll-item .carousel {
  pointer-events: auto;
}

/* Navigation Buttons */
.scroll-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.scroll-nav-btn:hover {
  background: rgba(0, 87, 255, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.scroll-prev {
  left: 10px;
}

.scroll-next {
  right: 10px;
}

/* Carousel Styles for individual car cards */
.carousel {
  position: relative;
}

.carousel-indicators {
  bottom: 10px;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 3px;
}

.property-card .carousel-control-prev,
.property-card .carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7) !important;
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer !important;
  pointer-events: all !important;
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.property-card .carousel-control-prev:hover,
.property-card .carousel-control-next:hover {
  opacity: 1;
  background: rgba(0, 87, 255, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.property-card .carousel-control-prev {
  left: 10px;
}

.property-card .carousel-control-next {
  right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 15px;
  height: 15px;
}

/* Secondary Header */
.secondary-header-content {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.secondary-header-content .btn {
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.secondary-header-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Subtitle */
.subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue);
  font-weight: 600;
}

/* Footer */
.footer {
  background: #fff;
  color: #000;
  padding: 70px 5% 35px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 240px;
}

.footer h3,
.footer h4 {
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: #ff6f61;
}

.footer-contact a {
  text-decoration: none;
  color: var(--red);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
}

.footer-contact .mail-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  line-height: 1.6;
}

.footer-contact .whatsapp,
.footer-contact .mailing,
.footer-contact .location {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-socials a img {
  width: 30px;
  height: 30px;
}

.footer .logo img {
  width: 160px;
  height: 130px;
}

.newsletter {
  background: #111;
  padding: 35px 20px;
  text-align: center;
  border-radius: 6px;
}

.newsletter h4 {
  color: #fff;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  outline: none;
  width: 260px;
  max-width: 100%;
}

.newsletter-form button {
  padding: 12px 24px;
  border: none;
  background: #ff6f61;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #ff3c2f;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 13px;
  color: #777;
}

.eleven-space {
  height: 2rem;
}

/* Statistics Section */
.stat-item {
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.avatar {
  flex-shrink: 0;
}

/* Feature Items */
.feature-item {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-icon {
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

/* Back to Top Button */
.btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1050;
  box-shadow: 0 4px 15px rgba(204, 46, 46, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  background-color: var(--violet);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 37, 78, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-tl {
    text-align: center;
    padding-top: calc(120px + 1.5cm);
    min-height: 70vh;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .service-card {
    padding: 20px;
  }

  .btn-blue,
  .btn-red {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-container {
    flex-direction: column;
    text-align: left;
  }

  .footer .logo img {
    width: 130px;
    height: 110px;
  }

  .property-card {
    margin-bottom: 20px;
  }
  
  /* Mobile continuous scroll adjustments */
  .continuous-scroll-item {
    flex: 0 0 250px;
    min-width: 250px;
  }
  
  .continuous-scroll-track {
    gap: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .hero-tl {
    padding-top: calc(100px + 1cm);
  }

  .service-card {
    padding: 20px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .footer .logo img {
    width: 110px;
    height: 90px;
  }
  
  /* Small mobile continuous scroll adjustments */
  .continuous-scroll-item {
    flex: 0 0 220px;
    min-width: 220px;
  }
  
  .continuous-scroll-track {
    gap: 10px;
    padding: 0 10px;
  }
}