/* Base Styles */
:root {
  --primary: #f8c100; /* Club América gold/yellow */
  --primary-dark: #e0b000; /* Darker version of the gold */
  --primary-light: #ffd54f; /* Lighter version of the gold */
  --secondary: #041e42; /* Club América navy blue */
  --secondary-light: #1a365d; /* Lighter navy blue */
  --accent: #b71c1c; /* Subtle red accent - used very sparingly */
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --radius: 0.5rem;
  --whatsapp: #25d366; /* WhatsApp green color */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--foreground);
  line-height: 1.5;
  background-color: var(--background);
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevent image gap */
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--secondary); /* Dark text on gold background for better contrast */
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: white;
  border: none;
  font-weight: 600;
  gap: 0.5rem;
  animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
  background-color: #1da851;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-dark {
  background-color: rgba(4, 30, 66, 0.8);
  color: white;
  border: 1px solid white;
}

.btn-outline-dark:hover {
  background-color: var(--secondary);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.desktop-nav {
  display: none;
}

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 1.5rem;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.nav-whatsapp {
  color: var(--whatsapp) !important;
}

.nav-whatsapp:hover {
  color: var(--whatsapp) !important;
  opacity: 0.9;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.license-number {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  background-color: rgba(248, 193, 0, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.license-number i {
  color: var(--primary-dark);
}

.phone-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-license {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  background-color: rgba(248, 193, 0, 0.15);
  padding: 0.5rem;
  border-radius: var(--radius);
  margin-top: 0.75rem;
  justify-content: center;
}

.mobile-license i {
  color: var(--primary-dark);
}

.mobile-nav.active {
  display: flex;
  animation: slideDown 0.3s ease-in-out;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: -1;
}

.hero-content {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(4, 30, 66, 0.8);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
  color: white;
}

.license-badge i {
  color: var(--primary);
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-image-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
  display: none; /* Hidden on mobile by default */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image-container {
    display: block;
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .hero-image-container {
    height: 400px;
  }
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background-color: rgba(241, 245, 249, 0.5);
}

.about-grid {
  display: grid;
  gap: 3rem;
}

.section-badge {
  display: inline-block;
  background-color: rgba(248, 193, 0, 0.1); /* Subtle gold background */
  color: var(--primary-dark); /* Slightly darker gold for text */
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.license-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  background-color: rgba(248, 193, 0, 0.15);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.license-info i {
  color: var(--primary-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-name {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  letter-spacing: 0.05em;
}

.service-line {
  height: 0.25rem;
  width: 4rem;
  background-color: var(--primary);
  border-radius: 2px;
}

.club-america-accent {
  background: linear-gradient(45deg, var(--primary) 0%, var(--primary) 50%, var(--secondary) 50%, var(--secondary) 100%);
  height: 4px;
  width: 100%;
  margin: 1.5rem 0;
  border-radius: 2px;
}

.about-image-container {
  position: relative;
}

.experience-badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  background-color: var(--secondary); /* Navy blue background */
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(4, 30, 66, 0.2);
}

.years {
  font-size: 2rem;
  font-weight: 700;
}

.years-text {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-content .btn-primary {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
}

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

.section-description {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted-foreground);
}

.services-cards {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--background);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-image-container {
  height: 200px; /* Standardized smaller height */
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  margin: 0.5rem;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-details {
  padding: 1rem;
}

.support-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.divider {
  display: none;
  height: 1.5rem;
  width: 1px;
  background-color: var(--border);
  margin: 0 1rem;
}

/* Projects Section */
.projects-section {
  padding: 4rem 0;
  background-color: rgba(241, 245, 249, 0.5);
}

.projects-grid {
  display: grid;
  gap: 2rem;
}

.project-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-image-container {
  height: 250px; /* Standardized height */
  overflow: hidden;
  border-radius: var(--radius);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-image-container:hover .project-image {
  transform: scale(1.03);
}

.projects-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Transformations Section */
.transformations-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.transformation-container {
  margin-bottom: 4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--primary); /* Subtle gold accent at the top */
}

.transformation-title {
  background-color: var(--secondary); /* Navy blue background */
  color: white;
  padding: 1rem;
  margin: 0;
  text-align: center;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}

.second-view {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.transformation-item {
  position: relative;
}

.transformation-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
}

.transformation-image-container {
  height: 250px; /* Standardized height */
  overflow: hidden;
  border-radius: var(--radius);
}

.transformation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transformation-description {
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.transformations-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Kitchen Section */
.kitchen-section {
  padding: 4rem 0;
  background-color: var(--secondary); /* Navy blue background */
  color: white;
}

.kitchen-grid {
  display: grid;
  gap: 3rem;
}

.kitchen-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.kitchen-image-container {
  height: 300px; /* Standardized height */
  overflow: hidden;
  border-radius: var(--radius);
}

.kitchen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  background-color: rgba(241, 245, 249, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.testimonial-text {
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 200px; /* Smaller standardized height */
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: rgba(241, 245, 249, 0.5);
}

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

/* Contact image container */
.contact-image-container {
  height: 350px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.license-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  background-color: rgba(248, 193, 0, 0.15);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  width: fit-content;
}

.license-display i {
  color: var(--primary-dark);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(248, 193, 0, 0.1); /* Subtle gold background */
  color: var(--primary-dark);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 128, 0, 0.1);
  color: var(--foreground);
  transition: all 0.2s ease;
}

/* Add social media hover effects */
.social-icon:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.whatsapp-container {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--whatsapp);
}

.whatsapp-container h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.whatsapp-container p {
  margin-bottom: 1.5rem;
}

.whatsapp-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.whatsapp-info p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-image-container {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
  }

  .contact-info {
    grid-column: 2;
    grid-row: 1;
  }

  .whatsapp-container {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-image-container {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-info {
    grid-column: 2;
    grid-row: 1;
  }

  .whatsapp-container {
    grid-column: 3;
    grid-row: 1;
  }
}

/* Services List Section */
.services-list-section {
  padding: 4rem 0;
}

.services-list-grid {
  display: grid;
  gap: 3rem;
}

.services-list h2 {
  margin-bottom: 2rem;
}

.services-list-items {
  display: grid;
  gap: 1rem;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list-item i {
  color: var(--primary);
  flex-shrink: 0;
}

.services-list-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px; /* Standardized height */
  overflow: hidden;
}

.services-list-image img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  background-color: rgba(241, 245, 249, 0.8);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-license {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  background-color: rgba(248, 193, 0, 0.15);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  width: fit-content;
}

.footer-license i {
  color: var(--primary-dark);
}

.footer-contact h3,
.footer-links-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.footer-links a:hover {
  color: var(--foreground);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.quick-links a {
  color: var(--muted-foreground);
}

.quick-links a:hover {
  color: var(--foreground);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Media Queries */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-info {
    flex-direction: row;
  }

  .divider {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transformation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .desktop-nav {
    display: flex;
  }

  .phone-link {
    display: flex;
  }

  .license-number {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .hero-content {
    padding: 8rem 0;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kitchen-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-image-container {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 100%;
  }

  .contact-info-container {
    grid-column: 2;
    grid-row: 1;
  }

  .whatsapp-container {
    grid-column: 1 / span 2;
    grid-row: 2;
  }

  .services-list-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .contact-image-container {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-info-container {
    grid-column: 2;
    grid-row: 1;
  }

  .whatsapp-container {
    grid-column: 3;
    grid-row: 1;
  }
}

/* Page load animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-section,
.about-section,
.services-section,
.projects-section,
.kitchen-section,
.testimonials-section,
.contact-section,
.services-list-section,
.transformations-section {
  animation: fadeIn 0.8s ease-in-out;
}

/* Club América Colors Accent Elements */
.club-america-accent {
  background: linear-gradient(45deg, var(--primary) 0%, var(--primary) 50%, var(--secondary) 50%, var(--secondary) 100%);
  height: 4px;
  width: 100%;
  margin: 1.5rem 0;
  border-radius: 2px;
}

/* Add WhatsApp button animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.footer-links a,
.quick-links a {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links a span,
.quick-links a {
  font-family: "Inter", sans-serif;
}

.footer-contact h3,
.footer-links-section h3,
.footer-about .footer-logo span {
  font-family: "Inter", sans-serif;
}



