:root {
    --primary-red: #e60000;
    --hover-red: #ff3333;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #111111;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --accent-blue: #007bff;
    --transition: all 0.3s ease;
}

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

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

/* --- Utilities --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.title-center {
    text-align: center;
    margin-bottom: 50px;
}

.title-center h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    display: inline-block;
    border-bottom: 4px solid var(--primary-red);
    padding-bottom: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--hover-red);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
}

/* --- Header & Nav --- */
header {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-red);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    line-height: 1;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    color: var(--primary-red);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-red);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--darker-bg);
    min-width: 220px;
    border-top: 2px solid var(--primary-red);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

nav ul li:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.dropdown-menu a:hover {
    background: #111;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
}

/* --- Hero Section --- */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)),
        url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
    padding: 0 10px;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.service-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    border-bottom-color: var(--primary-red);
    transform: translateY(-10px);
    background-color: #1a1a1a;
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- Footer --- */
footer {
    padding: 60px 0 20px;
    background-color: #000;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-red);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-socials a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--primary-red);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* --- Floating WhatsApp --- */
.floating-ws {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 9999;
    transition: var(--transition);
}

.floating-ws:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128c7e;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    border: 1px solid #333;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-right: 20px;
    line-height: 1.4;
}

.cookie-banner a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
}

.btn-accept {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    nav {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
        gap: 8px;
    }

    .logo img {
        height: 35px;
    }

    .phone-header {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

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

    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
