/* ============================================
   Legal Pages Styles - Ali Lash Lady
   ============================================ */

/* Hero Legal */
.hero-legal {
    background: linear-gradient(135deg, var(--tiffany-light) 0%, var(--pastel-lavender) 100%);
    padding: 150px 0 80px;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.hero-legal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 213, 213, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-legal h1 {
    color: var(--white);
    font-weight: 700;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-legal .lead {
    color: var(--white);
    font-size: 1.3rem;
    opacity: 0.95;
}

.hero-legal .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
}

/* Legal Content */
.legal-content {
    background: var(--white);
}

.intro-legal {
    background: linear-gradient(135deg, var(--tiffany-light), var(--white));
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid var(--tiffany-dark);
}

.intro-legal p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-legal p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--tiffany-light);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--tiffany-dark);
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-section h2 i {
    font-size: 1.5rem;
    color: var(--tiffany-primary);
}

.legal-section h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-section p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 0;
    list-style: none;
}

.legal-section ul li {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.legal-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tiffany-dark);
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-section a {
    color: var(--tiffany-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--tiffany-primary);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--tiffany-dark);
    font-weight: 600;
}

/* Contact Section in Legal */
.contact-section {
    background: linear-gradient(135deg, var(--tiffany-light), var(--pastel-peach));
    padding: 40px;
    border-radius: 20px;
    border: none;
}

.contact-info-legal {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-info-legal p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-legal i {
    color: var(--tiffany-dark);
    font-size: 1.2rem;
}

/* Acceptance Section */
.acceptance-section {
    margin: 40px 0;
}

.acceptance-section .alert {
    background: linear-gradient(135deg, var(--tiffany-light), var(--white));
    border: 2px solid var(--tiffany-primary);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.acceptance-section .alert i {
    color: var(--tiffany-dark);
    font-size: 1.5rem;
    margin-top: 3px;
}

.acceptance-section .alert strong {
    color: var(--tiffany-dark);
}

/* Back Home Section */
.back-home-section {
    padding: 40px 0;
}

.back-home-section .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.back-home-section .btn i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-legal {
        padding: 120px 0 60px;
    }
    
    .hero-legal h1 {
        font-size: 2rem;
    }
    
    .hero-legal .lead {
        font-size: 1.1rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .intro-legal {
        padding: 20px;
    }
    
    .contact-section,
    .contact-info-legal {
        padding: 20px;
    }
    
    .acceptance-section .alert {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .footer,
    .back-home-section {
        display: none;
    }
    
    .hero-legal {
        margin-top: 0;
        padding: 40px 0;
        background: white;
    }
    
    .hero-legal h1,
    .hero-legal .lead,
    .hero-legal .text-muted {
        color: #000;
    }
    
    .legal-section {
        page-break-inside: avoid;
    }
}