/* ==========================================================================
   VULCANIZARE ADI AUTO - STYLESHEET (DARK AUTOMOTIVE NEON THEME)
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #0a0c10;
    --bg-card: rgba(18, 22, 31, 0.75);
    --bg-card-border: rgba(255, 107, 0, 0.2);
    --bg-card-hover: rgba(25, 31, 44, 0.85);
    
    --primary: #ff6b00; /* Neon Orange */
    --primary-glow: rgba(255, 107, 0, 0.4);
    --primary-hover: #ff8526;
    
    --secondary: #00f0ff; /* Electric Cyan */
    --secondary-glow: rgba(0, 240, 255, 0.3);
    
    --accent-red: #ff2a4b;
    --accent-green: #00e676;
    --whatsapp-color: #25d366;

    --waze-color: #33ccff;
    --waze-dark: #0088cc;
    --maps-color: #4285f4;

    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --glass: blur(16px) saturate(180%);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255, 107, 0, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(0, 240, 255, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9e00 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}

.margin-top-30 {
    margin-top: 30px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: rgba(255, 107, 0, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 0, 0.25);
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #e05300 100%);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
    background: linear-gradient(135deg, #ff8026 0%, #ff5500 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-emergency {
    background: linear-gradient(135deg, var(--accent-red) 0%, #b3001e 100%);
    color: #fff;
    font-size: 0.9rem;
    padding: 10px 20px;
    box-shadow: 0 4px 15px rgba(255, 42, 75, 0.4);
    animation: pulseRed 2s infinite;
}

.btn-emergency:hover {
    transform: scale(1.05);
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* Waze & Google Maps Buttons */
.btn-waze {
    background: linear-gradient(135deg, var(--waze-color) 0%, var(--waze-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(51, 204, 255, 0.3);
}

.btn-waze:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 204, 255, 0.5);
    background: linear-gradient(135deg, #55d5ff 0%, #0099e6 100%);
}

.btn-maps {
    background: linear-gradient(135deg, #4285f4 0%, #2b6cb0 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-maps:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
    background: linear-gradient(135deg, #5a95f5 0%, #1a56a3 100%);
}

.btn-call-now {
    background: var(--primary);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* TOP BAR */
.top-bar {
    background: rgba(5, 7, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 25px;
}

.top-info span i {
    color: var(--primary);
    margin-right: 6px;
}

.top-nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-btn-waze, .nav-btn-maps {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-btn-waze {
    background: var(--waze-dark);
}

.nav-btn-waze:hover {
    background: var(--waze-color);
}

.nav-btn-maps {
    background: #2b6cb0;
}

.nav-btn-maps:hover {
    background: var(--maps-color);
}

.top-phone {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.top-phone:hover {
    color: #fff;
}

/* HEADER */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.9);
    backdrop-filter: var(--glass);
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--primary);
}

.spin-slow {
    animation: spin 12s linear infinite;
}

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

.brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.1;
    color: #fff;
}

.brand-name .highlight {
    color: var(--primary);
}

.brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--secondary);
    font-weight: 700;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

.badge-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge {
    background: var(--accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    animation: pulse 1.5s infinite;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 80px 0 100px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 25px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulseGreen 1.5s infinite;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* GPS Quick Launch Box */
.gps-quick-launch {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 30px;
}

.gps-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.gps-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-feat-item i {
    color: var(--primary);
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pulse-glow {
    animation: pulseGlow 2.5s infinite;
}

/* Hero Card Display */
.hero-card {
    padding: 20px;
    position: relative;
}

.card-header-badge {
    position: absolute;
    top: 35px;
    right: 35px;
    background: rgba(10, 12, 16, 0.85);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.hero-img {
    border-radius: var(--radius-sm);
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 15px;
}

.hero-card-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.hero-card-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hero-quick-stats {
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.hero-quick-stats strong {
    color: var(--primary);
}

/* EMERGENCY BANNER */
.emergency-banner {
    background: linear-gradient(90deg, #ff2a4b 0%, #e60021 100%);
    padding: 25px 0;
    box-shadow: 0 5px 25px rgba(255, 42, 75, 0.3);
}

.emergency-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.emergency-text {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.warning-icon {
    font-size: 2.8rem;
    animation: bounce 1s infinite alternate;
}

.emergency-text h2 {
    font-size: 1.6rem;
    color: #fff;
}

.emergency-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* SERVICES SECTION */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.services-3-col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .services-3-col {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.15);
    background: var(--bg-card-hover);
}

.highlight-card {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.08) 0%, rgba(18, 22, 31, 0.9) 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.service-features i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
    color: #fff;
}

/* MOBILE HIGHLIGHT SECTION */
.mobile-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-image-box {
    position: relative;
}

.video-wrapper {
    padding: 10px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mobile-video {
    width: 100%;
    border-radius: var(--radius-sm);
    max-height: 380px;
    object-fit: cover;
}

.mobile-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    z-index: 5;
}

.mobile-content h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.mobile-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-num {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 0.88rem;
    margin: 0;
}

/* REAL GALLERY SECTION */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    contain: layout style;
}

.gallery-item {
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-radius: var(--radius-md);
    contain: paint layout;
    transform: translateZ(0);
    will-change: transform;
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.2);
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    margin-bottom: 0;
}

/* WHY US SECTION */
.why-us-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.feat-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* GOOGLE REVIEWS SECTION */
.reviews-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.google-rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 15px 30px;
    border-radius: 20px;
    margin-top: 15px;
}

.rating-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffb800;
    line-height: 1;
}

.rating-stars {
    color: #ffb800;
    font-size: 1.3rem;
    margin: 5px 0;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    padding: 25px;
    border-radius: var(--radius-md);
}

.stars {
    color: #ffb800;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.review-text {
    font-style: italic;
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CONTACT SECTION - CENTERED */
.contact-section {
    padding: 100px 0;
}

.contact-card-centered {
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 30px;
}

.contact-action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.info-list-centered {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.map-embed-wrapper {
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 14px;
}

/* FOOTER */
.main-footer {
    background: #05070a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-links h4, .footer-urgency h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-phone {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-top: 10px;
}

.footer-bottom {
    background: #020304;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a:hover {
    color: #fff;
}

/* FLOATING EMERGENCY ACTION BUTTONS */
.floating-call {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    position: relative;
    transition: var(--transition);
}

.float-waze {
    background: var(--waze-dark);
}

.float-phone {
    background: linear-gradient(135deg, var(--primary) 0%, #d44800 100%);
    animation: pulseGlow 2s infinite;
}

.float-wa {
    background: var(--whatsapp-color);
}

.float-btn:hover {
    transform: scale(1.12);
}

.float-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(10, 12, 16, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

/* ANIMATIONS */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(255, 42, 75, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(255, 42, 75, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 42, 75, 0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px var(--primary-glow); }
    50% { box-shadow: 0 4px 35px rgba(255, 107, 0, 0.8); }
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-6px); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-container, .mobile-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-info span:not(:first-child) {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(10, 12, 16, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }

    .emergency-flex {
        flex-direction: column;
        text-align: center;
    }

    .emergency-text {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
