:root {
    --bg-light: #ffffff;
    --bg-alt: #f8f9fa;
    --border-light: #e9ecef;
    --accent-primary: #F29A52; /* Vivid Orange text */
    --accent-hover: #e0853c;
    --orange-gradient: linear-gradient(135deg, #FF9A44 0%, #E65C00 100%); /* Premium mixed gradient */
    --accent-secondary: #457b9d; /* Trustworthy blue */
    --text-primary: #1d3557;
    --text-secondary: #4a4e69;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.bg-alt {
    background-color: var(--bg-alt);
}

.text-accent {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--orange-gradient);
    color: #0F1420;
    box-shadow: 0 4px 15px rgba(242, 154, 82, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E65C00 0%, #CC5200 100%);
    box-shadow: 0 6px 20px rgba(242, 154, 82, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.btn-outline:hover {
    background: var(--orange-gradient);
    border-color: transparent;
    color: #0F1420;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(135deg, #0F1420 0%, #1E2333 50%, #0F1420 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-brand span {
    color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    color: #cbd5e1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-contact-desktop {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-call-btn {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Sections */
section {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    word-wrap: break-word;
    hyphens: auto;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0F1420 0%, #1E2333 50%, #0F1420 100%);
    color: #fff;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--accent-primary);
    transform: scale(1.3);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
    mix-blend-mode: luminosity;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: fadeRight 1s ease forwards 0.2s;
    opacity: 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(242, 154, 82, 0.1);
    color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(242, 154, 82, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #fff;
}

.hero-description {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeLeft 1s ease forwards 0.4s;
    opacity: 0;
}

.hero-image-grid {
    position: relative;
    width: 100%;
}

.hero-img-main {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}

.glass-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: rgba(15, 20, 32, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.badge-icon {
    font-size: 2rem;
    color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background: rgba(242, 154, 82, 0.15);
    padding: 12px;
    border-radius: 12px;
}

.glass-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.glass-card p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
}

.hero-stats {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.h-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
}

.h-stat-text {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.h-stat-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.h-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (min-width: 992px) {
    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

/* Stats Section */
.stats {
    background: var(--orange-gradient);
    padding: 50px 5%;
    color: #0F1420;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/tyre marks.svg') center/cover fixed;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.stats-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.service-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Testimonials */
.testimonials {
    background: var(--orange-gradient);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/tyre marks.svg') center/cover fixed;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: #0F1420;
}

.testimonial-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--orange-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.google-review-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #4285F4;
    font-size: 1.5rem;
}

/* SEO Content Block */
.seo-block {
    background: #fff;
    padding: 60px 5%;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.seo-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.seo-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.seo-keywords {
    font-size: 0.1rem;
    color: var(--bg-light); /* Hide visually by making it same color as background */
    opacity: 0.01;
    margin-top: 10px;
    text-align: justify;
    user-select: none;
}

/* Blogs */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.blog-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 5%;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0F1420 0%, #1E2333 50%, #0F1420 100%);
    color: #fff;
    padding: 80px 5% 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/tyre marks.svg') center/cover fixed;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto 50px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-primary);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
}

.footer-col ul li a:hover {
    color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: #cbd5e1;
    align-items: flex-start;
}

.contact-list i {
    color: var(--accent-primary); background: var(--orange-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-top: 5px;
}

.hours-table {
    width: 100%;
    color: #cbd5e1;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-call {
    background: var(--orange-gradient);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-contact-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 20, 32, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 999;
        display: flex;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.4rem;
    }

    .mobile-call-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
        background: var(--orange-gradient);
        color: #fff !important;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 700;
    }

    .mobile-call-btn::after {
        display: none; /* Hide hover underline */
    }

    .hero-title {
        font-size: 2.2rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .inner-hero h1 {
        font-size: 2.2rem !important;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero {
        text-align: center;
        padding-top: 120px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .glass-card {
        left: 20px;
        bottom: 20px;
        transform: scale(0.9);
    }

    .section-title {
        font-size: 2.2rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .fab-container {
        right: 20px;
        bottom: 20px;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
