/* ==========================================================================
   Vees Tyre and Alignment Centre - Stylesheet
   ========================================================================== */

:root {
    --primary-red: #d32f2f;
    --primary-red-hover: #b71c1c;
    --secondary-dark: #0f172a;
    --accent-yellow: #fbc02d;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1da851;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    background-image: url('webiste-background.jpg');
    background-repeat: repeat;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-dark);
    line-height: 1.2;
}

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

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

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

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: rgba(248, 250, 252, 0.92);
}

.text-center { text-align: center; }
.rounded { border-radius: 8px; }
.shadow { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
}
.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-dark);
    color: var(--white);
}
.btn-secondary:hover {
    background-color: #1e293b;
    color: var(--white);
}

/* TOP BAR */
.top-bar {
    background-color: var(--secondary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--primary-red);
}

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

.top-info {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.top-info a, .top-info span {
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-info a:hover {
    color: var(--accent-yellow);
}

.top-location a {
    color: var(--accent-yellow);
    font-weight: 600;
}

/* NAVIGATION */
.main-header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-dark);
    letter-spacing: 1.5px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: var(--secondary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-dark);
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 480px;
}

.hero-slider, .slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
    max-width: 650px;
}

.badge-rmi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: var(--secondary-dark);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.badge-rmi img {
    height: 20px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #cbd5e1;
}

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

/* HIGHLIGHTS BAR */
.highlights-bar {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 25px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--accent-yellow);
}

.highlight-item h4 {
    color: var(--white);
    font-size: 1rem;
}

.highlight-item p {
    font-size: 0.8rem;
    color: #f8fafc;
}

/* SECTION TITLES */
.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.section-title .subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.underline {
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin-top: 10px;
}

.underline.center {
    margin: 10px auto 0 auto;
}

/* GRIDS */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

/* ABOUT SECTION */
.lead {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.rmi-badge {
    height: 60px;
    width: auto;
}

/* SERVICES SECTION */
.services-hero-img {
    margin-bottom: 40px;
}

.services-hero-img img {
    margin: 0 auto;
    max-height: 180px;
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-red);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.service-card ul li i {
    color: var(--primary-red);
    font-size: 0.8rem;
}

/* WHY CHOOSE US */
.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.why-list i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 3px;
}

.why-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary-dark);
}

.why-list p {
    font-size: 0.92rem;
    color: var(--text-light);
}

.guarantee-img img {
    margin: 0 auto;
    max-height: 280px;
}

/* BRANDS SECTION */
.brands-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.brand-row {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.brand-img {
    max-height: 70px;
    object-fit: contain;
}

/* CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.c-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-dark);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.c-card i {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.c-card h4 {
    margin-bottom: 5px;
}

.c-card-cta {
    background: #f1f5f9;
    border-left-color: var(--primary-red);
}

.contact-cta-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FOOTER (3 Column Black) */
.footer-black {
    background-color: #0b0f19;
    color: #94a3b8;
    padding: 60px 0 30px 0;
    font-size: 0.88rem;
    border-top: 4px solid var(--primary-red);
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-col p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.tsa-credit {
    margin-top: 15px;
    font-size: 0.82rem;
    color: #64748b;
}

.tsa-credit a {
    color: var(--accent-yellow);
    font-weight: 600;
}

.tsa-credit a:hover {
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .grid-2, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        display: none;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .hero-section {
        height: auto;
        padding: 80px 0;
    }
}