/* --- Global Resets & Variables --- */
:root {
    --primary-red: #d63031;
    --dark-bg: #1e272e;
    --light-grey: #f8f9fa;
    --text-dark: #2d3436;
    --white: #ffffff;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, .logo {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* --- Header & Navigation Fix --- */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-bg);
    letter-spacing: 1px;
}

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

/* Styling for the new <nav> structure */
header nav {
    display: flex;
    gap: 25px;
}

header nav a {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1rem;
    position: relative;
}

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

header nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

header nav a:hover::after {
    width: 100%;
}

.btn-call {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    width: 100%;
}

.badge {
    background: var(--primary-red);
    padding: 5px 15px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-weight: 700;
    display: inline-block;
    border-radius: 4px;
    margin: 10px;
}

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

.btn-secondary {
    background: #25d366; /* WhatsApp Green */
    color: var(--white);
}

/* --- Brand Expertise Bar --- */
.brand-expertise {
    background: var(--dark-bg);
    color: var(--white);
    padding: 30px 0;
}

.brand-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    opacity: 0.7;
}

/* --- Services & Grids --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
}

.section-title p {
    color: #666;
}

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

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* --- Interior Special Section --- */
.interior-special {
    padding: 80px 0;
    background: var(--light-grey);
}

.clean-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.clean-image, .clean-text {
    flex: 1;
    min-width: 300px;
}

.clean-image img {
    width: 100%;
    border-radius: 10px;
}

/* --- Accessories Grid --- */
.acc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.acc-item {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.acc-item i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

/* --- Footer --- */
footer {
    background: #111;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

footer h4 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

footer nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer nav a {
    color: #ccc;
    font-size: 0.9rem;
}

footer nav a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    header nav {
        display: none; /* Consider adding a hamburger menu later */
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}