/* ===========================
   Big RT Enterprises Stylesheet - MATCHES ORIGINAL
   Easy to edit - Change colors, fonts, spacing below
   =========================== */

/* === VARIABLES - EDIT THESE TO CHANGE COLORS === */
:root {
    --primary-color: #dc2626;      /* Red accent color */
    --secondary-color: #000000;    /* Black */
    --text-dark: #1f2937;          /* Dark gray text */
    --text-light: #6b7280;         /* Light gray text */
    --background-light: #f9fafb;   /* Light background */
    --white: #ffffff;
    --border-color: #e5e7eb;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* === NAVIGATION BAR === */
.navbar {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-call {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-call:hover {
    background-color: #b91c1c;
}

/* === HERO SECTION - LOGO AS IMAGE ELEMENT === */
.hero {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 4rem 0;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* === SECTION STYLES === */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* === SERVICES SECTION === */
.services {
    background-color: var(--background-light);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
}

/* === FLEET SECTION === */
.fleet {
    background-color: var(--white);
}

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

.fleet-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.fleet-info {
    padding: 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
}

.fleet-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.fleet-info p {
    color: #d1d5db;
}

/* === WHY CHOOSE US SECTION === */
.why-choose {
    background-color: var(--background-light);
}

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

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
}

.cta-box {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* === QUOTE FORM SECTION === */
.quote-section {
    background-color: var(--white);
}

.form-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.quote-form button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quote-form button:hover {
    background-color: #b91c1c;
}

/* === CONTACT SECTION === */
.contact {
    background-color: var(--background-light);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.contact-info h4,
.service-areas h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p,
.service-areas ul {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.service-areas ul {
    list-style: none;
    padding-left: 0;
}

.service-areas li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.dot-info,
.mc-info {
    margin-top: 1rem;
    color: var(--text-dark);
}

/* === FAQ SECTION === */
.faq {
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-light);
    margin-bottom: 1rem;
    border-radius: 5px;
    padding: 1.5rem;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.faq-item summary:hover {
    color: var(--primary-color);
}

.faq-item p {
    margin-top: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* === TRACK SECTION === */
.track-section {
    background-color: var(--background-light);
    text-align: center;
}

.track-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
    justify-content: center;
}

.track-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.track-note {
    color: var(--text-light);
    margin-top: 1rem;
}

.track-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.track-note a:hover {
    text-decoration: underline;
}

/* === FOOTER === */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-logo img {
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .fleet-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .track-form {
        flex-direction: column;
    }
}
