/* ============================================================
   LE TACOS - HERO SECTION CSS
   ============================================================ */

.lt-hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #030712 100%);
    color: white;
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.lt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(245,166,35,0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated circles decoration */
.lt-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.lt-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 48px;
}

/* ---- Logo area ---- */
.lt-hero-logo-wrap {
    flex-shrink: 0;
}

.lt-hero-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
    animation: heroLogoFloat 3s ease-in-out infinite;
}

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

/* ---- Content area ---- */
.lt-hero-content { flex: 1; }

.lt-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: var(--radius-full);
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lt-yellow);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lt-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    color: white;
}

.lt-hero-title .lt-title-special {
    color: var(--lt-yellow);
    display: inline;
}

.lt-hero-title .lt-title-accent {
    color: rgba(255,255,255,0.7);
    display: inline;
}

.lt-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    max-width: 440px;
    line-height: 1.6;
}

/* CTA Buttons */
.lt-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lt-hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--lt-yellow);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}

.lt-hero-cta-primary:hover {
    background: var(--lt-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.5);
}

.lt-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.lt-hero-cta-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

/* ---- Stats Row ---- */
.lt-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.lt-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lt-hero-stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.lt-hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ---- Right side illustration ---- */
.lt-hero-visual {
    flex-shrink: 0;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   SERVICE CARDS SECTION
   ============================================================ */
.lt-services {
    background: white;
    padding: 0;
    margin-top: -1px;
}

.lt-services-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
}

.lt-service-card {
    background: white;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.lt-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lt-green-dark), var(--lt-green-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.lt-service-card:hover::before { opacity: 0.05; }

.lt-service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.lt-service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.lt-service-card:nth-child(1) .lt-service-icon {
    background: rgba(13,92,63,0.1);
    color: var(--lt-green-dark);
}
.lt-service-card:nth-child(2) .lt-service-icon {
    background: rgba(245,166,35,0.1);
    color: var(--lt-yellow-dark);
}
.lt-service-card:nth-child(3) .lt-service-icon {
    background: rgba(59,130,246,0.1);
    color: #3B82F6;
}

.lt-service-card:hover .lt-service-icon {
    transform: scale(1.1) rotate(-5deg);
}



.lt-service-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.lt-service-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.lt-service-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.lt-service-card:hover .lt-service-arrow {
    color: var(--lt-green-dark);
    transform: translateX(4px);
}
