/* /assets/css/style.css */
/* ========================================================================
   PREMIUM RED & WHITE ARCHITECTURE - Mechanic24x7
======================================================================== */

/* --- 1. CSS VARIABLES (INVERTED FOR RED & WHITE THEME) --- */
:root {
    --primary: #E60000; /* High-Performance Red matching your image */       
    --primary-glow: rgba(230, 0, 0, 0.25);
    --danger: #cc0000;
    --danger-glow: rgba(204, 0, 0, 0.3);
    
    /* Backgrounds inverted to Light Mode */
    --dark-bg: #ffffff; /* Main Background */
    --section-bg: #f4f6f9; /* Soft Gray alternating sections */
    --card-bg: #ffffff; /* White Cards */
    
    /* Text inverted to Dark Mode */
    --text-light: #111111; /* Main Dark Text */
    --text-muted: #5c636a; /* Professional Gray Text */
    
    --whatsapp: #25D366;
    --border-subtle: rgba(0, 0, 0, 0.08); /* Dark subtle border */
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --h1-fluid: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    --h2-fluid: clamp(2rem, 4vw, 3.2rem);
}

/* --- 2. GLOBAL RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background-color: var(--dark-bg); color: var(--text-light); 
    font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.6; 
    overflow-x: hidden; -webkit-font-smoothing: antialiased; 
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { width: 90%; max-width: 1280px; margin: 0 auto; padding: 0 15px; }

/* Text Gradient adjusted for light backgrounds */
.text-gradient { background: linear-gradient(135deg, #111111 0%, var(--primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-title { text-align: center; font-size: var(--h2-fluid); margin-bottom: 4rem; }

/* --- 3. SOS & ENTRY ANIMATIONS --- */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

@keyframes sosPulseAlert {
    0% { box-shadow: 0 0 0 0 var(--danger-glow); transform: scale(1); }
    50% { box-shadow: 0 0 0 15px rgba(230, 0, 0, 0); transform: scale(1.02); }
    100% { box-shadow: 0 0 0 0 rgba(230, 0, 0, 0); transform: scale(1); }
}
@keyframes sosBlink {
    0%, 100% { color: var(--danger); text-shadow: 0 0 15px var(--danger-glow); }
    50% { color: #fff; text-shadow: none; }
}

/* --- 4. BUTTONS & CTAs --- */
.btn { 
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 30px; font-weight: 700; border-radius: 50px; 
    cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; 
    font-size: 0.9rem; border: none; position: relative; overflow: hidden;
}

.btn-sos { background: var(--primary); color: #fff; animation: sosPulseAlert 1.5s infinite; border: 2px solid var(--danger); }
.btn-sos:hover { background: var(--danger); animation: none; transform: translateY(-3px); box-shadow: 0 10px 30px var(--danger-glow); border-color: var(--danger); color: #fff; }
.btn-sos i { animation: sosBlink 1s infinite; }
.btn-sos:hover i { animation: none; color: #fff; }

.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: #1ebc5a; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); color: #fff; }

.btn-outline { border: 1px solid var(--border-subtle); color: var(--text-light); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* --- 5. HEADER (UPDATED TO SOLID RED THEME) --- */
header#main-header { 
    position: fixed; top: 0; width: 100%; z-index: 1000; 
    background: var(--primary) !important; /* Forced to solid brand red */
    border-bottom: 1px solid rgba(0,0,0,0.1); transition: var(--transition); 
    box-shadow: 0 4px 20px rgba(230,0,0,0.3) !important;
}
.header-content { display: flex; justify-content: space-between; align-items: center; height: 90px; transition: var(--transition); }
.logo { font-size: 1.8rem; font-family: 'Outfit', sans-serif; display: flex; align-items: center; gap: 10px; font-weight: 800; color: #ffffff; }
.logo img { height: 45px; width: auto; }
.logo i { color: #ffdd00; } /* Yellow icon to pop against red */
.logo span { color: #ffffff; font-weight: 400; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding-left: 0; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 8px; }
.nav-links a:hover { color: #ffdd00; } /* Yellow hover state */
.nav-links a i { color: rgba(255,255,255,0.6); opacity: 0.8; transition: var(--transition); }
.nav-links a:hover i { color: #ffdd00; transform: scale(1.2); }
.hamburger { display: none; cursor: pointer; border: none; background: transparent; color: #ffffff; font-size: 1.8rem; }

/* INVERT HEADER BUTTON SO IT DOESN'T DISAPPEAR INTO THE RED BACKGROUND */
header#main-header .btn {
    background: #ffffff !important;
    color: var(--primary) !important;
    border: 2px solid #ffffff !important;
    animation: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}
header#main-header .btn:hover {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
    transform: translateY(-2px);
}
header#main-header .btn i { color: var(--primary) !important; animation: none !important; }
header#main-header .btn:hover i { color: #ffffff !important; }

/* --- 6. HERO SECTION (HOME PAGE) --- */
.hero { 
    position: relative; 
    min-height: 80vh; 
    display: flex; align-items: center; 
    background-size: cover; 
    background-position: top center;
    background-color: #111; 
    z-index: 1;
}
.hero::before { 
    content: ''; position: absolute; inset: 0; 
    background: linear-gradient(110deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.3) 100%); 
    z-index: -1;
}
.hero-content { position: relative; z-index: 2; max-width: 750px; padding-top: 100px; }

.hero-content > * { animation: fadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) backwards; }
.hero-content .badge-pro { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.2s; }
.hero-content p { animation-delay: 0.3s; }
.hero-content .hero-btns { animation-delay: 0.4s; }
.hero-content .trust-metrics { animation-delay: 0.6s; }

.hero .text-gradient, .hero-inner .text-gradient { 
    background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.hero p, .hero-inner p { 
    color: #ffffff !important; 
    text-shadow: 0 2px 6px rgba(0,0,0,0.9);
    font-weight: 400;
}
.hero .badge-pro { background: rgba(230, 0, 0, 0.5); border-color: rgba(230, 0, 0, 0.8); color: #fff; padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 2rem; letter-spacing: 1px; text-transform: uppercase; }
.hero h1 { font-size: var(--h1-fluid); margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.trust-metrics { display: flex; gap: 3rem; margin-top: 4rem; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; flex-wrap: wrap; justify-content: center; text-align: center; }
.metric { display: flex; flex-direction: column; gap: 5px; align-items: center; text-align: center; padding: 0 15px; }
.metric i { color: var(--primary); font-size: 2.5rem; margin-bottom: 12px; transition: var(--transition); }
.metric:hover i { transform: translateY(-5px) scale(1.1); filter: drop-shadow(0 0 10px var(--primary-glow)); }
.trust-metrics .metric-val { font-size: 1.6rem; font-weight: 800; font-family: 'Outfit', sans-serif; color: #ffffff !important; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.trust-metrics .metric-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.8) !important; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

/* --- 7. HERO SECTION (INNER PAGES) --- */
.hero-inner {
    position: relative;
    padding: 130px 0 60px; 
    background-size: cover;
    background-position: center center; 
    background-color: #111;
    z-index: 1;
}
.hero-inner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.85) 100%);
    z-index: -1;
}
.hero-inner-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-inner-content > * { animation: fadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) backwards; }
.hero-inner-content div { animation-delay: 0.1s; }
.hero-inner-content h1 { animation-delay: 0.2s; }
.hero-inner-content p { animation-delay: 0.3s; }
.hero-inner-content .d-flex { animation-delay: 0.4s; }

/* --- 8. SERVICES GRID --- */
.services { padding: 8rem 0; background: var(--section-bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; align-items: stretch; }
.service-card { background: var(--card-bg); border-radius: 20px; overflow: hidden; border: 1px solid var(--border-subtle); transition: var(--transition); display: flex; flex-direction: column; height: 100%; position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.service-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.img-wrapper { 
    width: 100%; 
    aspect-ratio: 4/3; 
    overflow: hidden; 
    position: relative; 
    background: #f1f1f1; 
}
.img-wrapper::after { 
    content: ''; position: absolute; inset: 0; 
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 30%); 
    pointer-events: none;
}
.service-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
    transition: transform 0.6s ease; 
}
.service-card:hover .service-img { transform: scale(1.08); }

.service-body { padding: 0 2rem 2rem; display: flex; flex-direction: column; flex-grow: 1; position: relative; z-index: 2; margin-top: -30px; }
.service-icon { 
    width: 60px; height: 60px; background: #fff; color: var(--primary); 
    border-radius: 14px; display: flex; align-items: center; justify-content: center; 
    font-size: 1.5rem; margin-bottom: 1.2rem; 
    border: 4px solid var(--card-bg); 
    box-shadow: 0 10px 20px rgba(230,0,0,0.15); transition: var(--transition); 
}
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: rotateY(15deg); border-color: var(--primary); }

.service-body h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--text-light); }
.service-body p { color: var(--text-muted) !important; font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; text-shadow: none; }
.service-link { color: var(--primary); font-weight: 700; display: flex; align-items: center; gap: 8px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; margin-top: auto; }
.service-link:hover { gap: 15px; color: var(--danger); }

/* --- 9. HOW WE DO IT --- */
.process { padding: 8rem 0; background: var(--dark-bg); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; text-align: center; }
.step-card { padding: 2.5rem 1.5rem; background: var(--section-bg); border-radius: 20px; border: 1px solid var(--border-subtle); transition: var(--transition); }
.step-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 15px 30px rgba(230,0,0,0.1); }
.step-number { width: 70px; height: 70px; background: rgba(230, 0, 0, 0.1); border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); margin: 0 auto 1.5rem; transition: all 0.4s ease; }
.step-number i { font-size: 1.8rem; transition: var(--transition); }
.step-card:hover .step-number { background: var(--primary); color: #fff; box-shadow: 0 0 25px var(--primary-glow); transform: scale(1.1); border-color: transparent; }
.step-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--text-light); }
.step-card p { color: var(--text-muted) !important; font-size: 0.95rem; }

/* --- 10. EEAT SECTION --- */
.eeat { padding: 8rem 0; background: var(--section-bg); }
.eeat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.eeat-visual { position: relative; }
.eeat-img-main { width: 100%; border-radius: 30px; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--border-subtle); box-shadow: 0 30px 60px rgba(0,0,0,0.1); background: #f1f1f1 !important; }

.eeat-experience-badge { 
    position: absolute; bottom: -30px; right: -30px; background: var(--card-bg); padding: 2rem; 
    border-radius: 24px; border: 1px solid var(--border-subtle); text-align: center; z-index: 2; 
    border-bottom: 3px solid var(--primary); 
    animation: sosPulseAlert 2s infinite; 
}
.eeat-experience-badge:hover { animation: none; border-color: var(--primary); box-shadow: 0 0 30px var(--primary-glow); }
.eeat-experience-badge span { display: block; font-size: 3.5rem; font-family: 'Outfit'; font-weight: 800; color: var(--primary); line-height: 1; animation: sosBlink 2s infinite; }
.eeat-experience-badge p { color: var(--text-light); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; }

.eeat-content h2 { font-size: var(--h2-fluid); margin-bottom: 1.5rem; }
.eeat-list { list-style: none; margin: 2rem 0; padding: 0; }

.eeat-list li {
    background: var(--card-bg); padding: 1.5rem; border-radius: 15px; border: 1px solid var(--border-subtle);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); display: flex; align-items: flex-start;
    gap: 15px; margin-bottom: 1.2rem; position: relative; overflow: hidden; transform: translateZ(0); 
}
.eeat-list li:hover { transform: translateX(8px) translateZ(0); border-color: var(--primary); box-shadow: 0 5px 20px rgba(230, 0, 0, 0.1); }
.eeat-list li::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--primary); opacity: 0; transition: var(--transition); }
.eeat-list li:hover::before { opacity: 1; box-shadow: 0 0 10px var(--primary); }
.eeat-icon-box {
    background: rgba(230, 0, 0, 0.1); width: 50px; height: 50px; min-width: 50px;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.4rem; transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.eeat-list li:hover .eeat-icon-box { background: var(--primary); color: #fff; box-shadow: 0 0 15px var(--primary-glow); }
.eeat-list li strong { color: var(--text-light); display: block; margin-bottom: 4px; font-size: 1.1rem; }
.eeat-list li div { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* --- 11. REVIEWS --- */
.reviews { padding: 8rem 0; background: var(--dark-bg); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; align-items: stretch; }
.review-card { 
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem; border-radius: 20px; border: 1px solid var(--border-subtle); 
    position: relative; display: flex; flex-direction: column; transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(230, 0, 0, 0.3); }
.review-card::before { content: '\201C'; position: absolute; top: 10px; right: 25px; font-size: 5rem; color: rgba(0,0,0,0.05); font-family: serif; line-height: 1; pointer-events: none; }
.stars { color: var(--primary); margin-bottom: 1.5rem; font-size: 1rem; letter-spacing: 3px; }
.review-text { font-style: italic; color: var(--text-light); margin-bottom: 2rem; font-size: 1.05rem; flex-grow: 1; line-height: 1.8; opacity: 0.9; }
.reviewer-info { display: flex; align-items: center; gap: 15px; margin-top: auto; border-top: 1px solid var(--border-subtle); padding-top: 1.5rem; }
.reviewer-avatar { width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-family: 'Outfit'; font-size: 1.3rem; }
.reviewer-details h4 { font-size: 1.1rem; margin-bottom: 2px; color: var(--text-light); }
.reviewer-details span { font-size: 0.85rem; color: var(--text-muted); }

/* --- 12. FAQ --- */
#faq { padding: 8rem 0; background: var(--section-bg); }
#faqAccordion .accordion-item { background-color: #fff !important; border: 1px solid var(--border-subtle) !important; margin-bottom: 1.2rem; border-radius: 12px !important; overflow: hidden; transition: var(--transition); box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
#faqAccordion .accordion-item:hover { border-color: rgba(230, 0, 0, 0.3) !important; }
#faqAccordion .accordion-button { background-color: #fff !important; color: var(--text-light) !important; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.15rem; padding: 1.5rem 2rem; box-shadow: none !important; border: none !important; }
#faqAccordion .accordion-button:not(.collapsed) { background-color: rgba(230, 0, 0, 0.05) !important; color: var(--primary) !important; border-bottom: 1px solid var(--border-subtle) !important; }
#faqAccordion .accordion-button::after { filter: none; }
#faqAccordion .accordion-body { color: var(--text-muted) !important; padding: 2rem; font-size: 1.05rem; line-height: 1.8; background-color: #fff !important; }

/* --- 13. TYPOGRAPHY OVERRIDES --- */
.text-muted { color: var(--text-muted) !important; }
.text-light { color: var(--text-light) !important; } 
.eeat-content p, .eeat-visual p, .process p, .services p { color: var(--text-muted) !important; font-weight: 400; text-shadow: none; }

/* --- 14. FLOATING FABS --- */
.fab-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 999; }
.fab { width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; transition: var(--transition); text-decoration: none; position: relative; }
.fab::after { content: attr(aria-label); position: absolute; right: 80px; background: #fff; color: var(--text-light); padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: var(--transition); border: 1px solid var(--border-subtle); pointer-events: none; font-family: 'Plus Jakarta Sans'; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.fab:hover::after { opacity: 1; transform: translateX(0); }
.fab-call { background: var(--primary); animation: sosPulseAlert 2s infinite; border: 2px solid var(--danger); }
.fab-call:hover { animation: none; transform: scale(1.1); background: var(--danger); box-shadow: 0 10px 25px var(--danger-glow); color: #fff;}
.fab-wa { background: var(--whatsapp); font-size: 2.2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); color: #fff; }

/* --- 15. FOOTER --- */
footer { background: #f8f9fa; padding: 5rem 0 2rem; border-top: 1px solid var(--border-subtle); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 4rem; }

.footer-brand .logo img { max-height: 45px; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 90%; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.05) !important; color: var(--text-light); transition: var(--transition); text-decoration: none !important; outline: none !important; box-shadow: none !important; }
.social-icons a:hover { background-color: var(--primary) !important; color: #fff; transform: translateY(-3px); }

.footer-col h3 { color: var(--text-light); font-size: 1.2rem; font-weight: 800; margin-bottom: 1.8rem; position: relative; padding-bottom: 10px; font-family: 'Outfit', sans-serif; letter-spacing: 0.5px; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 35px; height: 3px; background: var(--primary); border-radius: 2px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 14px; display: flex; align-items: center; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: var(--transition); display: flex; align-items: center; background: transparent !important; outline: none !important; box-shadow: none !important; }
.footer-links a i { color: var(--primary); font-size: 0.85rem; margin-right: 12px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); background: transparent !important; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 18px; }
.footer-contact li i { color: var(--primary); font-size: 1.1rem; padding-top: 4px; flex-shrink: 0; }
.footer-contact li span, .footer-contact li a { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; text-decoration: none; transition: var(--transition); background: transparent !important; outline: none !important; box-shadow: none !important; word-break: break-word; }
.footer-contact li a:hover { color: var(--primary); background: transparent !important; }

.footer-bottom { text-align: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 2rem; color: var(--text-muted); }
.footer-bottom p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }

/* --- 16. HIGH-TECH DEVELOPER CREDIT ANIMATION --- */
.agency-credit-container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.agency-credit-text { font-size: 0.85rem; color: rgba(0, 0, 0, 0.4); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.agency-link { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; background: linear-gradient(90deg, var(--text-light) 0%, var(--primary) 50%, var(--text-light) 100%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none !important; display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px; border-radius: 50px; border: 1px solid rgba(230, 0, 0, 0.2); background-color: rgba(230, 0, 0, 0.05); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); animation: textShine 3s linear infinite; position: relative; overflow: hidden; outline: none !important; }
.agency-link i { font-size: 1.1rem; -webkit-text-fill-color: var(--primary); animation: techPulse 2s infinite; }
.agency-link::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(230, 0, 0, 0.3), transparent); transition: all 0.5s ease; pointer-events: none; }
.agency-link:hover { transform: translateY(-3px) scale(1.05); border-color: var(--primary); box-shadow: 0 10px 20px rgba(230, 0, 0, 0.15), inset 0 0 10px rgba(230, 0, 0, 0.05); }
.agency-link:hover::before { left: 100%; transition: all 0.6s ease; }
@keyframes textShine { to { background-position: 200% center; } }
@keyframes techPulse { 0%, 100% { filter: drop-shadow(0 0 2px var(--primary)); transform: scale(1); } 50% { filter: drop-shadow(0 0 10px var(--primary)); transform: scale(1.2); } }

/* --- 17. COOKIE CONSENT BANNER --- */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px); border-top: 1px solid var(--primary); padding: 15px 0; z-index: 9999; transform: translateY(120%); transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 -10px 40px rgba(0,0,0,0.1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.cookie-text { font-size: 0.9rem; color: var(--text-light); margin: 0; flex: 1; min-width: 300px; line-height: 1.5; }
.cookie-text a { color: var(--primary); text-decoration: none; font-weight: 600; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.btn-cookie-accept { background: var(--primary); color: #fff; border: none; padding: 10px 25px; border-radius: 50px; font-weight: 800; font-size: 0.9rem; cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
.btn-cookie-accept:hover { background: var(--text-light); box-shadow: 0 0 15px rgba(0,0,0,0.2); }

/* --- 18. RESPONSIVE MEDIA QUERIES --- */
.desktop-only-btn { display: block; }
.mobile-only-btn { display: none; width: 100%; padding: 0 20px; }

@media (max-width: 1024px) {
    .eeat-grid { grid-template-columns: 1fr; gap: 4rem; }
    .eeat-visual { max-width: 700px; margin: 0 auto; }
    .eeat-experience-badge { right: 0; bottom: -20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .desktop-only-btn { display: none; }
    .mobile-only-btn { display: block; margin-top: 20px; }
    .hamburger { display: block; }
    .nav-links { 
        position: fixed; top: 90px; left: -100%; width: 100%; height: calc(100vh - 90px); 
        /* MOBILE MENU: Changed to Red to match the solid red header */
        background: var(--primary) !important; 
        backdrop-filter: blur(20px); 
        flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 3rem;
        transition: 0.4s ease-in-out; gap: 2rem; overflow-y: auto;
    }
    .nav-links.active { left: 0; }
    .nav-links a { font-size: 1.3rem; color: #ffffff; }
    
    .hero { background-position: top center; }
    .hero-inner { padding: 120px 0 60px; } 
    
    .hero-content { text-align: center; padding-top: 130px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .trust-metrics { justify-content: center; flex-wrap: wrap; gap: 2rem; }
    .hero-btns { flex-direction: column; width: 100%; gap: 15px; }
    .btn { width: 100%; padding: 16px; } 
    
    .services-grid, .process-grid, .review-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: left; }
    .footer-col h3::after { left: 0; }
    
    .fab-container { bottom: 20px; right: 20px; }
    .fab { width: 55px; height: 55px; font-size: 1.4rem; }
    .fab-wa { font-size: 1.8rem; }
    .fab::after { display: none; }
}

/* --- 19. WHATSAPP MODAL STYLES --- */
.form-control:focus, .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(230, 0, 0, 0.25) !important;
}