       :root {
            --primary-green: #1e5631;
            --secondary-green: #2d7a3f;
            --light-green: #4caf50;
            --accent-green: #66bb6a;
            --bg-light: #f8fffe;
            --bg-card: #ffffff;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --shadow-light: 0 4px 20px rgba(30, 86, 49, 0.08);
            --shadow-medium: 0 8px 40px rgba(30, 86, 49, 0.12);
            --gradient-green: linear-gradient(135deg, #1e5631 0%, #2d7a3f 100%);
            --gradient-light: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



        /* Hero Section */
        .hero-contact {
            background: linear-gradient(135deg, #010300, #009827);
            color: white;
            padding: 100px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.05)"><polygon points="0,0 0,100 1000,80 1000,0"/></svg>');
            background-size: cover;
        }

        .hero-contact .container {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            opacity: 0.9;
        }
/* ================================
   Timeline Section (mejorada)
   ================================ */
   .contact-main1{
  /* Controles rápidos */
  --gray-0: #f9fafb;        /* gris base más claro */
  --gray-1: #f1f5f9;        /* degradado suave */
  --pattern-opacity: 0.5;  /* fuerza del patrón */
  --pattern-blur: 0.2px;    /* 2–3px queda elegante */
  --edge-fade: .65;         /* 0–1 (desvanecido bordes) */

  position: relative;
  padding: 50px 0;
  background:
    radial-gradient(120% 80% at 50% -10%, var(--gray-1) 0%, var(--gray-0) 60%),
    #fff; /* fallback */
  overflow: hidden;
}

/* Capa 1: patrón SVG repetido infinitamente + blur */
.contact-main1:before{
  content:"";
  position:absolute;
  inset:0;
  background: url("img/bg-icons.svg") repeat; /* 🔹 ahora se repite en mosaico */
  background-size: 140px 140px; /* 🔹 ajusta al viewBox del SVG */
  opacity: var(--pattern-opacity); 
  filter: blur(var(--pattern-blur));
  pointer-events: none;
  z-index: 0;
  will-change: transform, filter, background-position;
  animation: timelineDrift 40s linear infinite;
}

/* Capa 2: velo/fade para bordes suaves */
.contact-main1::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,
      rgba(255,255,255, calc(var(--edge-fade)*.9)) 0%,
      rgba(255,255,255, 0) 12%,
      rgba(255,255,255, 0) 88%,
      rgba(255,255,255, calc(var(--edge-fade)*.9)) 100%
    ),
    radial-gradient(120% 100% at 50% 10%,
      rgba(0,0,0,.04) 0%,
      rgba(0,0,0,0) 60%
    );
  pointer-events: none;
  z-index: 1;
}

/* Contenido por encima */
.contact-main1 > *{
  position: relative;
  z-index: 2;
}

/* Parallax / drift lentísimo */
@keyframes timelineDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 200px 120px; }
}
@media (prefers-reduced-motion: reduce){
  .contact-main1::before{ animation: none; }
}


        .contact-card {
            background: var(--bg-card);
            border-radius: 24px;
            box-shadow: var(--shadow-medium);
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .form-section {
            background: #008a24;
            color: white;
            padding: 3rem;
        }

        .form-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .form-title i {
            color: var(--accent-green);
        }

        .modern-form .form-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .modern-form .form-control {
            border: none;
            border-radius: 12px;
            padding: 1rem 1.2rem;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.95);
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .modern-form .form-control:focus {
            background: white;
            box-shadow: 0 4px 20px rgba(30, 86, 49, 0.15);
            transform: translateY(-2px);
        }

        .modern-form textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .btn-send {
            background: white;
            color: var(--primary-green);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-send:hover {
            background: var(--primary-green) !important;
            color: white !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 6px 25px rgba(30, 86, 49, 0.3) !important;
            border: 1px solid white !important;
        }

        /* Contact Info Grid */
        .contact-info-grid {
            padding: 3rem;
            background: white;
        }

        .info-card {
            background: var(--gradient-light);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(30, 86, 49, 0.1);
            margin-bottom: 2rem;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
            border-color: var(--accent-green);
        }

        .info-icon {
            width: 70px;
            height: 70px;
            background: #008a24;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 4px 15px rgba(30, 86, 49, 0.3);
        }

        .info-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .info-text {
            color:  #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Stores Section */
        .stores-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-green);
        }

        .store-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            height: 100%;
        }

        .store-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        .store-header {
            background: #008a24;
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .store-number {
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .store-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .store-content {
            padding: 2rem;
        }

        .store-info {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 1.5rem;
        }

        .store-info i {
            color: var(--primary-green);
            font-size: 1.2rem;
            margin-top: 3px;
            min-width: 20px;
        }

        .store-info strong {
            color: var(--primary-green);
            display: block;
            margin-bottom: 5px;
        }

        .map-container {
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            margin-top: 1.5rem;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .form-section, .contact-info-grid {
                padding: 2rem 1.5rem;
            }
            
            .form-title {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.6s ease forwards;
        }

        /* Loading states */
        .form-loading {
            position: relative;
            pointer-events: none;
        }

        .form-loading::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
        }
        /* contactanos */
        /* WhatsApp CTA Section */
.py-5 {
  background-color: #005517 !important;
  font-family: 'Playfair Display', serif; /* Tipografía elegante */
  color: #f5f5f5; /* Texto claro */
  margin: 60px 0;
}

.py-5.bg-black h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.py-5.bg-black p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.py-5.bg-black .btn-success {
  background: white;
  border: none;
  color: #0dc143;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif; /* Contraste con el título */
}

.py-5.bg-black .btn-success:hover {
  background: #0dc143;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  color: white
}

.py-5.bg-black i {
  font-size: 1.4rem;
  vertical-align: middle;
}

/*wraper*/
.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
  .select-wrapper select {
    width: 100%;
    appearance: none; /* Oculta la flecha por defecto */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px; /* Deja espacio para el ícono */
  }
  
  .select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-120%);
    pointer-events: none; /* No bloquea el click */
    color: #333;
    font-size: 14px;
  }