/* ============================================
   SUPERIOR CARPET CLEANING - PROFESSIONAL STYLING
   ============================================ */

/* Main color scheme - Professional Blues */
:root {
    --primary-blue: #1e3c72;
    --light-blue: #1e3c72;
    --accent-blue: #1e3c72;
    --text-dark: #1e3c72;
    --text-light: #555;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
}

/* ========================================
   SUPERIOR CARPET CLEANING HEADER DESIGN
   Options 3 &amp; 4: Tagline Banner + Icon Accents
   ======================================== */

/* Logo container with tagline */
.site-branding {
    position: relative;
}

/* Tagline banner under logo */
.custom-tagline {
    background: linear-gradient(135deg, #1a3a5c 0%, #28a745 100%);
    color: white;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Decorative icons around logo area */
.logo-accent-left,
.logo-accent-right {
    position: absolute;
    font-size: 28px;
    opacity: 0.15;
    pointer-events: none;
}

.logo-accent-left {
    left: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}

.logo-accent-right {
    right: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
}

/* Enhanced header background */
header,
.site-header {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 3px solid #28a745;
    padding: 20px 0;
}

/* Make sure logo and tagline are centered nicely */
.custom-logo-link {
    display: inline-block;
}

/* Add sparkle animation to icons (optional) */
@keyframes sparkle {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.3; }
}

.logo-accent-left,
.logo-accent-right {
    animation: sparkle 3s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-tagline {
        font-size: 11px;
        padding: 6px 15px;
    }
    
    .logo-accent-left,
    .logo-accent-right {
        font-size: 20px;
        opacity: 0.1;
    }
    
    .logo-accent-left {
        left: -30px;
    }
    
    .logo-accent-right {
        right: -30px;
    }
}

/* ========================================
   HTML TO ADD (see instructions below)
   ======================================== */

/*
STEP 1: Add this CSS to Appearance → Customize → Additional CSS

STEP 2: You need to add this HTML around your logo in header.php:


    ✨
    
    <!-- Your existing logo code stays here -->
    
    🧼
    Canonsburg's Trusted Carpet Cleaning Experts Since 1985


ALTERNATIVE ICONS you can use instead of ✨ and 🧼:
- ✨ (sparkle)
- 🧽 (sponge)
- 🧼 (soap)
- 💧 (water drop)
- ⭐ (star)
- 🏠 (house)
- 🌟 (glowing star)

*/
/* Trust Badges Styling */
.trust-badges {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 24px;
    color: white;
}

.badge-text {
    font-size: 12px;
    font-weight: bold;
    color: #1a3a5c;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 15px;
    }
    .badge {
        min-width: 70px;
    }
    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .badge-text {
        font-size: 10px;
    }
}

/* Better Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Headings with professional styling */
h1, h2, h3, h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--accent-blue);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-left: 20px;
}

h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 30px;
    background: var(--accent-blue);
}

h3 {
    font-size: 1.5rem;
    color: var(--light-blue);
}

/* Paragraph spacing and readability */
p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Professional link styling */
a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Button styling - eye-catching CTAs */
.wp-block-button__link,
.button,
a.button {
    background: var(--primary-blue) !important;
    color: white !important;
    padding: 15px 35px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2) !important;
}

.wp-block-button__link:hover,
.button:hover,
a.button:hover {
    background: var(--light-blue) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.3) !important;
}

/* Phone number styling - make it stand out */
a[href^="tel"] {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    padding: 5px 10px;
    background: linear-gradient(to right, #f0f8ff, transparent);
    border-left: 4px solid var(--accent-blue);
}

a[href^="tel"]:hover {
    background: var(--background-light);
    text-decoration: none;
}

/* Bullet points - cleaner look */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-light);
}

/* Remove checkmarks from navigation and header links */
nav ul li:before,
.menu li:before,
.menu-item:before,
header ul li:before,
footer ul li:before {
    content: none !important;
    display: none !important;
}

/* Blockquotes (for testimonials) */
blockquote {
    border-left: 5px solid var(--accent-blue);
    padding: 20px 25px;
    background: var(--background-light);
    margin: 25px 0;
    font-style: italic;
    color: var(--text-dark);
    border-radius: 0 8px 8px 0;
}

/* Section dividers */
hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-blue), transparent);
    margin: 40px 0;
}

/* Highlighted sections/boxes */
.wp-block-group,
.highlight-box {
    background: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Trust badges / key points */
.trust-badge {
    background: white;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsive design - looks good on mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
    }
}

/* Make images look professional */
img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}

/* Service boxes styling */
.service-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--accent-blue);
}

/* Contact information highlighting */
.contact-info {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.contact-info a {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);
}

.contact-info a:hover {
    border-bottom-color: white;
}

/* Reviews/Testimonials styling */
.testimonial {
    background: white;
    border-left: 5px solid var(--accent-blue);
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    font-style: italic;
}

.testimonial:before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-blue);
    opacity: 0.3;
    line-height: 0;
}

/* Twenty Twenty-Five Theme - Remove white squares from navigation */
.wp-block-navigation ul,
.wp-block-navigation ul li,
.wp-block-navigation__submenu-container,
header .wp-block-navigation ul,
header .wp-block-navigation ul li {
    list-style: none !important;
    padding-left: 0 !important;
    background: none !important;
}

/* Make sure content lists show checkmarks */
.entry-content ul li:before,
article ul li:before,
main ul li:before {
    content: "✓" !important;
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
    display: block !important;
}

.entry-content ul li,
article ul li,
main ul li {
    position: relative;
    padding-left: 30px !important;
    list-style: none !important;
}

/* Remove shadow boxes from HEADER specifically */
header,
header *,
header .wp-block-group,
.wp-block-template-part header,
.site-header,
.site-header *,
.wp-block-template-part,
body > header {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

/* Remove background shapes from header */
header::before,
header::after,
.site-header::before,
.site-header::after,
.wp-block-template-part::before,
.wp-block-template-part::after {
    display: none !important;
    content: none !important;
}

/* Force clean header background */
header,
.site-header,
.wp-block-template-part {
    background: var(--wp--preset--color--base) !important;
}

/* Remove shadow boxes from FOOTER specifically */
footer,
footer *,
footer .wp-block-group,
.wp-block-template-part footer,
.site-footer,
.site-footer *,
body > footer {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

/* Remove background shapes from footer */
footer::before,
footer::after,
.site-footer::before,
.site-footer::after {
    display: none !important;
    content: none !important;
}

/* Force clean footer background */
footer,
.site-footer {
    background: var(--wp--preset--color--base) !important;
}