/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6; /* Improved typography */
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER STYLES ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  z-index: 1000;
  background: #000;
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

/* Header shrink effect on scroll */
.header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.4);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO SECTION ===== */
.logo {
  display: flex;
  margin: -1rem 0;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 4.25rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
}

.header.scrolled .logo-image {
  height: 3.5rem;
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d4af37;
}

/* ===== NAVIGATION MENU ===== */
.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* Gold underline animation on hover */
.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: #d4af37;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* ===== CTA BUTTONS ===== */
.header-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cta-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  min-height: 44px; /* Fixed minimum height for consistency */
}

.call-btn {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.whatsapp-btn {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}

#whatsappBtn {
  fill: currentColor;
}

.whatsapp-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
}

/* WhatsApp icon styling */
.whatsapp-icon {
  height: 2rem;
  fill: currentColor;
  flex-shrink: 0;
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate hamburger to X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 968px) {
  .header-container {
    padding: 0 1.5rem;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-menu.active {
    max-height: 300px;
  }

  .nav-menu li {
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .nav-menu li a::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Keep CTA buttons visible on mobile */
  .header-cta {
    gap: 0.5rem;
  }

  .cta-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .logo-text {
    display: none;
  }
}

@media (max-width: 640px) {
  .cta-btn span {
    display: none; /* Hide text on very small screens */
  }

  .cta-btn {
    padding: 0.6rem;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Make buttons perfectly round on mobile */
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== TEMPORARY PLACEHOLDER FOR DEMO ===== */
.placeholder-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #000);
}

.placeholder-content {
  text-align: center;
  padding: 2rem;
}

.placeholder-content h1 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.placeholder-content p {
  font-size: 1.2rem;
  color: #aaa;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 1rem 20px;
}

/* Background image with overlay */
.hero-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 50vh 0.5rem 0;
  animation: fadeInUp 1s ease-out;
}

@media (max-width: 480px) {
  .hero-content {
    padding: 5rem 0 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-headline {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0.5rem -1.25rem;
  margin-top: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  padding: 0;
}

.hero-headline span {
  color: #d4af37;
  display: inline-block;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 3rem;
  font-weight: 300;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 0.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-height: 60px;
}

/* Primary button - Call Now with gradient and bounce */
.hero-btn-primary {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
  animation: gentleBounce 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Shine effect */
.hero-btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.hero-btn-primary:hover::after {
  left: 100%;
}

@keyframes gentleBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.hero-btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
  animation: none; /* Stop bounce on hover */
}

/* Secondary button - WhatsApp outline style */
.hero-btn-secondary {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  animation: gentleGlow 3s ease-in-out infinite;
}

@keyframes gentleGlow {
  0%,
  100% {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.4);
  }
}

.hero-btn-secondary:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
  animation: none; /* Stop glow on hover */
}

.hero-btn svg {
  height: 2.5rem;
  fill: currentColor;
  flex-shrink: 0;
}

/* Emoji size matching for consistency */
.hero-btn-primary {
  font-size: 1.1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero {
    padding: 100px 2rem 15px;
  }

  .hero-content {
    padding: 50vh 2rem 0;
  }

  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-subheadline {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 1.5rem 15px;
  }

  .hero-headline {
    font-size: 1.3rem;
  }

  .hero-subheadline {
    font-size: 0.9rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 0.1rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 20px 2rem 40px;
  background: #0a0a0a;
  position: relative;
}

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

.services-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.services-title span {
  color: #d4af37;
}

.services-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 2rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Service card */
.service-card {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25); /* Enhanced shadow */
}

/* Card background with gradient overlay */
.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-bg {
  transform: scale(1.1);
}

/* Individual card backgrounds using SVG patterns */

.service-card-1 .service-card-bg {
  background-image: url("/images/locked-out.jpg");
  background-size: cover;
  background-position: center;
}

.service-card-2 .service-card-bg {
  background-image: url("/images/car-repair.jpg");
  background-size: cover;
  background-position: center;
}

.service-card-3 .service-card-bg {
  background-image: url("/images/key-duplication.jpg");
  background-size: cover;
  background-position: center;
}

.service-card-4 .service-card-bg {
  background-image: url("/images/emergency.jpg");
  background-size: cover;
  background-position: center;
}

/* Dark overlay on cards */
.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

/* Card content */
.service-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

/* --- SERVICE CARD ICONS (SVG) --- */
.service-card-icon {
  color: #d4af37; /* Set the icon color to gold */
}

.service-card-icon svg {
  width: 3rem; /* This is approx 3rem */
  height: 3rem;
  stroke: currentColor; /* Inherits the gold color from the parent */
  stroke-width: 1;
  fill: none;
}

#locked-out-svg {
  stroke-width: 0.5;
}

.service-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card-description {
  font-size: 1rem;
  color: #d4af37;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.service-card:hover .service-card-description {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 968px) {
  .services {
    padding: 15px 1.5rem 30px;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    height: 300px;
  }

  .service-card-title {
    font-size: 1.5rem;
  }

  .service-card-description {
    opacity: 1; /* Always show on mobile */
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .services {
    padding: 15px 1rem 25px;
  }

  .services-title {
    font-size: 1.7rem;
  }

  .service-card {
    height: 280px;
  }

  .service-card-content {
    padding: 1.5rem;
  }

  .service-card-icon {
    font-size: 2.5rem;
  }

  .service-card-title {
    font-size: 1.3rem;
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 40px 2rem 80px;
  background: #000;
  position: relative;
}

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

.map-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.map-title span {
  color: #d4af37;
}

.map-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #d4af37;
  margin-bottom: 3rem;
  font-weight: 600;
}

/* Map wrapper with floating button */
.map-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
}

.map-wrapper iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* Floating directions button */
.map-directions-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 10;
}

.map-directions-btn:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .map-section {
    padding: 30px 1.5rem 60px;
  }

  .map-title {
    font-size: 2rem;
  }

  .map-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .map-wrapper iframe {
    height: 400px;
  }

  .map-directions-btn {
    bottom: 20px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .map-section {
    padding: 25px 1rem 50px;
  }

  .map-title {
    font-size: 1.7rem;
  }

  .map-subtitle {
    font-size: 1rem;
  }

  .map-wrapper iframe {
    height: 350px;
  }

  .map-directions-btn {
    bottom: 15px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 2rem;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

/* Google logo watermark */
.testimonials::before {
  content: "Google";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  font-weight: 700;
  color: rgba(66, 133, 244, 0.08);
  font-family: "Product Sans", Arial, sans-serif;
  z-index: 0;
  pointer-events: none;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.google-logo {
  width: 30px;
  height: 30px;
}

.rating-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.rating-stars {
  color: #fbbc04;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 0.5rem;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: #666;
}

/* Carousel container - Cleaned for Swiper */
.testimonials-carousel {
  /* This is the swiper container */
  position: relative;
  padding: 2rem 0;
  /* Swiper handles its own overflow */
  overflow: hidden;
}

/* Testimonial track - Cleaned for Swiper */

.testimonials-track {
  display: flex;
  height: auto;
}

/* --- ADD THIS RULE --- */
.swiper-wrapper {
  /* This makes the animation smooth, not "ease-in-out" */
  transition-timing-function: linear !important;
}

/* Testimonial card */
.testimonial-card {
  /* This is the swiper-slide */
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;

  /* These are the 2 most important lines */
  height: auto;
  width: 400px; /* Set a base width for desktop */
  flex-shrink: 0; /* Prevent card from shrinking */
}

/* This fixes a sizing bug Swiper can have */
.swiper-slide {
  height: auto;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* Card header with profile */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.2rem;
}

.testimonial-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 1.5rem;
  }

  .testimonials::before {
    font-size: 8rem;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .rating-text {
    font-size: 1.2rem;
  }

  .rating-stars {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
    width: 320px;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 30px 1rem;
    /* Removed min-height and flex centering to prevent clipping */
  }

  .testimonials-header {
    margin-bottom: 1rem;
  }

  .testimonials-title {
    font-size: 1.7rem;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-card {
    width: 280px;
    padding: 1rem;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 80px 2rem;
  background: #000;
  position: relative;
}

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

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-title span {
  color: #d4af37;
}

.contact-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 4rem;
}

/* Three-column grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Contact card */
.contact-card {
  background: #0a0a0a;
  border-radius: 20px;
  padding: 1rem 0.5rem;
  text-align: center;
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 400px;
}

.contact-card:hover {
  border-color: #d4af37;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.contact-card-icon {
  font-size: 4rem;
  margin-bottom: -0.5rem;
}

.contact-card-icon svg {
  width: 4rem;
  height: 4rem;
  stroke: #d4af37;
  stroke-width: 1;
  fill: #d4af37;
}
.contact-card-question {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-card-description {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Card action button */
.contact-card-btn {
  width: 16rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.contact-card-btn-call {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
}

.contact-card-btn-call:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.contact-card-btn-whatsapp {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
}

.contact-card-btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.contact-card-btn-form {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}

.contact-card-btn-form svg {
  height: 1.5rem;
  width: 1.5rem;
  fill: currentColor;
}

.contact-card-btn-form:hover {
  background: #d4af37;
  color: #000;
  transform: scale(1.05);
}

/* WhatsApp icon for button */
.wa-icon {
  height: 2rem;
  fill: currentColor;
}

/* Contact form (hidden by default) */
.contact-form-wrapper {
  display: none;
  margin-top: 3rem;
  background: #0a0a0a;
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid #d4af37;
  animation: slideDown 0.4s ease;
}

.contact-form-wrapper.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 1rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Success message */
.success-message {
  display: none;
  background: #d4af37;
  color: #000;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  animation: fadeIn 0.5s ease;
}

.success-message.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile responsive */
@media (max-width: 968px) {
  .contact {
    padding: 60px 1.5rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-card {
    min-height: auto;
  }

  .contact-card-question {
    font-size: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-form-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 50px 1rem;
  }

  .contact-title {
    font-size: 1.7rem;
  }

  .contact-card-icon {
    font-size: 3rem;
  }

  .contact-card-question {
    font-size: 1.3rem;
  }

  .contact-card-description {
    font-size: 1rem;
  }

  .contact-card-btn {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .form-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ===== FOOTER SECTION ===== */
.footer {
  background: #000;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  padding: 60px 2rem 30px;
  color: #cdcdcd;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr; /* Top row: About (wide) and Links (narrow) */
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-col-about {
  grid-column: 1 / 2;
}

.footer-col-links {
  grid-column: 2 / 3;
}

.footer-col-services-extended {
  grid-column: 1 / -1; /* Full width row */
}

.footer-col-contact {
  grid-column: 1 / -1; /* Full width row at bottom */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center contact info */
}

/* Service Areas Grid Styles */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.service-area-group {
  margin-bottom: 0.5rem;
}

.service-area-heading {
  color: #d4af37;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-area-list {
  font-size: 0.85rem;
  line-height: 1.6;
}

.popular-searches {
  text-align: center;
}

/* Mobile Responsive for Footer Grid */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr; /* Stack everything on mobile */
    gap: 2rem;
  }

  .footer-col-about,
  .footer-col-links,
  .footer-col-services-extended,
  .footer-col-contact {
    grid-column: 1 / -1;
  }

  .service-areas-grid {
    grid-template-columns: 1fr; /* Stack service areas on mobile */
  }
}

/* Footer column */

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 10rem;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #000;
}
.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d4af37;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-keyword {
  color: #d4af37;
  font-weight: 600;
}

.footer-verified {
  font-size: 0.85rem;
  color: #d4af37;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border-left: 3px solid #d4af37;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-list li {
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-list li:hover {
  color: #d4af37;
}

.footer-list a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-heading {
  margin-bottom: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-contact-icon {
  font-size: 1.2rem;
  color: #d4af37;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #d4af37;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #d4af37;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #666;
}

.footer-copyright span {
  color: #d4af37;
}

/* Mobile responsive */
@media (max-width: 968px) {
  .footer {
    padding: 40px 1.5rem 20px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-tagline {
    margin-bottom: 1rem;
  }

  .footer-social {
    margin-top: 1rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 30px 1rem 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .footer-column {
    text-align: center;
  }

  .footer-logo-section {
    justify-content: center;
  }

  .footer-tagline {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .footer-verified {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .footer-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.75rem;
  }

  .footer-list li {
    font-size: 0.85rem;
  }

  .footer-contact-item {
    justify-content: center;
    margin-bottom: 0;
  }

  .footer-contact-text {
    font-size: 0.85rem;
  }

  .footer-contact-link {
    font-size: 0.85rem;
  }

  .footer-social {
    justify-content: center;
    margin-top: 0.8rem;
    gap: 0.8rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-bottom {
    padding-top: 1rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}
