/* FleetShine - Main CSS */

/* Color Palette Variables */
:root {
    --primary-color: #3590da;
    --primary-light: #95c9ef;
    --primary-dark: #325684;
    
    --secondary-color: #4debb9;
    --secondary-light: #74e4c1;
    --secondary-dark: #34927f;
    
    --accent-color: #f2c221;
    --accent-light: #fcdd6e;
    --accent-dark: #db960c;
    
    --neutral-color: #6e7c80;
    --neutral-light: #b4bdc7;
    --neutral-dark: #222e44;
    
    --success-color: #31c35b;
    --success-light: #48d784;
    --success-dark: #2e8e5a;
    
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark: #15171a;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography - Conservative sizes */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
}

.navbar-brand {
    font-size: 10px !important;
    font-size: 1.60rem;
    color: var(--primary-color);
}

h1, .display-4 {
    font-size: 2.56rem;
    line-height: 1.2;
}

h2, .h3 {
    font-size: 1.81rem;
    line-height: 1.3;
}

h3, .h5 {
    font-size: 1.31rem;
    line-height: 1.4;
}

.lead {
    font-size: 1.13rem;
    font-weight: 400;
}

/* Custom Components */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="300" r="150" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="700" r="200" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.bg-primary-gradient {
    background: var(--gradient-primary);
}

.bg-secondary-gradient {
    background: var(--gradient-secondary);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Card Styling */
.card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Pricing Cards */
.border-primary {
    border: 2px solid var(--primary-color) !important;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-link {
    font-size: 10px !important;
    font-weight: 500;
    color: var(--neutral-dark);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Form Styling */
.form-control {
    border-radius: 8px;
    border: 1px solid var(--neutral-light);
    padding: 0.75rem 1rem;
    font-size: 0.97rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(83, 141, 202, 0.25);
}

.form-select {
    border-radius: 8px;
    border: 1px solid var(--neutral-light);
    padding: 0.75rem 1rem;
    font-size: 0.97rem;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-muted {
    color: var(--neutral-color) !important;
}

/* Background Colors */
.bg-light {
    background-color: var(--light-gray) !important;
}

/* Contact Info Styling */
.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info i {
    width: 20px;
    text-align: center;
}

/* Team Member Photos */
.team-member-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 9px 10px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--neutral-dark) 0%, #1b1a1a 100%);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Process Steps */
.process-step {
    background: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 10px rgba(77, 125, 212, 0.30);
}

/* FAQ Cards */
.faq-card {
    border-left: 4px solid var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item:hover img {
    opacity: 1;
}

/* Utility Classes */
.shadow-sm-custom {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
    border-radius: 12px;
}

/* Animation Enhancements */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Badge Styling */
.badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.bg-success {
    background-color: var(--success-color) !important;
}

/* Star Ratings */
.text-warning {
    color: var(--accent-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    h1, .display-4 {
        font-size: 2rem;
    }
    
    h2, .h3 {
        font-size: 1.62rem;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
    
    .team-member-photo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .process-step {
        width: 50px;
        height: 50px;
        font-size: 0.92rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .navbar-brand {
    font-size: 10px !important;
        font-size: 1.34rem;
    }
} 

.hero-section h1 {
    padding-top: 150px;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
