/* Custom Color Variables */
:root {
    --cycle-dark-grey: #1a1a2e;
    --cycle-medium-grey: #16213e;
    --cycle-light-grey: #0f3460;
    --cycle-red: #e62e2e;
    --cycle-black: #0a0a0a;
    --cycle-white: #ffffff;
    --cycle-off-white: #f8f9fa;
    --cycle-text-light: #e0e0e0;
    --cycle-text-muted: #a0a0a0;
    --cycle-dark-navy: #0a1628;
}

/* Dark navy text for service pages */
.text-dark-navy {
    color: var(--cycle-dark-navy) !important;
}

/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--cycle-white);
    position: relative;
    overflow-x: hidden;
    background: #1a1a1a;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--cycle-white);
    line-height: 1.3;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

h2 + .section-subtitle {
    font-size: 1.15rem;
    color: var(--cycle-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

section {
    padding: 100px 0;
    scroll-margin-top: 120px;
}

#home {
    padding: 0;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Header and Navigation Styles */
header.fixed-top {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0;
    padding-bottom: 15px;
    transition: all 0.3s ease;
    z-index: 1030;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cycle-white);
    text-decoration: none;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 140px;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

/* Tab Navigation Styles */
.nav-tabs {
    border-bottom: none;
    width: auto;
    display: flex;
    justify-content: space-around;
    background: linear-gradient(180deg, #252525 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 50px;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-tabs .nav-item {
    flex: 1;
    text-align: center;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--cycle-white);
    font-weight: 700;
    padding: 6px 10px;
    margin: 0;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background-color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
}

.nav-tabs .nav-item:not(:last-child) .nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-tabs .nav-link:hover {
    background-color: rgba(230, 46, 46, 0.7);
    color: var(--cycle-white);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: var(--cycle-white);
    background-color: var(--cycle-red);
    border: none;
}

/* Dropdown menu */
.dropdown-menu {
    background-color: var(--cycle-black);
    border: 1px solid var(--cycle-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    padding: 12px;
    margin-top: 8px;
}

/* Fix dropdown toggle arrow */
.nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-item {
    color: var(--cycle-white);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 4px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.dropdown-item:hover, 
.dropdown-item:focus,
.dropdown-item.active {
    background-color: var(--cycle-red);
    color: var(--cycle-white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Mobile navigation */
@media (max-width: 768px) {
    header.fixed-top {
        padding-bottom: 5px;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
        gap: 0;
        padding: 4px;
        border-radius: 16px;
    }
    
    .nav-tabs .nav-item {
        flex: 0 0 calc(50% - 2px);
        margin-bottom: 0;
    }
    
    .nav-tabs .nav-link {
        font-size: 0.9rem;
        padding: 8px 5px;
        margin: 2px;
        border-radius: 8px;
    }
    
    .nav-tabs .nav-item:not(:last-child) .nav-link::after {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: #000000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #000;
    height: auto;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: var(--cycle-white);
    padding-top: 240px;
    padding-bottom: 210px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    display: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 100%);
    background: var(--cycle-black);
    z-index: 1;
}

.hero-image-carousel {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-44%);
    width: 620px;
    height: 620px;
    z-index: 2;
    overflow: visible;
}

.carousel-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    clip-path: ellipse(100% 70% at 100% 50%);
}

.carousel-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1399px) {
    .hero-image-carousel {
        width: 560px;
        height: 560px;
        right: -10px;
    }
}

@media (max-width: 1199px) {
    .hero-image-carousel {
        width: 480px;
        height: 480px;
        right: 0px;
    }
}

@media (max-width: 991px) {
    .hero-image-carousel {
        display: none;
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    font-size: 3.1rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 550px;
}

.text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 
                 0px 0px 30px rgba(0, 0, 0, 0.7), 
                 0px 0px 10px rgba(0, 0, 0, 0.9);
}

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

/* Light Section Background */
.section-light {
    background-color: var(--cycle-off-white);
    color: var(--cycle-dark-grey);
}

.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
    color: var(--cycle-dark-grey);
}

.section-light p {
    color: #444;
}

.section-light .section-subtitle {
    color: #666;
}

/* About Section */
.feature-box {
    background-color: var(--cycle-medium-grey);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--cycle-red);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--cycle-red);
}

#about-preview {
    background: linear-gradient(180deg, var(--cycle-dark-grey) 0%, var(--cycle-medium-grey) 100%);
    position: relative;
    padding: 100px 0;
}

#about-preview .lead {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--cycle-text-light);
}

/* Modern Service Cards */
.service-card-modern {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cycle-red), #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cycle-red), #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(230, 46, 46, 0.3);
}

.service-icon-wrapper i {
    font-size: 1.3rem;
    color: white !important;
}

.service-card-modern h4 {
    color: var(--cycle-dark-grey);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card-modern p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-card-modern ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.service-card-modern ul li {
    color: #555;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.85rem;
}

.service-card-modern ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cycle-red);
    font-weight: 700;
}

.service-card-modern .learn-more {
    color: var(--cycle-red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card-modern .learn-more:hover {
    color: #d12020;
}

.service-card-modern .learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: var(--cycle-red) !important;
}

.service-card-modern .learn-more:hover i {
    transform: translateX(5px);
}

/* Services Section */
#services {
    background-color: var(--cycle-dark-grey);
}

#services-preview {
    background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 10%, #d0d0d0 30%, #d9d9d9 50%, #d0d0d0 70%, #e8e8e8 90%, #ffffff 100%);
    padding: 30px 0;
}

#services-preview h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

#services-preview .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Legacy card styling - kept for other sections */
.card {
    background-color: var(--cycle-medium-grey);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--cycle-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Gradient background for service pages */
.page-gradient-blue {
    background: linear-gradient(90deg, #1a2e45 0%, #142438 40%, #0a1520 100%);
    min-height: 100vh;
    padding-bottom: 0;
    margin-bottom: 0;
}

.page-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 25%, #d0d0d0 50%, #e8e8e8 75%, #ffffff 100%);
    min-height: 100vh;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Gradient cards for service pages */
.card-gradient {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2847 50%, #051c33 100%);
    border: 1px solid rgba(100, 150, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 50, 100, 0.3);
}

.card-gradient:hover {
    background: linear-gradient(135deg, #2a4a70 0%, #1e3a5f 50%, #0d2847 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 50, 150, 0.4);
}

.card-gradient-gray {
    background: linear-gradient(180deg, #e8ecf0 0%, #c8d0d8 50%, #a8b4c0 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    color: #1a1a1a !important;
}

.card-gradient-gray h3,
.card-gradient-gray h4,
.card-gradient-gray h5,
.card-gradient-gray .card-title {
    color: #1a1a1a !important;
}

.card-gradient-gray p,
.card-gradient-gray .lead {
    color: #333333 !important;
}

.card-gradient-gray label,
.card-gradient-gray .form-label {
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

.card-gradient-gray .form-control,
.card-gradient-gray .form-select,
.card-gradient-gray input,
.card-gradient-gray textarea,
.card-gradient-gray select {
    color: #1a1a1a !important;
    background-color: #f5f5f5 !important;
    border: 1px solid #ccc !important;
}

.card-gradient-gray .form-control::placeholder,
.card-gradient-gray input::placeholder,
.card-gradient-gray textarea::placeholder {
    color: #888888 !important;
}

.card-gradient-gray:hover {
    background: linear-gradient(180deg, #f0f4f8 0%, #d0d8e0 50%, #b0bcc8 100%) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card .card-body {
    padding: 1.25rem;
}

.card .card-title {
    color: var(--cycle-white);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.card .card-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--cycle-red);
}

.card .card-text {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.card .text-primary {
    color: var(--cycle-red) !important;
}

/* Highlighted Testimonial Section */
.testimonial-highlight {
    background: linear-gradient(135deg, var(--cycle-medium-grey) 0%, var(--cycle-dark-grey) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-highlight::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 5%;
    font-size: 20rem;
    font-family: Georgia, serif;
    color: rgba(230, 46, 46, 0.08);
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: var(--cycle-white);
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--cycle-text-muted);
}

.testimonial-author strong {
    color: var(--cycle-white);
    font-weight: 600;
}

.testimonial-company-logo {
    max-height: 50px;
    opacity: 0.8;
    filter: grayscale(100%) brightness(1.5);
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 10%, #d0d0d0 30%, #d9d9d9 50%, #d0d0d0 70%, #e8e8e8 90%, #ffffff 100%);
    padding: 100px 0;
}

.why-choose-section h2 {
    color: var(--cycle-dark-grey);
}

.why-choose-section .section-subtitle {
    color: #666;
}

.why-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cycle-red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(230, 46, 46, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(230, 46, 46, 0.2), rgba(230, 46, 46, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--cycle-red) !important;
}

.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--cycle-dark-grey);
}

.why-card p {
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* Button Styling - Modern Rounded */
.btn {
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cycle-red), #ff5252) !important;
    border: none !important;
    color: var(--cycle-white) !important;
    box-shadow: 0 4px 15px rgba(230, 46, 46, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 46, 46, 0.5) !important;
    background: linear-gradient(135deg, #d12020, var(--cycle-red)) !important;
}

.btn-outline-light {
    border: 2px solid var(--cycle-white);
    background: transparent;
    color: var(--cycle-white) !important;
}

.btn-outline-light:hover {
    background: var(--cycle-white) !important;
    color: var(--cycle-dark-grey) !important;
    border-color: var(--cycle-white) !important;
}

.btn-outline-dark {
    border: 2px solid var(--cycle-dark-grey);
    background: transparent;
    color: var(--cycle-dark-grey) !important;
}

.btn-outline-dark:hover {
    background: var(--cycle-dark-grey) !important;
    color: var(--cycle-white) !important;
}

a.btn {
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-info, .btn-secondary, 
.btn-outline-primary, .btn-outline-info, .btn-outline-secondary {
    background-color: var(--cycle-red) !important;
    border-color: var(--cycle-red) !important;
    color: var(--cycle-white) !important;
}

.btn-info:hover, .btn-info:focus, .btn-info:active,
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active,
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active,
.btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info:active,
.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active {
    background-color: #d12020 !important;
    border-color: #d12020 !important;
    color: var(--cycle-white) !important;
}

.text-primary {
    color: var(--cycle-red) !important;
}

/* Reviews Section */
#reviews-preview {
    background: linear-gradient(180deg, #660a0a 0%, #aa1a1a 15%, #ff4040 50%, #aa1a1a 85%, #660a0a 100%);
    padding: 100px 0;
    position: relative;
}

#reviews-preview h2 {
    position: relative;
    margin-bottom: 1rem;
    font-weight: 700;
}

.review-card .card {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-card .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cycle-red), #ff6b6b);
}

.review-card .card-body {
    padding: 2rem;
}

.review-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.review-card .rating {
    margin-bottom: 1.5rem;
}

.review-card .rating i {
    color: #ffc107 !important;
}

/* Contact Section */
#contact {
    background-color: var(--cycle-dark-grey);
}

#contact-preview {
    background-color: var(--cycle-dark-grey);
    background-image: radial-gradient(circle at 90% 10%, rgba(230, 46, 46, 0.05) 0%, transparent 70%);
    padding: 100px 0;
}

#contact-preview h2 {
    position: relative;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Section Headers */
section h2 {
    font-weight: 800;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    position: relative;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.15rem;
    color: var(--cycle-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.section-light .section-subtitle {
    color: #666;
}

/* Contact Info Styling */
.contact-info i {
    font-size: 1.5rem;
    color: var(--cycle-red);
    margin-top: 0.25rem;
}

.contact-info .d-flex {
    margin-bottom: 1.5rem;
}

.contact-info .d-flex:last-child {
    margin-bottom: 0;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Form Styling */
form .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cycle-white);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--cycle-white);
    border-color: var(--cycle-red);
    box-shadow: 0 0 0 0.25rem rgba(230, 46, 46, 0.15);
}

form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

form .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cycle-white);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--cycle-white);
    border-color: var(--cycle-red);
    box-shadow: 0 0 0 0.25rem rgba(230, 46, 46, 0.15);
}

form label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Footer */
.footer-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url('cycle_trucks.jpg');
    background-size: cover;
    background-position: center;
    color: var(--cycle-white);
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 46, 46, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-section h5 {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.footer-section p {
    font-size: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    color: var(--cycle-text-muted);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cycle-red), #ff5252);
    transition: all 0.3s ease;
    color: var(--cycle-white);
    box-shadow: 0 4px 15px rgba(230, 46, 46, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(230, 46, 46, 0.4);
    color: var(--cycle-white) !important;
}

.social-links a i {
    color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: var(--cycle-black);
        padding: 15px;
        border-radius: 8px;
    }
    
    .navbar-nav {
        align-items: center;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .testimonial-quote {
        font-size: 1.4rem;
    }
}

/* Reviews section */
#reviews {
    background-color: var(--cycle-dark-grey);
}

/* Add specific section background colors */
section.bg-dark {
    background-color: var(--cycle-dark-grey) !important;
}

/* Style alerts */
.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.3);
    color: #75b798;
    border-radius: 12px;
}

.alert-warning {
    border-radius: 12px;
}

.alert-info {
    border-radius: 12px;
}

/* Icon colors */
.fa, .fas, .far, .fab {
    color: var(--cycle-red);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(90deg, #660a0a 0%, #aa1a1a 20%, #ff4040 50%, #aa1a1a 80%, #660a0a 100%);
    padding: 60px 0 !important;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cycle-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Banner Images for Division Pages */
.division-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
}

.division-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.division-banner h1 {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 400px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .service-card-modern {
        padding: 2rem;
    }
    
    .why-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
}
