/*
Theme Name: Plumber Profits Child
Theme URI: https://plumberprofits.net/
Description: Custom child theme for Plumber Profits - Plumbing, HVAC & Electrical Companies
Author: Plumber Profits
Author URI: https://plumberprofits.net/
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: plumber-profits-child
*/

/* ===================================
   Color Variables
   =================================== */
:root {
    --primary-red: #FF0000;
    --primary-yellow: #FFD700;
    --primary-green: #7CB342;
    --dark-navy: #1a2332;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --white: #ffffff;
}

/* ===================================
   Global Styles
   =================================== */
body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-navy);
}

/* ===================================
   Header Styles
   =================================== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.custom-logo-link img {
    max-height: 80px;
    width: auto;
}

.header-phone {
    color: var(--primary-red);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.header-phone:hover {
    color: var(--dark-navy);
}

/* ===================================
   Button Styles
   =================================== */
.btn-primary,
.wp-block-button__link,
.ast-button,
.button {
    background-color: var(--primary-red) !important;
    color: var(--white) !important;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover,
.wp-block-button__link:hover,
.ast-button:hover,
.button:hover {
    background-color: var(--dark-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: var(--primary-yellow) !important;
    color: var(--dark-navy) !important;
}

.btn-secondary:hover {
    background-color: var(--primary-green) !important;
    color: var(--white) !important;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-content h1 {
    color: var(--primary-red);
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content .tagline {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 30px;
}

/* ===================================
   Service Cards
   =================================== */
.service-card {
    background: var(--white);
    border: 3px dashed var(--primary-red);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-green);
}

.service-card h3 {
    color: var(--dark-navy);
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

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

/* ===================================
   Feature Boxes
   =================================== */
.feature-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-box .icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
}

.stat-description {
    font-size: 14px;
    opacity: 0.9;
}

/* ===================================
   Testimonial Section
   =================================== */
.testimonial-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-navy);
}

.testimonial-company {
    color: var(--primary-red);
    font-size: 14px;
}

/* ===================================
   Footer Styles
   =================================== */
.site-footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 40px 20px;
}

.footer-widget h3 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

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

.footer-widget a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: var(--primary-yellow);
}

/* ===================================
   Pricing Tables
   =================================== */
.pricing-table {
    background: var(--white);
    border: 3px solid var(--light-gray);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.pricing-table:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.pricing-table.featured {
    border-color: var(--primary-red);
    border-width: 5px;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 28px;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.pricing-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content .tagline {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .header-phone {
        font-size: 18px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.text-red {
    color: var(--primary-red);
}

.text-yellow {
    color: var(--primary-yellow);
}

.text-green {
    color: var(--primary-green);
}

.bg-light {
    background-color: var(--light-gray);
}

.section-padding {
    padding: 80px 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}
