* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Consolidated Navigation */
.nav-container {
    background: white;
    padding: 1.5rem 0 0 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    height: 70px;
    width: auto;
}

.nav-company-info h1 {
    color: black;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.1;
    white-space: nowrap;
}

.nav-company-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.1;
    white-space: nowrap;
}

.nav-phone {
    color: #2563eb;
    font-size: 1.1rem;
    font-weight: bold;
    white-space: nowrap;
}

/* Navigation Bar */
.nav-bar {
    background: #2563eb;
    padding: 0.5rem 0;
    margin-top: 1rem;
}

.nav-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* App Content */
.app-content {
    margin-top: 140px;
}

/* Hero Section */
.hero-section {
    background: #34495e;
    color: white;
    padding: 0;
    min-height: 550px;
    padding-bottom: 3rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    min-height: 550px;
    align-items: center;
}

.hero-left, .hero-right {
    text-align: center;
    padding: 1.5rem;
}

.hero-divider {
    background: rgba(255,255,255,0.3);
    width: 2px;
    height: 100%;
    margin: 0 auto;
}

.btn-red {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.btn-red:hover {
    background: #b91c1c;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin: 0.75rem 0;
    color: white;
}

.hero-subtitle {
    color: #f59e0b;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0.75rem 0;
}

.hero-description {
    font-size: 0.95rem;
    margin: 0.75rem 0;
    color: white;
}

.hero-image {
    max-width: 280px;
    height: 180px;
    object-fit: contain;
    margin: 1.5rem auto;
    display: block;
    background: white;
    padding: 8px;
    border-radius: 8px;
}

.eagle-logo {
    max-height: 70px;
    margin: 0.75rem auto 1.5rem auto;
    display: block;
}

.old-hickory-logo {
    max-height: 70px;
    margin: 0.75rem auto 1rem auto;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.btn-blue {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.85rem;
}

.btn-blue:hover {
    background: #1d4ed8;
}

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

/* Sections */
section {
    padding: 2rem 0;
    scroll-margin-top: 140px;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Old Hickory Section */
.old-hickory-section {
    background: #f8f9fa;
}

.products-grid {
    margin: 1rem 0;
}

.product-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.product-card:visited {
    color: inherit;
}

.product-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: white;
    padding: 8px;
}

.product-content {
    padding: 0.75rem;
    text-align: center;
}

.product-content p {
    font-size: 0.9rem;
    color: #666;
}

.section-cta {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Eagle Carports Section */
.eagle-carports-section {
    background: #34495e;
    color: white;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 2rem;
}

.section-logo {
    max-height: 80px;
    object-fit: contain;
}

.section-logo-centered {
    max-height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem auto;
    display: block;
}

.section-info h2 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.section-stats {
    color: #ccc;
    font-size: 1rem;
}

.section-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.eagle-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.eagle-product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.eagle-product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.eagle-product-content {
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 120px;
}

.eagle-product-content h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.eagle-product-content p {
    font-size: 0.9rem;
    color: #666;
    flex-grow: 1;
    margin-bottom: 0.5rem;
}

.eagle-cta {
    margin: 2rem 0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.eagle-spacer {
    height: 200px;
}

/* U-Haul Section */
.uhaul-section {
    background: #f8f9fa;
}

.uhaul-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-card img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Shed Ramps Section */
.shed-ramps-section {
    background: #34495e;
    color: white;
}

.ramps-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.ramps-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0.75rem 0;
}

.ramp-product-card {
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.ramp-product-image {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ramp-product-card.im-ramps {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-left: 4px solid #4caf50;
}

.ramp-product-card.ensz-ramps {
    background: linear-gradient(135deg, #f5f0ff, #ede8ff);
    border-left: 4px solid #9c27b0;
}

.ramp-product-card h4 {
    color: #2c3e50;
    margin-bottom: 0.4rem;
    font-size: 1rem;
    font-weight: bold;
}

.ramp-product-card p {
    color: #555;
    font-size: 0.8rem;
    line-height: 1.3;
}

.ramps-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.ramp-feature {
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
}

.ramp-feature h4 {
    color: #2c3e50;
    margin-bottom: 0.2rem;
    font-size: 0.85rem;
}

.ramp-feature p {
    color: #666;
    font-size: 0.7rem;
}

.shed-ramps-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
}

.shed-ramps-cta h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.shed-ramps-cta p {
    color: #666;
    margin-bottom: 1rem;
}

/* About Us Section */
.about-section {
    background: #f8f9fa;
    padding: 1rem 0 0 0;
}

/* Testimonials Section */
.testimonials-section {
    margin: 0.5rem 0 0 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-section h3 {
    text-align: center;
    margin-bottom: 0.25rem;
    font-size: 2rem;
    color: #2c3e50;
    font-weight: bold;
}

.testimonials-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Testimonial Carousel */
.testimonial-carousel {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 2rem 0;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    color: #666;
    transition: color 0.3s ease;
    user-select: none;
}

.prev-btn {
    color: #f97316; /* Orange */
}

.next-btn {
    color: #10b981; /* Green */
}

.carousel-btn:hover {
    opacity: 0.7;
}

.testimonial-display {
    flex: 1;
    max-width: 900px;
    margin: 0 1rem;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    display: none;
    text-align: center;
    width: 100%;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide .stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-slide blockquote {
    font-style: italic;
    margin: 0.5rem 0;
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
    quotes: """ """ "'" "'";
}

.testimonial-slide blockquote:before {
    content: open-quote;
}

.testimonial-slide blockquote:after {
    content: close-quote;
}

.testimonial-author {
    margin-top: 1rem;
    font-size: 1rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
}

.testimonial-author strong {
    color: #1f2937;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #2563eb;
    font-weight: 500;
}

/* Carousel Dots */
.carousel-dots {
    text-align: center;
    margin-top: 0.5rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot:nth-child(1) { background-color: #ef4444; } /* Red */
.dot:nth-child(2) { background-color: #f97316; } /* Orange */
.dot:nth-child(3) { background-color: #eab308; } /* Yellow */
.dot:nth-child(4) { background-color: #10b981; } /* Green */

.dot.active {
    opacity: 1;
    transform: scale(1.2);
}

.dot:hover {
    opacity: 0.7;
}

/* About Content */
.about-content-compact {
    margin: 2rem 0;
}

.about-description {
    text-align: center;
    margin-bottom: 2rem;
}

.about-description p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.contact-and-dealers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-section p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

.dealers-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
}

.dealer-logos-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.dealer-logos-compact img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-and-dealers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .carousel-btn {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }
    
    .testimonial-slide .testimonial-card {
        margin: 0 0.5rem;
        padding: 1rem;
        min-height: 140px;
    }
}
/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 0.5rem;
}

.about-text h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.about-dealers h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.dealer-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
}

.dealer-logo {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dealer-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .nav-logo {
        height: 50px;
    }
    
    .nav-company-info h1 {
        font-size: 1.2rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .app-content {
        margin-top: 180px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .hero-divider {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .eagle-products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .uhaul-services {
        grid-template-columns: 1fr;
    }
    
    .ramps-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ramp-products {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .dealer-logos {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-row {
        grid-template-columns: 1fr;
    }
    
    .eagle-products {
        grid-template-columns: 1fr;
    }
    
    .ramps-features {
        grid-template-columns: 1fr;
    }
}



/* About Us Footer */
.about-footer {
    background: #1e5f7a;
    color: white;
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
}

.about-footer {
    background: #1e5f7a;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
    width: 100%;
}

.about-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.footer-company h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-company p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.footer-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-hours p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 1.5rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.25rem 0;
    font-size: 0.85rem;
    color: #d1d5db;
}

.copyright {
    font-weight: 500;
}

/* About Us Bottom Bar */
.about-bottom-bar {
    background: #2563eb;
    padding: 0.75rem 0;
    margin-top: 1rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.bottom-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.bottom-bar-content p {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Resize testimonials for better fit */
.testimonials-section {
    padding: 0.5rem 0 0.5rem 0;
    margin-bottom: 0.5rem;
}

.testimonials-section h3 {
    margin-bottom: 0.5rem;
}

.testimonials-section p {
    margin-bottom: 1rem;
}

.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    min-height: 180px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 0.5rem;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide .stars {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.testimonial-slide blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    color: #374151;
}

.testimonial-author strong {
    font-size: 0.95rem;
    color: #1f2937;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Compact About Us sections */
.about-content-compact {
    padding: 0.5rem 0;
}

.contact-and-dealers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 0.5rem;
}

.contact-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.dealer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.dealer-logos-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.dealer-logos-compact img {
    max-height: 45px;
    max-width: 100px;
    object-fit: contain;
}

