/* Global Styles */
:root {
    --primary-color: #d9230f; /* Red */
    --secondary-color: #000000; /* Black */
    --light-color: #ffffff; /* White */
    --dark-color: #111111; /* Dark Gray */
    --success-color: #d9230f; /* Red */
    --warning-color: #d9230f; /* Red */
    --danger-color: #d9230f; /* Red */
    --text-color: #f0f0f0;
    --text-muted: #bbbbbb;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --hero-bg: #000000;
    --hero-text: #ffffff;
}

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

html {
    margin: 0 !important;
    padding: 0 !important;
    background: #000000;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--light-color);
    background-color: #000000;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
}

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

a:hover {
    color: #b81d0d;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

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

.btn-primary:hover {
    background-color: #b81d0d;
    border-color: #b81d0d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 35, 15, 0.3);
}

.btn-outline-light {
    border-color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    margin: 0 !important;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 1;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    transform: scale(1.03);
}

.navbar-brand .main-logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand .brand-main {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-brand .brand-tagline {
    font-size: 0.65rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 2px;
}

.spinning-wheel-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
    margin: 0 2px;
    vertical-align: middle;
    font-weight: 700;
    color: var(--primary-color);
}

.rotating-tire {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 2s linear infinite;
    opacity: 0.8;
}

/* Simple tire pattern */
.rotating-tire::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

/* Hero section specific styles */
.hero-title .spinning-wheel-text {
    width: 40px;
    height: 40px;
}

.hero-title .rotating-tire {
    border-width: 2.5px;
}

.hero-title .rotating-tire::after {
    border-width: 2px;
    width: 65%;
    height: 65%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.navbar.scrolled {
    background: #000000 !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* Fix for navigation scroll offset */
section {
    scroll-margin-top: 80px;
    padding: 80px 0;
    background: #000000;
    position: relative;
}

/* Ensure all sections have consistent styling */
#services {
    padding: 80px 0;
    background: #000000;
    border-bottom: 1px solid #222222;
    position: relative;
}

#showcase {
    padding: 80px 0;
    background: #000000;
    position: relative;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

#testimonials {
    padding: 80px 0;
    background: #000000;
    position: relative;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

#contact {
    padding: 80px 0;
    background: #000000;
    position: relative;
    border-top: 1px solid #222;
}

.contact-form,
.contact-form-card {
    background: #000000;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(217, 35, 15, 0.3);
}

.contact-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(217, 35, 15, 0.3) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
}

.contact-input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(217, 35, 15, 0.15) !important;
    color: #ffffff !important;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Enhanced Contact Link Hover Effects */
.contact-link {
    transition: all 0.3s ease;
    display: block;
    border-radius: 8px;
    padding: 10px;
    margin: -10px;
}

.contact-link:hover {
    background: rgba(217, 35, 15, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-link:hover h5 {
    color: var(--primary-color) !important;
}

.contact-link:hover .text-white {
    color: #ffffff !important;
}

.navbar .container {
    padding: 0 1.5rem;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-nav .nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
    transform: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px 0 20px;
    background: #000000;
    overflow: hidden;
    margin-top: 80px !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(217, 35, 15, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(217, 35, 15, 0.08) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(217, 35, 15, 0.05) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-logo {
    max-width: 500px;
    height: auto;
    animation: fadeInDown 1s ease-out, pulse 2s ease-in-out 2s infinite;
    filter: drop-shadow(0 10px 30px rgba(217, 35, 15, 0.8));
    margin-top: 0;
    margin-bottom: 0.5rem !important;
}

/* Tyre Animation */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Road Stripe Animations */
.road-stripe {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(217, 35, 15, 0.6), transparent);
    width: 200px;
    animation: moveStripe 3s linear infinite;
}

.stripe-1 {
    top: 20%;
    left: -200px;
    animation-delay: 0s;
}

.stripe-2 {
    top: 50%;
    left: -200px;
    animation-delay: 1s;
}

.stripe-3 {
    top: 80%;
    left: -200px;
    animation-delay: 2s;
}

@keyframes moveStripe {
    0% {
        left: -200px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Floating Tyre and Rim Animations */
.floating-tyre {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 10px solid rgba(217, 35, 15, 0.6);
    border-radius: 50%;
    border-top-color: rgba(217, 35, 15, 1);
    border-right-color: rgba(217, 35, 15, 0.8);
    box-shadow: 0 0 40px rgba(217, 35, 15, 0.7), inset 0 0 20px rgba(0, 0, 0, 0.8);
    animation: floatRotate 4s linear infinite;
}

.floating-tyre::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 5px solid rgba(217, 35, 15, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(217, 35, 15, 0.7);
}

.floating-tyre::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: rgba(217, 35, 15, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(217, 35, 15, 1), 
                0 -40px 0 -38px rgba(217, 35, 15, 0.9),
                40px 0 0 -38px rgba(217, 35, 15, 0.9),
                0 40px 0 -38px rgba(217, 35, 15, 0.9),
                -40px 0 0 -38px rgba(217, 35, 15, 0.9);
}

.tyre-anim-1 {
    top: 10%;
    right: 10%;
    animation: floatRotate 15s ease-in-out infinite;
    opacity: 0.6;
    width: 100px;
    height: 100px;
}

.tyre-anim-2 {
    bottom: 15%;
    left: 8%;
    animation: floatRotateReverse 18s ease-in-out infinite;
    opacity: 0.55;
    width: 80px;
    height: 80px;
}

.tyre-anim-3 {
    top: 40%;
    right: 5%;
    animation: floatRotate 20s ease-in-out infinite;
    opacity: 0.58;
    width: 90px;
    height: 90px;
}

.tyre-anim-4 {
    bottom: 35%;
    right: 18%;
    animation: floatRotateReverse 16s ease-in-out infinite;
    opacity: 0.6;
    width: 70px;
    height: 70px;
}

.floating-rim {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 8px solid rgba(217, 35, 15, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(217, 35, 15, 0.8), inset 0 0 15px rgba(217, 35, 15, 0.3);
    animation: floatRotate 3.5s linear infinite;
}

.floating-rim::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid rgba(217, 35, 15, 0.4);
    border-radius: 50%;
}

.rim-anim-1 {
    top: 50%;
    left: 5%;
    animation: floatRotate 22s ease-in-out infinite;
    opacity: 0.6;
    width: 90px;
    height: 90px;
}

.rim-anim-2 {
    top: 25%;
    left: 15%;
    animation: floatRotateReverse 19s ease-in-out infinite;
    opacity: 0.58;
    width: 75px;
    height: 75px;
}

/* Floating Animation Keyframes */
@keyframes floatRotate {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(90deg);
    }
    50% {
        transform: translate(20px, 0) rotate(180deg);
    }
    75% {
        transform: translate(10px, 15px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes floatRotateReverse {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-10px, -15px) rotate(-90deg);
    }
    50% {
        transform: translate(-20px, 0) rotate(-180deg);
    }
    75% {
        transform: translate(-10px, 15px) rotate(-270deg);
    }
    100% {
        transform: translate(0, 0) rotate(-360deg);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
}

/* Spark Particles */
.spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(217, 35, 15, 0.8), 0 0 20px rgba(217, 35, 15, 0.6);
    animation: sparkle 4s ease-in-out infinite;
}

.spark-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.spark-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.spark-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

.spark-4 {
    bottom: 40%;
    right: 25%;
    animation-delay: 3s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateTyre {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hero Badge Styles */
.hero-badge {
    background: rgba(217, 35, 15, 0.1);
    border: 2px solid rgba(217, 35, 15, 0.4);
    border-radius: 15px;
    padding: 20px 15px;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-badge:hover {
    background: rgba(217, 35, 15, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 35, 15, 0.4);
}

.hero-badge i {
    filter: drop-shadow(0 0 10px rgba(217, 35, 15, 0.6));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 0.5rem !important;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(217, 35, 15, 0.8), 3px 3px 6px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1s ease-out 0.2s both;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.spinning-wheel-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.rotating-tire {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    border: 8px solid rgba(217, 35, 15, 0.3);
    border-top-color: var(--primary-color);
    border-right-color: rgba(217, 35, 15, 0.7);
    border-radius: 50%;
    animation: spinWheel 2s linear infinite;
    box-shadow: 0 0 30px rgba(217, 35, 15, 0.8), inset 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
}

.rotating-tire::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5rem;
    height: 1.5rem;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(217, 35, 15, 1);
}

.rotating-tire::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(217, 35, 15, 1),
                0 -1.5rem 0 -0.4rem var(--primary-color),
                1.5rem 0 0 -0.4rem var(--primary-color),
                0 1.5rem 0 -0.4rem var(--primary-color),
                -1.5rem 0 0 -0.4rem var(--primary-color);
}

@keyframes spinWheel {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.9;
    animation: fadeInUp 1s ease-out 0.6s both;
    font-weight: 400;
}

.hero-section h1 span {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hero-section .container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.hero-section h1::after {
    content: '';
    display: none;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
}

.hero-section p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Services Section */
#services {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #222222;
}

/* About Section */
#about {
    padding: 80px 0;
    background: #000000;
    position: relative;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(217, 35, 15, 0.4);
    transition: all 0.4s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(217, 35, 15, 0.6);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(217, 35, 15, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.about-badge i {
    filter: drop-shadow(0 0 10px rgba(217, 35, 15, 0.8));
}

.about-highlight {
    background: rgba(217, 35, 15, 0.1);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(217, 35, 15, 0.2);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.service-card {
    background: radial-gradient(circle at center, rgba(217, 35, 15, 0.12) 0%, #0a0a0a 70%);
    border: 2px solid rgba(217, 35, 15, 0.7);
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 12px 35px rgba(217, 35, 15, 0.5), inset 0 0 60px rgba(217, 35, 15, 0.15), 0 0 30px rgba(217, 35, 15, 0.4);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 35, 15, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(217, 35, 15, 0.5), inset 0 0 50px rgba(217, 35, 15, 0.12), 0 0 30px rgba(217, 35, 15, 0.4);
    border-color: rgba(217, 35, 15, 0.7);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i,
.service-card .fas,
.service-card .fa {
    font-size: 4.5rem !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    display: inline-block !important;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 15px rgba(217, 35, 15, 0.7)) drop-shadow(0 0 25px rgba(217, 35, 15, 0.5)) drop-shadow(0 0 35px rgba(217, 35, 15, 0.3));
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card:hover i {
    transform: scale(1.25) rotate(8deg);
    color: #ffffff;
    filter: drop-shadow(0 0 25px rgba(217, 35, 15, 1)) drop-shadow(0 0 50px rgba(217, 35, 15, 0.9)) drop-shadow(0 0 75px rgba(217, 35, 15, 0.7));
}

.service-card h3,
.service-card h4,
.service-card .h5 {
    color: #ffffff !important;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
    background: #ffffff;
}

.service-card p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Brands Section */
#brands {
    padding: 80px 0;
    background: #000000;
    position: relative;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.brand-name {
    display: none !important;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.brand-logo-container:hover {
    transform: scale(1.05);
}

.brand-logo {
    max-height: 180px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(217, 35, 15, 0.5)) drop-shadow(0 0 35px rgba(217, 35, 15, 0.3));
    transition: all 0.4s ease;
    padding: 20px;
    background: radial-gradient(ellipse at center, rgba(217, 35, 15, 0.15) 0%, rgba(217, 35, 15, 0.05) 40%, transparent 70%);
    border-radius: 15px;
}

.brand-logo:hover {
    filter: brightness(1.4) drop-shadow(0 0 40px rgba(217, 35, 15, 1)) drop-shadow(0 0 60px rgba(217, 35, 15, 0.7));
    transform: scale(1.15);
    background: radial-gradient(ellipse at center, rgba(217, 35, 15, 0.25) 0%, rgba(217, 35, 15, 0.12) 40%, rgba(217, 35, 15, 0.05) 70%);
}

.testimonial-card {
    background: #000000;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    transition: var(--transition);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(217, 35, 15, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 35, 15, 0.5);
    border-color: var(--primary-color);
    background: #0a0a0a;
}

.google-rating-card {
    background: #000000;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(217, 35, 15, 0.3);
}

.google-rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 35, 15, 0.5);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    padding: 2px;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: white;
}

.author-info p {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/png;base64,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') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #333;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    min-width: 24px;
}

.contact-in.footer-widget h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.contact-info-text p,
.contact-in.footer-widget p {
    color: #aaaaaa;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-in.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-in.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
    text-decoration: none;
}
/* Form Styles */
.form-control {
    padding: 1rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer,
.footer-black {
    background: #000000 !important;
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    border-top: 2px solid var(--primary-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-widget h3 {
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links a {
    color: #aaaaaa;
    transition: all 0.3s ease;
    display: block;
}

/* Gallery Navigation */
#showcase .swiper-button-next,
#showcase .swiper-button-prev {
    color: var(--primary-color) !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(217, 35, 15, 0.3);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #b81d0d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--border-radius);
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 40vh;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-logo-bg {
        width: 200px;
        height: 200px;
        right: 10%;
        opacity: 0.05;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .brand-logo {
        max-height: 60px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-section .btn:first-of-type {
    animation-delay: 0.8s;
}

.hero-section .btn:last-of-type {
    animation-delay: 1s;
}
