/* ============================================
   PROPAINT SERVICES - MODERN DESIGN
   ============================================ */

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

:root {
    --primary: #6b5b95;
    --secondary: #f18f01;
    --accent: #c73e1d;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --text: #2c3e50;
    --border: #e0e0e0;
    --success: #27ae60;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ============================================
   HEADER
   ============================================ */

.header {
    background: linear-gradient(135deg, var(--primary) 0%, #4a3f6b 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 1px;
}

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

.cta-button {
    background-color: var(--secondary);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(241, 143, 1, 0.3);
}

.cta-button:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(241, 143, 1, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 91, 149, 0.8) 0%, rgba(74, 63, 107, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 700px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #4a3f6b 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 91, 149, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 143, 1, 0.4);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}

.services h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2 equal columns */
    gap: 35px; /* Keep your existing gap */
}

/* Preserve mobile stacking (overrides your existing @media) */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 per row on small screens */
    }
}
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    flex: 1;
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.map-section > .container > p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 16px;
}

.map-container {
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-areas {
    background: linear-gradient(135deg, var(--light) 0%, #f0f0f0 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary);
}

.service-areas h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
}

.service-areas ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.service-areas li {
    padding: 12px 15px;
    background: white;
    border-radius: 6px;
    border-left: 4px solid var(--secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-areas li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}

.reviews-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.reviews-section > .container > p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 16px;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
    font-weight: 700;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.rating {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.reviews-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary);
}

.reviews-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 600;
}

.reviews-cta strong {
    color: var(--primary);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.faq-section > .container > p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 16px;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--light) 0%, #f0f0f0 100%);
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e8e8e8 0%, #ddd 100%);
}

.faq-question.active {
    background: linear-gradient(135deg, var(--primary) 0%, #4a3f6b 100%);
    color: white;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px;
    background: white;
    display: none;
    border-top: 1px solid var(--border);
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.contact-section > .container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 16px;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-top: 5px solid var(--secondary);
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(107, 91, 149, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

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

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

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #4a3f6b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 18px;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.85;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo h1 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .services h2,
    .map-section h2,
    .reviews-section h2,
    .faq-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .services {
        padding: 60px 0;
    }

    .service-areas ul {
        grid-template-columns: 1fr;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .tagline {
        font-size: 11px;
    }

    .hero {
        min-height: 400px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .services,
    .map-section,
    .reviews-section,
    .faq-section,
    .contact-section,
    .cta-section {
        padding: 40px 0;
    }

    .services h2,
    .map-section h2,
    .reviews-section h2,
    .faq-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 24px;
    }

    .map-container {
        height: 300px;
    }

    .map-container iframe {
        height: 300px;
    }

    .service-image {
        height: 180px;
    }
}
