@charset "UTF-8";
:root {
    --primary: #255be0;
    --primary-dark: #16163f;
    --secondary: #c41e3a;
    --accent: #f59e0b;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Montserrat', sans-serif; color: var(--text-main); line-height: 1.6; background: var(--bg-light); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Utilities */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--secondary) 0%, #a01830 100%); color: var(--white); box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary-dark); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title span { display: block; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 15px; }
.section-title p { color: var(--text-muted); max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

/* Top Bar */
.top-bar { background: var(--primary-dark); color: var(--white); padding: 10px 0; font-size: 0.9rem; font-family: 'Open Sans', sans-serif; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left a { display: flex; align-items: center; gap: 8px; }
.top-bar-left a:hover { color: var(--accent); }

/* Header */
.header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 15px; }
.logo img { height: 120px; object-fit: contain; }
.logo-text h1 { font-size: 1.8rem; color: var(--primary-dark); font-weight: 800; line-height: 1.1; display: none; }
.logo-text span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; display: none; }
.nav { display: flex; gap: 30px; }
.nav a { font-weight: 600; color: var(--primary-dark); position: relative; padding-bottom: 5px; }
.nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 20px; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary-dark); cursor: pointer; }

/* Hero */
.hero { position: relative; padding: 120px 0; background: url('../images/hero_bg.png') center/cover; color: var(--white); overflow: hidden; min-height: 80vh; display: flex; align-items: center;}
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(22, 22, 63, 0.95) 0%, rgba(37, 91, 224, 0.7) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; animation: fadeInUp 1s ease; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); padding: 8px 15px; border-radius: 50px; font-size: 0.9rem; margin-bottom: 20px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
.hero-badge i { color: var(--accent); }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; margin-bottom: 40px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }

/* Services (Rescue) */
.services-section { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.service-card { background: var(--bg-light); border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); position: relative; padding-bottom: 20px; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.service-img { height: 200px; width: 100%; object-fit: cover; }
.service-content { padding: 25px; text-align: center; }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; margin: -55px auto 20px; border: 4px solid var(--white); position: relative; z-index: 2; }
.service-card h3 { color: var(--primary-dark); font-size: 1.4rem; margin-bottom: 15px; }

/* 24h Details */
.rescue-details { padding: 100px 0; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--white); }
.rescue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.rescue-text h2 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 800; }
.rescue-text p { font-size: 1.1rem; margin-bottom: 20px; opacity: 0.9; }
.rescue-list { list-style: none; margin-top: 30px; }
.rescue-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 1.1rem; }
.rescue-list i { color: var(--accent); font-size: 1.5rem; }
.rescue-img { position: relative; }
.rescue-img img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); border: 5px solid rgba(255,255,255,0.1); }
.float-badge { position: absolute; bottom: -30px; right: -30px; background: var(--accent); color: var(--primary-dark); padding: 20px; border-radius: 50%; width: 120px; height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 800; text-align: center; line-height: 1.2; box-shadow: var(--shadow); animation: float 3s ease-in-out infinite; }

/* Features / Regions */
.features { padding: 80px 0; background: var(--bg-light); text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.feature-item { background: var(--white); padding: 40px 30px; border-radius: 15px; box-shadow: var(--shadow); transition: var(--transition); border-bottom: 4px solid transparent; }
.feature-item:hover { border-color: var(--secondary); transform: translateY(-5px); }
.feature-item i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.feature-item h4 { font-size: 1.2rem; margin-bottom: 15px; color: var(--primary-dark); }

/* FAQ */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-light); border-radius: 10px; margin-bottom: 15px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.faq-question { padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: var(--primary-dark); transition: var(--transition); }
.faq-question:hover { background: rgba(37, 91, 224, 0.05); }
.faq-question i { color: var(--primary); transition: 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--secondary); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: 0.3s ease-out; opacity: 0; }
.faq-item.active .faq-answer { padding: 20px; max-height: 500px; opacity: 1; border-top: 1px solid rgba(0,0,0,0.05); }

/* Contact */
.contact { padding: 100px 0; background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { background: var(--primary-dark); color: var(--white); padding: 40px; border-radius: 20px; }
.contact-info h3 { font-size: 2rem; margin-bottom: 30px; color: var(--accent); }
.contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.contact-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--accent); flex-shrink: 0; }
.contact-text h4 { font-size: 1.2rem; margin-bottom: 5px; }
.contact-text p, .contact-text a { color: rgba(255,255,255,0.8); }
.map-container { border-radius: 20px; overflow: hidden; height: 100%; min-height: 400px; box-shadow: var(--shadow); }

/* Footer */
.footer { background: #0b1120; color: rgba(255,255,255,0.7); padding: 60px 0 20px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-about .logo img { margin-bottom: 15px; }
.footer-title { color: var(--white); font-size: 1.2rem; margin-bottom: 25px; position: relative; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 40px; height: 2px; background: var(--primary); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }

/* Floating Elements */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4); z-index: 1000; transition: var(--transition); text-decoration: none;}
.whatsapp-float:hover { transform: scale(1.1); color: white;}
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); box-shadow: 0 -5px 20px rgba(0,0,0,0.1); padding: 20px; z-index: 9999; transform: translateY(100%); transition: transform 0.5s ease; border-top: 2px solid var(--primary); }
.cookie-banner.show { transform: translateY(0); }
.cookie-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; gap: 20px; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); box-shadow: -5px 0 20px rgba(0,0,0,0.1); z-index: 2000; transition: 0.3s; padding: 30px; display: flex; flex-direction: column; }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-dark); }
.mobile-nav { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.mobile-nav a { font-size: 1.2rem; font-weight: 600; color: var(--text-main); }
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1001; display: none; }
.overlay.active { display: block; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }

/* Responsive */
@media (max-width: 991px) {
    .nav, .header-right .btn-outline { display: none; }
    .menu-toggle { display: block; }
    .hero { padding: 80px 0; min-height: auto; }
    .hero h1 { font-size: 2.5rem; }
    .rescue-grid, .contact-grid { grid-template-columns: 1fr; }
    .float-badge { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .cookie-content { flex-direction: column; text-align: center; }
}
