/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #0a0d3a;
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 15px;
}

.separator {
    margin: 0 10px;
    opacity: 0.5;
}

.highlight {
    background-color: #aefc3f;
    color: #0a0d3a;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: bold;
}

/* Navigation */
.navbar {
    background-color: #0a0d3a;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #aefc3f;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #aefc3f;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}

.btn-green {
    background-color: #aefc3f;
    color: #0a0d3a;
}

.btn-green:hover {
    background-color: #9ee02f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(174, 252, 63, 0.3);
}

.btn-white-outline {
    background-color: white;
    color: #0a0d3a;
    border: 2px solid #0a0d3a;
}

.btn-white-outline:hover {
    background-color: #aefc3f;
    border-color: #aefc3f;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 18px;
    min-width: 240px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 13, 58, 0.85), rgba(10, 13, 58, 0.85)), 
                url('https://via.placeholder.com/1920x700/0a0d3a/aefc3f?text=Charleston+Background') center/cover;
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero-content {
    text-align: center;
}

.hero-center {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-text {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #aefc3f;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.2;
}

.white-text {
    color: white;
}

.green-text {
    color: #aefc3f;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 5-Star Reviews Section */
.stars-section {
    background-color: white;
    padding: 60px 0;
    border-bottom: 4px solid #aefc3f;
}

.stars-content {
    text-align: center;
}

.stars-content h2 {
    font-size: 36px;
    color: #0a0d3a;
    margin-bottom: 20px;
}

.stars-display {
    font-size: 48px;
    color: #aefc3f;
    margin-bottom: 30px;
    letter-spacing: 8px;
}

.review-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.review-quote {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #aefc3f;
}

.review-quote p {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.review-quote span {
    font-weight: bold;
    color: #0a0d3a;
    font-size: 14px;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.truck-image-large img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.welcome-right h2 {
    color: #0a0d3a;
    font-size: 36px;
    margin-bottom: 25px;
}

.welcome-right p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    color: #0a0d3a;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 20px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #aefc3f;
    box-shadow: 0 10px 30px rgba(174, 252, 63, 0.2);
}

.service-icon-circle {
    width: 90px;
    height: 90px;
    background-color: #f8f9fa;
    border: 3px solid #aefc3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin: 0 auto 15px;
}

.service-divider {
    width: 60px;
    height: 3px;
    background-color: #aefc3f;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #0a0d3a;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Service Area Section */
.service-area-section {
    background: linear-gradient(rgba(10, 13, 58, 0.92), rgba(10, 13, 58, 0.92)),
                url('https://via.placeholder.com/1920x600/0a0d3a/aefc3f?text=Charleston+Bridge') center/cover;
    color: white;
    padding: 80px 0;
}

.area-content {
    text-align: center;
}

.area-text-center h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.service-areas {
    font-size: 22px;
    line-height: 2;
    margin-bottom: 40px;
}

.area-item {
    color: #aefc3f;
    font-weight: 600;
}

.service-areas .separator {
    color: white;
    margin: 0 15px;
}

/* Office Section */
.office-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.office-left img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.office-right h2 {
    color: #0a0d3a;
    font-size: 36px;
    margin-bottom: 25px;
}

.office-right p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-section {
    background-color: #0a0d3a;
    padding: 80px 0;
}

.section-title-white {
    text-align: center;
    color: white;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.navy-frame {
    border: 5px solid #0a0d3a;
}

.green-frame {
    border: 5px solid #aefc3f;
}

.gallery-item:hover::after {
    content: 'Before / After';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(174, 252, 63, 0.9);
    color: #0a0d3a;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title-testimonials {
    text-align: center;
    color: #0a0d3a;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-subtitle-testimonials {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #aefc3f;
}

.quote-marks {
    font-size: 80px;
    color: #aefc3f;
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stars-green {
    font-size: 22px;
    margin-bottom: 15px;
    color: #aefc3f;
    letter-spacing: 3px;
}

.client-name {
    color: #0a0d3a !important;
    font-weight: bold;
    font-size: 16px !important;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-left h2,
.contact-right h2 {
    font-size: 32px;
    color: #0a0d3a;
    margin-bottom: 15px;
}

.contact-left p,
.contact-right p {
    color: #666;
    margin-bottom: 25px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input,
.quote-form textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #aefc3f;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #aefc3f;
}

.contact-info-box p {
    margin-bottom: 12px;
    color: #555;
}

.contact-phone {
    font-size: 28px;
    color: #aefc3f !important;
    font-weight: bold;
    margin-bottom: 20px !important;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-link {
    color: #0a0d3a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-link:hover {
    color: #aefc3f;
}

/* Footer */
.footer {
    background-color: #0a0d3a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(174, 252, 63, 0.3);
    align-items: center;
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.footer-center {
    text-align: center;
}

.footer-tagline {
    font-size: 18px;
    color: #aefc3f;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-trust {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-center p {
    margin-bottom: 8px;
}

.footer-right {
    text-align: right;
}

.trust-badge {
    background-color: rgba(174, 252, 63, 0.15);
    border: 2px solid #aefc3f;
    padding: 12px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #aefc3f;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #aefc3f;
    text-decoration: underline;
}

.back-to-top {
    background-color: #aefc3f;
    color: #0a0d3a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(174, 252, 63, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .welcome-content,
    .office-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .review-quotes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
    }
    
    .services-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-areas {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title,
    .section-title-white,
    .section-title-testimonials {
        font-size: 28px;
    }
    
    .stars-display {
        font-size: 36px;
    }
}
