/* styles.css */

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

:root {
    --primary-green: #1e4d3f;
    --accent-yellow: #fbbf24;
    --accent-yellow-dark: #986309;
    --car-primary-color: #ef4444;
    --light-cream: #fef8f0;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body { font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; background: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==================== NAVBAR ==================== */
.navbar { background: var(--primary-green); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); transition: var(--transition); }

.navbar.scrolled { padding: 0.75rem 0; box-shadow: var(--shadow-md); }

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; transition: var(--transition); }

.logo:hover { transform: scale(1.02); }

.logo-icon-wrapper { width: 45px; height: 45px; background: var(--accent-yellow); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary-green); transition: var(--transition); }

.logo:hover .logo-icon-wrapper { transform: rotate(10deg); box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4); }

.logo-text { display: flex; flex-direction: column; gap: 0.1rem; }

.logo-title { font-size: 1.3rem; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -0.5px; }

.logo-subtitle { font-size: 0.75rem; color: var(--accent-yellow); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
/* Navigation Links */
.nav-links { display: flex; gap: 2rem; align-items: center; }

.nav-link { color: var(--white); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: all 0.3s ease; position: relative; padding: 0.5rem 0; }

.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--accent-yellow); transition: width 0.3s ease; border-radius: 2px; }

.nav-link:hover { color: var(--accent-yellow); transform: translateY(-2px); }

.nav-link:hover::after { width: 100%; }

.nav-link.active::after { width: 100%; }

.nav-link.active { color: var(--accent-yellow); font-weight: 600; padding: 0.5rem 1rem; border-radius: 8px; }

.btn { padding: 0.75rem 1.5rem; border-radius: 50px; border: none; cursor: pointer; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition); font-size: 0.95rem; }

.btn-primary { background: var(--accent-yellow); color: var(--text-dark); }

.btn-primary:hover { background: #f59e0b; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==================== HERO SECTION ==================== */
.hero { background: linear-gradient(135deg, var(--primary-green) 0%, #163a2f 100%); color: var(--white); padding: 4rem 0 5rem; position: relative; overflow: hidden; min-height: 85vh; display: flex; align-items: center; }

.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; background: var(--accent-yellow); border-radius: 50%; opacity: 0.08; animation: float 20s infinite ease-in-out; }

.hero::after { content: ''; position: absolute; bottom: -30%; left: -15%; width: 600px; height: 600px; background: var(--accent-yellow); border-radius: 50%; opacity: 0.05; animation: float 15s infinite ease-in-out reverse; }

@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-50px) scale(1.1); } }

.hero-content { position: relative; z-index: 1; text-align: center; }

.hero-title { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }

.hero-title-main { font-size: 2.5rem; font-weight: 600; color: rgba(255, 255, 255, 0.95); }

.hero-highlight { background: linear-gradient(135deg, var(--accent-yellow) 0%, #fcd34d 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-style: italic; font-size: 4rem; }

.hero-subtitle { font-size: 1.2rem; max-width: 700px; margin: 0 auto 3rem; opacity: 0.9; line-height: 1.8; color: rgba(255, 255, 255, 0.85); }

/* ==================== SERVICE CHOICE CARDS ==================== */
.service-choice-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; padding: 0 1rem; }

.service-choice-card { background: var(--white); padding: 2.5rem 2rem; border-radius: 25px; text-decoration: none; color: var(--text-dark); transition: var(--transition); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; text-align: center; box-shadow: var(--shadow-md); }

.service-choice-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, transparent 0%, var(--light-cream) 100%); opacity: 0; transition: var(--transition); }

.service-choice-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.service-choice-card:hover::before { opacity: 1; }

.card-icon-wrapper { width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-bottom: 1.5rem; position: relative; z-index: 1; transition: var(--transition); }

.card-icon-wrapper.home { background: linear-gradient(135deg, var(--primary-green) 0%, #2d6a5a 100%); color: var(--accent-yellow); }

.card-icon-wrapper.auto { background: linear-gradient(135deg, var(--accent-yellow) 0%, #fcd34d 100%); color: var(--primary-green); }

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

.card-title { font-size: 1.75rem; font-weight: 700; color: var(--primary-green); margin-bottom: 1rem; position: relative; z-index: 1; }

.card-description { color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; position: relative; z-index: 1; font-size: 0.95rem; }

.card-link { color: var(--primary-green); font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; position: relative; z-index: 1; transition: var(--transition); }

.service-choice-card:hover .card-link { gap: 0.75rem; color: var(--accent-yellow-dark); }

.card-link i { transition: var(--transition); }

.service-choice-card:hover .card-link i { transform: translateX(5px); }

/* ==================== FOOTER ==================== */
.footer { background: var(--primary-green); color: var(--white); padding: 4rem 0 1.5rem; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 2.5rem; }

.footer-col-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--white); }

.footer-bio { color: rgba(255, 255, 255, 0.75); line-height: 1.7; margin: 1rem 0 1.5rem; font-size: 0.95rem; }

.footer-socials { display: flex; gap: 0.75rem; }

.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; transition: var(--transition); }

.social-link:hover { background: var(--accent-yellow); color: var(--primary-green); transform: translateY(-3px); }

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a { color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: var(--transition); font-size: 0.95rem; }

.footer-links a:hover { color: var(--accent-yellow); padding-left: 5px; }

.footer-contact-info { list-style: none; }

.footer-contact-info li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }

.footer-contact-info i { color: var(--accent-yellow); width: 20px; }

.footer-contact-info a { color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: var(--transition); }

.footer-contact-info a:hover { color: var(--accent-yellow); }

.footer-copyright { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1.5rem; text-align: center; color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

.footer-copyright a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.3s ease; }

.footer-copyright a:hover { color: var(--accent-yellow); }

/* ==================== FLOATING BUTTONS ==================== */
.floating-buttons { position: fixed; bottom: 2rem; right: 2rem; display: flex; flex-direction: column; gap: 1rem; z-index: 999; }

.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; text-decoration: none; box-shadow: var(--shadow-md); transition: var(--transition); position: relative; }

.float-btn:hover { transform: scale(1.15); box-shadow: var(--shadow-lg); }

.whatsapp-btn { background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%); }

.call-btn { background: linear-gradient(135deg, var(--accent-yellow) 0%, #fcd34d 100%); color: var(--primary-green); }

.float-tooltip { position: absolute; right: 75px; background: var(--text-dark); color: var(--white); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.85rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); font-weight: 500; }

.float-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border-left: 6px solid var(--text-dark); border-top: 6px solid transparent; border-bottom: 6px solid transparent; }

.float-btn:hover .float-tooltip { opacity: 1; }

/* ==================== MOBILE MENU ==================== */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero { padding: 3rem 0 4rem; min-height: auto; }
    .hero-title { font-size: 2.5rem; }
    .hero-title-main { font-size: 1.75rem; }
    .hero-highlight { font-size: 2.75rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2.5rem; }
    .service-choice-container { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .floating-buttons { bottom: 1.5rem; right: 1.5rem; }
    .float-btn { width: 55px; height: 55px; }
    .float-tooltip { display: none; }
}

@media (max-width: 640px) {
    .logo-title { font-size: 1.1rem; }
    .logo-subtitle { font-size: 0.65rem; }
    .logo-icon-wrapper { width: 38px; height: 38px; font-size: 1.1rem; }
    .hero-title { font-size: 2rem; }
    .hero-title-main { font-size: 1.5rem; }
    .hero-highlight { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .service-choice-card { padding: 2rem 1.5rem; }
    .card-icon-wrapper { width: 80px; height: 80px; font-size: 2rem; }
    .card-title { font-size: 1.4rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .floating-buttons { bottom: 1rem; right: 1rem; }
    .float-btn { width: 50px; height: 50px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero { padding: 2.5rem 0 3.5rem; }
    .hero-title-main { font-size: 1.3rem; }
    .hero-highlight { font-size: 2rem; }
    .service-choice-container { padding: 0; }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.service-choice-card { animation: fadeInUp 0.6s ease forwards; }

.service-choice-card:nth-child(1) { animation-delay: 0.1s; }

.service-choice-card:nth-child(2) { animation-delay: 0.2s; }