/* =========================================
   L & L LUXURY - FINAL PREMIUM STYLING
   ========================================= */

:root {
    --gold-primary: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #fceabb 0%, #fccd4d 50%, #f8b500 100%);
    --dark-bg: #0a0a0a;
    --dark-card: #111111;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    background: rgba(10, 10, 10, 0.98);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.main-logo { height: auto; width: 200px; display: block; }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold-primary); }

.btn-quote-nav { border: 1px solid var(--gold-primary); padding: 10px 20px; transition: all 0.3s ease; }
.btn-quote-nav:hover { background: var(--gold-primary); color: var(--dark-bg) !important; }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay { position: absolute; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.75); }
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-content h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 30px; }
.hero-content h1 span { color: var(--gold-primary); font-style: italic; }
.hero-content p { font-size: 1.1rem; margin-bottom: 60px; letter-spacing: 1px; font-weight: 300; }

.btn-luxury-gold {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    text-decoration: none;
    padding: 18px 45px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

/* --- SERVICES --- */
.services { padding: 100px 8%; background: var(--dark-bg); text-align: center; }
.section-title h2 { font-family: var(--font-heading); font-size: 2.5rem; letter-spacing: 2px; }
.insurance-badge { color: var(--gold-primary); font-weight: 700; letter-spacing: 2px; font-size: 0.9rem; margin-top: 10px; }
.line { width: 80px; height: 2px; background: var(--gold-primary); margin: 20px auto; }

.services-container { display: flex; gap: 30px; margin-top: 50px; }
.service-card { background: var(--dark-card); padding: 60px 30px; border: 1px solid #222; flex: 1; transition: 0.3s; }
.service-card:hover { border-color: var(--gold-primary); }

.luxury-icon { font-size: 3.5rem; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4)); }
.custom-icon-img { height: 80px; width: auto; filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); }

.service-list { list-style: none; padding: 0; margin-top: 25px; text-align: center; }
.service-list li { font-size: 0.9rem; color: #e0e0e0; margin-bottom: 15px; letter-spacing: 1px; text-transform: uppercase; transition: 0.3s; }
.service-list li:hover { color: var(--gold-primary); }

/* --- ABOUT US (FOTO ÚNICA CON DESPLEGABLE) --- */
.about-us { padding: 100px 8%; background: #050505; }
.about-container { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; }
.about-text { flex: 1; }
.line-left { width: 60px; height: 2px; background: var(--gold-primary); margin-bottom: 30px; }

.about-image { flex: 1; display: flex; justify-content: center; position: relative; }

.image-frame {
    width: 100%;
    max-width: 450px;
    height: 600px;
    border: 1px solid var(--gold-primary);
    padding: 10px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.profile-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }

.founder-overlay {
    position: absolute;
    bottom: -100%;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.9);
    padding: 30px 15px;
    text-align: center;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid var(--gold-primary);
}

.image-frame:hover .founder-overlay { bottom: 10px; }
.image-frame:hover .profile-img { transform: scale(1.05); }

.founder-overlay span { color: var(--gold-primary); font-weight: 700; letter-spacing: 2px; font-size: 1.2rem; }
.founder-overlay p { font-size: 0.85rem; margin-top: 8px; color: #fff; font-style: italic; }

/* --- TESTIMONIALS --- */
.testimonials { padding: 100px 8%; background: var(--dark-bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 50px; }
.testimonial-item { background: var(--dark-card); padding: 40px 25px; border: 1px solid #1a1a1a; text-align: center; transition: 0.3s; }
.testimonial-item:hover { border-color: var(--gold-primary); transform: translateY(-5px); }
.stars { color: var(--gold-primary); margin-bottom: 15px; font-size: 0.9rem; }
.testimonial-item p { font-style: italic; font-size: 0.85rem; color: #ccc; margin-bottom: 15px; }
.testimonial-item h4 { color: var(--gold-primary); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; }

/* --- CONTACT --- */
.contact { padding: 100px 8%; background: #050505; }
.contact-box { max-width: 650px; margin: 0 auto; padding: 60px 45px; background: var(--dark-card); border: 1px solid #222; }
.contact-form { display: flex; flex-direction: column; gap: 25px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 16px; background: #000; border: 1px solid #333; color: #fff; outline: none; }
.contact-form input:focus { border-color: var(--gold-primary); }

/* --- FOOTER --- */
footer { padding: 80px 8% 40px; text-align: center; background: #000; border-top: 1px solid #111; }
.footer-logo { height: 90px; margin-bottom: 40px; }
.legal-links { margin-bottom: 30px; display: flex; justify-content: center; gap: 25px; }
.legal-links a { color: #555; text-decoration: none; font-size: 0.7rem; }
.copyright { color: #333; font-size: 0.8rem; line-height: 1.8; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .main-logo { width: 150px; }
    .services-container, .about-container { flex-direction: column; }
    .image-frame { height: 500px; }
}