/* AssuredExpress - Hotshot Trucking Website Styles */

/* Reset and Base Styles */

/* Top Logo Banner */
.top-logo-banner {
    background-color: var(--black);
    padding: 20px 0;
    text-align: center;
}

.top-logo-banner .main-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC143C;
    --dark-bg: #1a1a1a;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --gray-dark: #333333;
    --accent-silver: #C0C0C0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-bg);
    background-color: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background-color: var(--black);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--primary-red);
}

.hero .tagline {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 4px solid var(--primary-red);
}

.hero-music {
    margin-top: 30px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hero-music audio {
    width: 100%;
    max-width: 400px;
    height: 40px;
}

.hero-music audio::-webkit-media-controls-panel {
    background-color: var(--dark-bg);
}

.music-label {
    margin-top: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #b01030;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title h2 span {
    color: var(--primary-red);
}

.section-title p {
    font-size: 18px;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: var(--gray-light);
}

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

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--black);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Services Section */
.services {
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-red);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card p {
    color: var(--gray-medium);
    font-size: 16px;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-red);
}

/* Equipment Section */
.equipment {
    background-color: var(--dark-bg);
    color: var(--white);
}

.equipment .section-title h2 {
    color: var(--white);
}

.equipment .section-title p {
    color: var(--accent-silver);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.equipment-item {
    background-color: var(--gray-dark);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-red);
}

.equipment-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
}

.equipment-item p {
    color: var(--accent-silver);
    font-size: 15px;
}

/* Service Area Section */
.service-area {
    background-color: var(--gray-light);
}

.service-area .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.area-list {
    list-style: none;
}

.area-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-medium);
    font-size: 18px;
    display: flex;
    align-items: center;
}

.area-list li:before {
    content: "✓";
    color: var(--primary-red);
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

.area-map {
    background-color: var(--gray-dark);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.area-map h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
    padding: 80px 0;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

/* Contact Section */
.contact {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('upload://1e92aa8c-71ab-46cc-8588-b9dbc5b44196.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.contact .section-title h2 {
    color: var(--white);
}

.contact .section-title p {
    color: var(--accent-silver);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    background-color: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-item p {
    font-size: 18px;
    color: var(--accent-silver);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* FAQ Section */
.faq {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-red);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--black);
}

.faq-item p {
    color: var(--gray-dark);
    font-size: 16px;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    background-color: var(--white);
    padding: 80px 0;
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--gray-light);
    padding: 40px;
    border-radius: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--black);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--gray-medium);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* Tracking Section */
.tracking-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 80px 0;
}

.tracking-section .section-title h2 {
    color: var(--white);
}

.tracking-section .section-title p {
    color: var(--accent-silver);
}

.tracking-info {
    max-width: 800px;
    margin: 0 auto;
}

.tracking-details {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.tracking-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
}

.tracking-details p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--accent-silver);
}

.tracking-details ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 20px;
}

.tracking-details li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--accent-silver);
}

.tracking-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 18px;
}

/* Blog Section */
.blog-section {
    background-color: var(--gray-light);
    padding: 80px 0;
}

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

.blog-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--black);
}

.blog-date {
    color: var(--primary-red);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
}

.blog-item p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--black);
}

/* Team Section */
.team-section {
    background-color: var(--white);
    padding: 80px 0;
}

.team-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.team-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--primary-red);
}

.team-info h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--black);
}

.team-role {
    font-size: 18px;
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 20px;
}

.team-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.credential-badge {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer .copyright {
    color: var(--gray-medium);
    font-size: 14px;
}

footer p a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer p a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .top-logo-banner .main-logo {
        max-width: 400px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .tagline {
        font-size: 18px;
    }
    
    .hero p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-music {
        grid-column: 1 / -1;
    }
    
    .about .content,
    .service-area .content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .team-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-credentials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero .tagline {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .services-grid,
    .equipment-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}