/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    font-weight: 400;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.logo .llc {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
    vertical-align: super;
    margin-left: 0.3rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #00d4ff, #0099ff);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #00d4ff;
    transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #00d4ff;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    color: white;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
}

.hero::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    opacity: 0.95;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 8s infinite;
}

.page-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}

.page-header p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #5a6c7d;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Featured Vehicles */
.featured {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.featured h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.featured-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.vehicle-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.highlight-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.highlight-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight-content ul {
    list-style-position: inside;
    color: #555;
}

.highlight-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.inventory-benefits {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.inventory-benefits h3 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item h4 {
    color: #28a745;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s;
    border: 2px solid #28a745;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40,167,69,0.3);
}

/* About Page Styles */
.about-content {
    padding: 3rem 0;
    background-color: white;
}

.about-intro {
    margin-bottom: 3rem;
}

.about-intro h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.mission-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.mission, .values {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.benefit h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.experience {
    margin: 3rem 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.experience ul {
    list-style-position: inside;
    margin-top: 1rem;
}

/* Vehicle Categories Page Styles */
.vehicle-categories {
    padding: 3rem 0;
    background-color: white;
}

.fleet-overview {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.fleet-overview h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.fleet-overview p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.categories-section {
    margin-bottom: 3rem;
}

.categories-section h3 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.category-card h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    margin-bottom: 1rem;
    color: #555;
}

.category-card ul {
    list-style-position: inside;
    color: #666;
}

.category-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.fleet-services {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.fleet-services h3 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.service-item h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.inventory-note {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.inventory-note h3 {
    margin-bottom: 1rem;
    color: #333;
}

.inventory-note ul {
    list-style-position: inside;
}

/* Contact Page Styles */
.contact-section {
    padding: 3rem 0;
    background-color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.contact-item h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.additional-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.info-item {
    text-align: center;
}

.info-item h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Direct Contact Styles */
.direct-contact {
    padding: 1rem;
}

.contact-method {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-method h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.3rem;
    margin: 0.5rem 0;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link {
    color: #28a745;
    font-weight: bold;
}

.phone-link:hover {
    color: #218838;
}

.email-link {
    color: #007bff;
    font-weight: bold;
}

.email-link:hover {
    color: #0056b3;
}

.contact-hours, .email-note, .location-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.quick-contact-buttons {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-contact-buttons .btn-primary,
.quick-contact-buttons .btn-secondary {
    min-width: 160px;
    margin-top: 0;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-secondary {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

/* Location Page Styles */
.location-section {
    padding: 3rem 0;
    background-color: white;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.location-info h3 {
    color: #333;
    margin-bottom: 2rem;
}

.address-block,
.hours-block,
.contact-quick,
.directions,
.parking-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.hours-table {
    width: 100%;
    margin-top: 1rem;
}

.hours-table td {
    padding: 0.5rem 0;
}

.holiday-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.direction-item {
    margin: 1rem 0;
}

.direction-item h5 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.map-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.map-placeholder iframe {
    border-radius: 8px;
}

.map-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.facility-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.feature h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.nearby-amenities {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.nearby-amenities ul {
    list-style-position: inside;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .navbar .container {
        flex-direction: column;
    }
    
    .service-grid,
    .vehicle-showcase,
    .benefits-grid,
    .info-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-values,
    .contact-wrapper,
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    .vehicle-item {
        grid-template-columns: 1fr;
    }
    
    .vehicle-specs {
        grid-template-columns: 1fr;
    }
    
    .hero h2,
    .page-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}