/*
Theme Name: Hello Elementor Child - Mobile Auto Detailers
Theme URI: https://mobileautodetailers.com.au/
Description: Custom child theme for Mobile Auto Detailers with landing page styles
Author: Mobile Auto Detailers
Template: hello-elementor
Version: 1.0.0
*/

/**
 * Custom CSS for Landing Pages - Mobile Auto Detailers
 */

/* ============================================
   LANDING PAGE SPECIFIC STYLES
   ============================================ */

/* Hide header/footer on landing pages (if using Canvas template) */
.elementor-template-canvas {
    margin: 0;
    padding: 0;
}

/* ============================================
   LOCATION-SPECIFIC PRICING TABLES
   ============================================ */

/* Base pricing table styles */
.location-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-pricing-table th {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}

.location-pricing-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #e0e0e0;
}

.location-pricing-table tr:hover {
    background-color: #f5f5f5;
}

/* Price highlight */
.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c8102e;
}

/* Melbourne-specific pricing highlight */
.melbourne-pricing .price-amount {
    color: #003a70; /* Melbourne blue */
}

/* Rockingham-specific pricing highlight */
.rockingham-pricing .price-amount {
    color: #c8102e; /* WA red */
}

/* ============================================
   HERO SECTION LOCATION BADGES
   ============================================ */

.location-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-badge.melbourne {
    background: linear-gradient(135deg, #003a70 0%, #0066cc 100%);
}

.location-badge.rockingham {
    background: linear-gradient(135deg, #c8102e 0%, #ff4458 100%);
}

/* ============================================
   SERVICE AREA LISTS
   ============================================ */

.service-areas {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.service-areas h3 {
    margin-top: 0;
    color: #1a1a1a;
}

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

.service-areas li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 25px;
}

.service-areas li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* ============================================
   CTA BUTTONS - LOCATION SPECIFIC
   ============================================ */

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.cta-button.melbourne {
    background: linear-gradient(135deg, #003a70 0%, #0066cc 100%);
    color: white;
}

.cta-button.melbourne:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 58, 112, 0.3);
}

.cta-button.rockingham {
    background: linear-gradient(135deg, #c8102e 0%, #ff4458 100%);
    color: white;
}

.cta-button.rockingham:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 16, 46, 0.3);
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.trust-badge-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.trust-badge-item i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .location-pricing-table {
        font-size: 0.9rem;
    }

    .location-pricing-table th,
    .location-pricing-table td {
        padding: 0.8rem;
    }

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

    .cta-button {
        display: block;
        width: 100%;
        margin: 1rem 0;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.location-testimonial {
    background-color: #fff;
    padding: 2rem;
    border-left: 4px solid #4CAF50;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.location-testimonial.melbourne {
    border-left-color: #003a70;
}

.location-testimonial.rockingham {
    border-left-color: #c8102e;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}
