/* ==========================================
   The Chain Gang - Main Stylesheet
   Complete CSS for all website sections
   ========================================== */

/* ==========================================
   CORE STYLES & VARIABLES
   ========================================== */

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

:root {
    /* Color Variables */
    --primary-black: #0d0d0d;
    --steel-gray: #2c3e50;
    --chrome-silver: #bdc3c7;
    --accent-red: #e74c3c;
    --gold: #f39c12;
    --white: #ffffff;
    --light-gray: #ecf0f1;
    --dark-gray: #34495e;
    --coral: #ff6f61;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-black);
    scroll-behavior: smooth;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--accent-red);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.98);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-red);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #20b858);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20b858, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

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

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(231,76,60,0.2) 0%, rgba(13,13,13,0.8) 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-black));
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    animation: heroFadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--chrome-silver));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-text {
    color: var(--coral);
    font-size: 1rem;
    font-weight: bold;
    margin-left: 0.5rem;
    letter-spacing: 1px;
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle-brand {
    font-size: 2rem;
    color: var(--accent-red);
    font-weight: normal;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--chrome-silver);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c0392b, var(--accent-red));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: 1rem 0;
    background: linear-gradient(135deg, var(--primary-black), var(--dark-gray)),
                url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%23e74c3c" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></svg>');
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(13,13,13,0), rgba(13,13,13,1));
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-red), var(--gold));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--chrome-silver);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--chrome-silver);
    line-height: 1.8;
}

.about-text h3 {
    color: var(--accent-red);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--accent-red);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-red);
    display: block;
}

.stat-label {
    color: var(--chrome-silver);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Visual Showcase */
.visual-showcase {
    margin-top: 4rem;
}

.showcase-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: bold;
}

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

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--accent-red);
}

.showcase-overlay p {
    color: var(--chrome-silver);
    font-size: 0.9rem;
}

.journey-timeline {
    margin-top: 4rem;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 15px;
    padding: 3rem;
}

.timeline-title {
    text-align: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.timeline-item {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--accent-red);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    background: rgba(231, 76, 60, 0.15);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: var(--chrome-silver);
    line-height: 1.6;
}

/* ==========================================
   SPECIALIZATIONS SECTION
   ========================================== */

.specializations {
    margin-top: 4rem;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.specializations-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: bold;
    position: relative;
}

.specializations-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-red), var(--gold));
    border-radius: 2px;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-category {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-gray));
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-red), var(--gold));
}

.spec-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
    border-color: var(--accent-red);
}

.spec-category h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.spec-category h4 i {
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.spec-category ul {
    list-style: none;
}

.spec-category li {
    color: var(--chrome-silver);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(189, 195, 199, 0.1);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.spec-category li:last-child {
    border-bottom: none;
}

.spec-category li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.spec-category li:hover {
    color: var(--white);
    padding-left: 2.5rem;
}

.spec-category li:hover::before {
    background: var(--gold);
    transform: translateY(-50%) scale(1.3);
}

/* ==========================================
   COMING SOON TEASER SECTION (FOR MAIN PAGE)
   ========================================== */

.coming-soon-teaser {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--dark-gray), var(--steel-gray));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

.coming-soon-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    animation: slideShine 3s ease-in-out infinite;
}

@keyframes slideShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.teaser-content {
    position: relative;
    z-index: 2;
}

.teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-red);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.teaser-content h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.teaser-content p {
    color: var(--chrome-silver);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.teaser-btn {
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.teaser-btn:hover {
    background: linear-gradient(135deg, #c0392b, var(--accent-red));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}

.teaser-btn i {
    transition: transform 0.3s ease;
}

.teaser-btn:hover i {
    transform: translateX(5px);
}

/* Mobile styles for teaser */
@media (max-width: 768px) {
    .coming-soon-teaser {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .teaser-content h3 {
        font-size: 1.6rem;
    }
    
    .teaser-content p {
        font-size: 1rem;
    }
    
    .teaser-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */

.products {
    padding: 5rem 0;
    background: var(--primary-black);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.category-card {
    background: linear-gradient(135deg, var(--dark-gray), var(--steel-gray));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
    border-color: var(--accent-red);
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(231, 76, 60, 0.9);
    color: var(--white);
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: bold;
}

.category-content p {
    color: var(--chrome-silver);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.product-list {
    list-style: none;
    margin-bottom: 2rem;
}

.product-list li {
    color: var(--chrome-silver);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-list li i {
    color: var(--accent-red);
    font-size: 0.9rem;
}

.price-range {
    background: rgba(231, 76, 60, 0.1);
    color: var(--accent-red);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-red);
}

.category-cta {
    display: block;
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.category-cta:hover {
    background: linear-gradient(135deg, #c0392b, var(--accent-red));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* ==========================================
   CUSTOM BUILDS GALLERY
   ========================================== */

.builds-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-gray), var(--primary-black));
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--chrome-silver);
    color: var(--chrome-silver);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    color: var(--white);
    padding: 2.5rem 1.5rem 1.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-content p {
    color: var(--chrome-silver);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.build-category {
    background: var(--accent-red);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */

.why-choose-us {
    padding: 5rem 0;
    background: var(--primary-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, var(--dark-gray), var(--steel-gray));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.2);
    border-color: var(--accent-red);
}

.feature-icon {
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-card p {
    color: var(--chrome-silver);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stat {
    background: rgba(231, 76, 60, 0.1);
    color: var(--accent-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    border: 1px solid var(--accent-red);
}

.achievements-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    padding: 3rem 2rem;
    border-radius: 20px;
}

.achievement-item {
    text-align: center;
    color: var(--white);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-gray), var(--primary-black));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-gray));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
    border-color: var(--accent-red);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rider-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-red);
}

.rider-info h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.rider-info p {
    color: var(--chrome-silver);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-content {
    color: var(--chrome-silver);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.testimonial-stats .stat-item {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    padding: 2rem;
    border-radius: 15px;
    min-width: 150px;
}

.testimonial-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-stats .stat-label {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-black), var(--dark-gray));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(44, 62, 80, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(231, 76, 60, 0.1);
    transform: translateX(10px);
}

.method-icon {
    background: var(--accent-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-content h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.method-content p {
    color: var(--chrome-silver);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.whatsapp-link {
    color: #25d366;
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-btn {
    background: linear-gradient(135deg, var(--steel-gray), var(--dark-gray));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-btn:hover {
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    transform: translateX(10px);
}

.quick-btn i {
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form-section h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.contact-form {
    background: linear-gradient(135deg, var(--dark-gray), var(--steel-gray));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--primary-black);
    border: 1px solid var(--chrome-silver);
    border-radius: 8px;
    padding: 1rem;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--chrome-silver);
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto 1rem;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #c0392b, var(--accent-red));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.form-success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin: 1rem 0;
}

.form-success-message i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.form-note {
    text-align: center;
    color: var(--chrome-silver);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--accent-red);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-black), #000000),
                url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e74c3c" fill-opacity="0.05"><path d="M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z"/></g></svg>');
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--accent-red);
    position: relative;
}

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

.footer-section h3 {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-section p,
.footer-section li {
    color: var(--chrome-silver);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--chrome-silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--chrome-silver);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.1);
}

.social-links a:hover {
    color: var(--accent-red);
    background: rgba(231, 76, 60, 0.2);
    transform: translateY(-3px);
}

.brand-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.brand-item:hover {
    background: rgba(231, 76, 60, 0.2);
    transform: translateY(-2px);
}

.brand-item i {
    font-size: 1.2rem;
    color: var(--accent-red);
    margin-bottom: 0.3rem;
}

.brand-item span {
    color: var(--chrome-silver);
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
    color: var(--chrome-silver);
    font-size: 0.9rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */

@media (max-width: 768px) {
    /* Specializations mobile styles */
    .specializations {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .specializations-title {
        font-size: 1.8rem;
    }
    
    .specializations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .spec-category {
        padding: 1.5rem;
    }
    
    .spec-category h4 {
        font-size: 1.2rem;
    }
    
    .coming-soon-highlight {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.8rem;
    }
    
    .coming-soon-content p {
        font-size: 1rem;
    }
    
    .coming-soon-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-tag {
        justify-content: center;
        min-width: 200px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo img {
        height: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .timeline-items {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .product-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .achievements-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .quick-contact-buttons {
        margin-bottom: 2rem;
    }

    .contact-info h3,
    .contact-form-section h3 {
        font-size: 1.5rem;
    }
}