/* ================================================
   MEPS Junk Removal - Basic Styles
   ================================================ */

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

body {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background: #fff;
}

h1, h2, h3, h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
}

a {
    color: #0066cc;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background: #333;
    color: #fff;
    padding: 8px 0;
    font-size: 12px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.top-bar .tagline {
    color: #ccc;
}

/* Header */
.main-header {
    background: #f5f5f5;
    padding: 15px 0;
    border-bottom: 2px solid #336633;
}

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

.logo-text h1 {
    font-size: 28px;
    color: #336633;
    margin: 0;
}

.logo-text span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #666;
}

.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
}

.main-nav a:hover {
    text-decoration: underline;
}

.main-nav .nav-cta {
    background: #336633;
    color: #fff;
    padding: 6px 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #336633;
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: #333;
    border: 1px solid #333;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero */
.hero {
    background: #336633;
    color: #fff;
    padding: 40px 0;
}

.hero-overlay {
    display: none;
}

.hero h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.hero h2 span {
    color: #ffcc00;
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    font-size: 12px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 24px;
}

.section-header p {
    color: #666;
}

.header-underline {
    width: 50px;
    height: 3px;
    background: #336633;
    margin: 10px auto;
}

.header-underline.left {
    margin-left: 0;
}

/* Services */
.services {
    padding: 40px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
}

.service-card h3 {
    font-size: 16px;
    color: #336633;
}

.service-card p {
    font-size: 13px;
    color: #666;
}

/* How It Works */
.how-it-works {
    padding: 40px 0;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    background: #fff;
    padding: 25px;
    border: 1px solid #ddd;
    text-align: center;
    width: 200px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #336633;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 16px;
}

.step p {
    font-size: 13px;
    color: #666;
}

.step-arrow {
    font-size: 24px;
    color: #336633;
    align-self: center;
}

/* Pricing */
.pricing {
    padding: 40px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.price-card {
    background: #fff;
    border: 1px solid #ddd;
}

.price-card.featured {
    border: 2px solid #336633;
}

.featured-badge {
    background: #336633;
    color: #fff;
    font-size: 11px;
    padding: 5px;
    text-align: center;
}

.price-header {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.price-header h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: #336633;
}

.price span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #666;
}

.price-card ul {
    list-style: none;
    padding: 20px;
}

.price-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.price-card li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* About */
.about {
    padding: 40px 0;
}

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

.about-text h2 {
    font-size: 24px;
}

.about-text p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #444;
}

.about-features {
    list-style: disc;
    margin-left: 20px;
    margin-top: 15px;
}

.about-features li {
    padding: 5px 0;
    font-size: 14px;
}

.image-placeholder {
    background: #f5f5f5;
    border: 1px solid #ddd;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder p {
    color: #999;
    font-size: 14px;
}

/* Contact */
.contact {
    padding: 40px 0;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.contact-form {
    background: #fff;
    padding: 25px;
    border: 1px solid #ddd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 13px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    font-family: Verdana, Geneva, sans-serif;
    border: 1px solid #ccc;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

.info-card h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 13px;
    color: #666;
}

.info-card a {
    font-size: 13px;
}

.phone-link {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

/* Footer */
.main-footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
}

.footer-brand .logo-text h3 {
    color: #fff;
    font-size: 20px;
}

.footer-brand .logo-text span {
    color: #999;
}

.footer-brand p {
    color: #999;
    font-size: 13px;
    margin-top: 10px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links a {
    display: block;
    color: #999;
    text-decoration: none;
    padding: 4px 0;
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: #999;
    font-size: 13px;
    padding: 4px 0;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #777;
}

/* Form Messages */
.form-message {
    display: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.form-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

