:root {
    --primary-red: #E31E24;
    --accent-red: #ff333a;
    --bg-dark: #0a0a0a;
    --bg-panel: #141414;
    --text-light: #f0f0f0;
    --text-grey: #a0a0a0;
}

.text-grey {
    color: var(--text-grey) !important;
}

.text-primary {
    color: var(--primary-red) !important;
}

.text-light {
    color: var(--text-light) !important;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.full-screen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    background-color: rgba(10, 10, 10, 0.95) !important;
    border-bottom: 2px solid var(--primary-red);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff !important;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin-left: 20px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, var(--bg-dark) 100%),
        url('../images/badin-auto-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.btn-main {
    background-color: var(--primary-red);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.btn-main:hover {
    background-color: var(--accent-red);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
}

/* --- Services Table --- */
.services-section {
    background-color: var(--bg-dark);
}

.table-container {
    background: var(--bg-panel);
    border-radius: 10px;
    padding: 2px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border-top: 3px solid var(--primary-red);
}

.table-custom {
    margin-bottom: 0;
    color: var(--text-light);
}

.table-custom th {
    background-color: #222;
    color: var(--primary-red);
    border-bottom: 2px solid #333;
    font-size: 1.1rem;
    padding: 20px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.table-custom td {
    background-color: var(--bg-panel);
    border-bottom: 1px solid #333;
    padding: 20px;
    vertical-align: middle;
    color: #ddd;
}

.table-custom tr:hover td {
    background-color: #1a1a1a;
    color: #fff;
}

.price-tag {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: bold;
}

/* --- Contact Section --- */
.contact-section {
    background-color: #050505;
}

.info-card {
    background: var(--bg-panel);
    padding: 40px;
    border-left: 5px solid var(--primary-red);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    border-radius: 5px;
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

/* Make Google Maps Dark */
iframe {
    filter: invert(90%) hue-rotate(180deg) contrast(90%);
}

.maps-class {
    padding: 0px 15px
}

/* --- Footer --- */
footer {
    background-color: #000;
    padding: 30px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .maps-class {
        padding: 0;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .full-screen-section {
        min-height: auto;
        padding: 100px 0;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        margin-right: 0;
    }

    .navbar-toggler {
        padding: 4px 8px;
        font-size: 1rem;
    }

    .navbar {
        padding: 10px 0;
    }
}