:root {
    --primary-color: #000000;
    --secondary-color: #1d1d1f;
    --accent-color: #0071e3;
    --text-color: #1d1d1f;
    --light-text: #ffffff;
    --background-light: #fbfbfd;
    --background-dark: #000000;
    --spacing-unit: 8px;
    --transition: all 0.3s ease;
    --instagram-white: #fff;
    --instagram-blue: #3051f1;
    --instagram-purple: #c92bb7;
    --instagram-red: #f73344;
    --instagram-orange: #fa8e37;
    --instagram-yellow: #fcdf8f;
    --instagram-yellow-to: #fbd377;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }
  
  body {
    background-color: var(--background-light);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
  }
  
  /* Header Styles */
  .header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: calc(var(--spacing-unit) * 2) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
  }
  
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-unit);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-unit);
}

.nav-menu {
    display: flex;
    gap: calc(var(--spacing-unit) * 3);
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: calc(var(--spacing-unit) * 2);
    }
}

.logo {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Eliminar ya que la sección de tarifas no existe */
.rates {
    /* ... todo el bloque ... */
}

/* Eliminar ya que estos estilos están duplicados o no se usan */
.nav-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 3);
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('./assets/monasterio-coche1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--light-text);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero .cta-button {
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .hero {
        background-image: url('./assets/monasteriomovil.webp');
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('./assets/monasteriomovil.webp');
        background-position: center;
        min-height: 100vh;
    }
}
  
  /* Services Section */
  .services {
    padding: calc(var(--spacing-unit) * 8) 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing-unit) * 6);
    color: var(--secondary-color);
  }
  
  .service-category {
    margin-bottom: calc(var(--spacing-unit) * 8);
  }
  
  .category-title {
    font-size: 2rem;
    margin-bottom: calc(var(--spacing-unit) * 4);
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-unit);
  }
  
  .category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
    padding: 0 calc(var(--spacing-unit) * 2);
  }
  
  .service-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: transparent;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* Changed from 0.5 to 0.3 for more visibility */
    z-index: 1;
    transition: var(--transition);
  }
  
  .service-card:hover::before {
    background-color: rgba(0, 0, 0, 0.7); /* Keeps the darker overlay on hover */
  }
  
  .service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    filter: saturate(1.2); /* Added to increase color saturation */
  }
  
  .service-card-content {
    position: relative;
    z-index: 2;
    padding: calc(var(--spacing-unit) * 4);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .service-card h4 {
    font-size: 1.5rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: white;
    transition: var(--transition);
  }
  
  .service-card i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: calc(var(--spacing-unit) * 2);
    transition: var(--transition);
  }
  
  .service-card-description {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    color: white;
    max-width: 280px;
  }
  
  .service-card:hover .service-card-bg {
    transform: scale(1.1);
  }
  
  .service-card:hover::before {
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .service-card:hover .service-card-description {
    opacity: 1;
    transform: translateY(0);
  }
  
  .service-card:hover i {
    transform: translateY(-20px);
  }
  
  .service-card:hover h4 {
    transform: translateY(-10px);
  }
  
/* CTA Button Styles */
/* CTA Button Styles */
.cta-button {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit));
}

.cta-button i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: #0077ed;
    transform: scale(1.05);
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
    margin: 30px 0 50px;
}

.cta-button.primary {
    background-color: var(--accent-color);
}

.cta-button.primary:hover {
    background-color: #0077ed;
}

.cta-button.secondary {
    background-color: #25D366;
}

.cta-button.secondary:hover {
    background-color: #128C7E;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .cta-button {
        flex-direction: column;
        text-align: center;
        padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 2);
        flex: 1;
        min-width: 120px;
    }

    .cta-button i {
        font-size: 1.5rem;
        margin-bottom: calc(var(--spacing-unit));
    }

    .cta-container {
        flex-direction: row;
        gap: calc(var(--spacing-unit));
        justify-content: center;
    }

    .cta-button:hover i {
        transform: translateY(-3px);
    }
}

/* Touch Device Support */
@media (hover: none) {
    .cta-button:active {
        transform: scale(0.95);
    }
}

/* ... existing code ... */
  
  /* Floating Contact Buttons */
  .floating-contacts {
      position: fixed;
      bottom: calc(var(--spacing-unit) * 3);
      right: calc(var(--spacing-unit) * 3);
      display: flex;
      flex-direction: column;
      gap: var(--spacing-unit);
      z-index: 1000;
  }
  
  .float-button {
      width: 60px;
      height: 60px;
      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: var(--transition);
  }
  
  .float-button.whatsapp {
      background-color: #25D366;
      color: white;
      font-size: 2rem;
  }
  
  .float-button.phone {
      background-color: #0071e3;
      color: white;
      font-size: 1.4rem;
  }
  
  .float-button:hover {
      transform: scale(1.1);
  }
  
  /* Footer Social Icons */
  .footer-social a {
      color: var(--light-text);
      font-size: 64px;
      transition: var(--transition);
  }
  
  .footer-social a.instagram {
      color: #E4405F;
  }
  
  .footer-social a.google {
      color: #DB4437;
  }
  
  .footer-social a:hover {
      transform: scale(1.1);
  }


  /* FAQ Section */
/* About Section */
.about {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--background-light);
}

.about-grid {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 4);
    padding: calc(var(--spacing-unit) * 4) 0;
}

.about-text {
    flex: 1;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: calc(var(--spacing-unit) * 3);
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.about-features li i {
    color: var(--accent-color);
    margin-right: calc(var(--spacing-unit) * 2);
}

.about-image {
    flex: 1;
    text-align: right;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        text-align: center;
    }

    .about-features li {
        justify-content: center;
    }

    .about-image {
        text-align: center;
        margin-top: calc(var(--spacing-unit) * 4);
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
    max-width: 1200px;
    margin: calc(var(--spacing-unit) * 4) auto;
    padding: 0 calc(var(--spacing-unit) * 2);
}

.faq-card {
    position: relative;
    min-height: 100px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
}

.faq-card-content {
    padding: calc(var(--spacing-unit) * 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
    width: 100%;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.faq-card.active {
    min-height: 260px;
}

.faq-card.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    margin-top: calc(var(--spacing-unit) * 2);
}

/* ... existing code ... */

@media (min-width: 769px) {
    .faq-card:hover {
        min-height: 260px;
    }

    .faq-card:hover .faq-answer {
        max-height: 1000px;
        opacity: 1;
        margin-top: calc(var(--spacing-unit) * 2);
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 calc(var(--spacing-unit));
    }
    
    .faq-card {
        max-width: 100%;
    }
}

/* ... existing code ... */
   

/* Añadimos soporte para dispositivos táctiles */
@media (hover: none) {
    .faq-card:active {
        height: 350px;
    }

    .faq-card:active h4 {
        top: 25%;
        transform: translateY(0);
    }

    .faq-card:active .faq-answer {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Añade esto a tu archivo CSS */
@media (max-width: 768px) {
    .service-card-bg::after {
        content: '';
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        animation: pulse 2s infinite;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card-bg::before {
        content: '\f0a6';  /* Cambiado a icono de mano señalando hacia arriba */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--accent-color);
        z-index: 1;
        font-size: 20px;
    }

    @keyframes pulse {
        0% {
            transform: translateX(-50%) scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        }
        
        70% {
            transform: translateX(-50%) scale(1);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
        }
        
        100% {
            transform: translateX(-50%) scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        }
    }

    .service-card:active .service-card-bg::after,
    .service-card:active .service-card-bg::before {
        display: none;
    }
}

/* ... existing code ... */
  
  /* Footer */
  .footer {
    margin-top: 50px;
    background-color: var(--background-dark);
    color: var(--light-text);
    padding: calc(var(--spacing-unit) * 6) 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 4);
  }
  
  .footer-info h3 {
    margin-bottom: calc(var(--spacing-unit) * 2);
  }
  
  .footer-info p {
    margin-bottom: var(--spacing-unit);
    color: #888;
  }
  
  /* Footer */
  .footer-social {
      display: flex;
      gap: calc(var(--spacing-unit) * 2);
  }
  
  /* Footer Social Icons */
  .footer-social {
      display: flex;
      gap: calc(var(--spacing-unit) * 2);
      align-items: center;
  }
  
  .instagram-logo {
      width: 64px;
      height: 64px;
      background: radial-gradient(
          circle farthest-corner at 28% 100%,
          #fcdf8f 0%,
          #fbd377 10%,
          #fa8e37 22%,
          #f73344 35%,
          transparent 65%
      ),
      linear-gradient(145deg, #3051f1 10%, #c92bb7 70%);
      border-radius: 12px;
      position: relative;
      display: grid;
      place-items: center;
  }
  
  .instagram-logo::before,
  .instagram-logo::after {
      content: "";
      position: absolute;
      border: 4px solid white;
  }
  
  .instagram-logo::before {
      width: 36px;
      height: 36px;
      border-radius: 8px;
  }
  
  .instagram-logo::after {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      box-shadow: 12px -12px 0 -8px white;
  }
  
  .footer-social a:hover .instagram-logo {
      transform: scale(1.1);
  }
  
  .footer-social a.google {
      color: #4285F4;
      font-size: 24px;
  }
  
  .footer-social a:hover {
      transform: scale(1.1);
      opacity: 0.8;
  }


  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
    
    .container {
      padding: 0 calc(var(--spacing-unit) * 2);
    }
    
    .service-category {
      margin-bottom: calc(var(--spacing-unit) * 6);
    }
    
    .category-title {
      font-size: 1.75rem;
    }
    
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .service-card {
      height: 250px;
    }
    
    .float-button {
      width: 50px;
      height: 50px;
    }
  }

  /* Payment Methods Section */
.payment-methods {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: #f5f5f7;
}

.payment-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 4);
    margin-top: calc(var(--spacing-unit) * 4);
}

.payment-card {
    background-color: white;
    padding: calc(var(--spacing-unit) * 3);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    width: 200px;
}

.payment-card img {
    height: 60px;
    width: auto;
    margin-bottom: calc(var(--spacing-unit) * 2);
    transition: var(--transition);
}

.payment-card h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: calc(var(--spacing-unit) * 2);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .payment-card {
        width: 150px;
    }
    
    .payment-card img {
        height: 45px;
    }
}

/* Reviews Section */
.reviews {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--background-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    margin-top: calc(var(--spacing-unit) * 4);
}

.review-card {
    background-color: white;
    padding: calc(var(--spacing-unit) * 4);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.google-icon {
    height: 24px;
    width: auto;
}

.rating {
    color: #fbbc05;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
}

.reviewer-avatar {
    font-size: 2.5rem;
    color: #666;
}

.reviewer-info h4 {
    color: var(--secondary-color);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 30px auto;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 500;
    transition: var(--transition);
}

.review-cta:hover {
    color: #0077ed;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: calc(var(--spacing-unit) * 3);
    }
}

.google-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #4e4d4e 43%, #3876f8 43%);
}

.google-logo .colors {
    position: absolute;
    top: -6px;
    left: -20px;
    height: 0;
    width: 0;
    border-top: 48px solid #f3001c;
    border-bottom: 48px solid #00c449;
    border-right: 48px dashed transparent;
    border-left: 48px solid #ffc500;
}

.google-logo .circle {
    background: #4e4d4e;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.google-logo .bar {
    width: 29px;
    height: 11px;
    background: #3876f8;
    position: absolute;
    top: 25.6px;
    right: 1px;
    z-index: 3;
}

.footer-social a:hover .google-logo {
    transform: scale(1.1);
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

/* Advantages Section */
.advantages {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--background-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 4);
}

.advantage-card {
    background-color: white;
    padding: calc(var(--spacing-unit) * 4);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.advantage-card h3 {
    color: var(--secondary-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 1.3rem;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

/* Coverage Section */
.coverage {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: #f5f5f7;
    color: var(--text-color);
}

.coverage .section-title {
    color: var(--secondary-color);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 4);
}

.coverage-card {
    background-color: white;
    padding: calc(var(--spacing-unit) * 4);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coverage-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.coverage-card h3 {
    margin-bottom: calc(var(--spacing-unit));
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.coverage-card p {
    color: #666;
}

/* Gallery Section */
.gallery {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 4);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    max-width: 350px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 500;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Responsive Design */
media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .advantages-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card i,
    .coverage-card i {
        font-size: 2rem;
    }
}