/*
Theme Name: PureClean Pro - Professional Cleaning Services
Theme URI: https://purecleanpro.nl
Description: Modern Divi child theme for professional cleaning services with vibrant blue and green branding
Author: PureClean Pro
Author URI: https://purecleanpro.nl
Template: Divi
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: pureclean-pro
*/

/* ============================================
   PURECLEAN PRO COLOR PALETTE
   Primary Blue: #3ACFFF
   Secondary Green: #48D93F
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Primary Colors */
    --pcp-blue: #3ACFFF;
    --pcp-blue-dark: #2AB8E8;
    --pcp-blue-light: #5DD9FF;

    /* Secondary Colors */
    --pcp-green: #48D93F;
    --pcp-green-dark: #3DC235;
    --pcp-green-light: #5EE354;

    /* Neutral Colors */
    --pcp-white: #FFFFFF;
    --pcp-light-bg: #F5F8FA;
    --pcp-gray: #8B9CA8;
    --pcp-dark: #2C3E50;
    --pcp-text: #333333;

    /* Gradients */
    --pcp-gradient-main: linear-gradient(135deg, #3ACFFF 0%, #48D93F 100%);
    --pcp-gradient-subtle: linear-gradient(135deg, rgba(58, 207, 255, 0.1) 0%, rgba(72, 217, 63, 0.1) 100%);
    --pcp-gradient-overlay: linear-gradient(135deg, rgba(58, 207, 255, 0.85) 0%, rgba(72, 217, 63, 0.85) 100%);

    /* Shadows */
    --pcp-shadow-sm: 0 2px 8px rgba(58, 207, 255, 0.15);
    --pcp-shadow-md: 0 4px 16px rgba(58, 207, 255, 0.2);
    --pcp-shadow-lg: 0 8px 32px rgba(58, 207, 255, 0.25);

    /* Typography */
    --pcp-font-heading: 'Poppins', sans-serif;
    --pcp-font-body: 'Inter', sans-serif;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

body {
    font-family: var(--pcp-font-body) !important;
    color: var(--pcp-text) !important;
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6,
.et_pb_module_header,
.et_pb_slide_title {
    font-family: var(--pcp-font-heading) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

#main-header {
    background-color: var(--pcp-white) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.et-fixed-header {
    box-shadow: 0 4px 24px rgba(58, 207, 255, 0.12);
}

#top-menu li a {
    font-family: var(--pcp-font-body) !important;
    color: var(--pcp-dark) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 24px 20px !important;
    transition: all 0.3s ease !important;
}

#top-menu li.current-menu-item > a,
#top-menu li a:hover {
    color: var(--pcp-blue) !important;
}

#top-menu li.current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--pcp-gradient-main);
    border-radius: 2px 2px 0 0;
}

.logo_container img {
    max-height: 65px !important;
    transition: transform 0.3s ease;
}

#main-header:hover .logo_container img {
    transform: scale(1.02);
}

/* ============================================
   BUTTONS & CTA
   ============================================ */

.et_pb_button,
.et_pb_promo_button,
.pcp-btn {
    background: var(--pcp-gradient-main) !important;
    border: none !important;
    font-family: var(--pcp-font-body) !important;
    padding: 16px 36px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: var(--pcp-shadow-md) !important;
    color: white !important;
    border-radius: 8px !important;
    text-transform: uppercase;
}

.et_pb_button:hover,
.et_pb_promo_button:hover,
.pcp-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--pcp-shadow-lg) !important;
}

.et_pb_button.pcp-btn-outline {
    background: transparent !important;
    border: 2px solid var(--pcp-blue) !important;
    color: var(--pcp-blue) !important;
}

.et_pb_button.pcp-btn-outline:hover {
    background: var(--pcp-blue) !important;
    color: white !important;
}

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

.pcp-hero {
    min-height: 600px !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
}

.pcp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pcp-gradient-overlay);
    z-index: 1;
}

.pcp-hero .et_pb_slide_description {
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.pcp-hero h1 {
    font-size: 56px !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 24px !important;
}

.pcp-hero p {
    font-size: 20px !important;
    color: white !important;
    max-width: 640px;
    margin: 0 auto 32px !important;
}

/* ============================================
   CONTACT BAR
   ============================================ */

.pcp-contact-bar {
    background: var(--pcp-gradient-main) !important;
    padding: 32px 0 !important;
    box-shadow: var(--pcp-shadow-md);
}

.pcp-contact-bar h2,
.pcp-contact-bar p,
.pcp-contact-bar a {
    color: white !important;
}

.pcp-contact-bar .et_pb_button {
    background-color: white !important;
    color: var(--pcp-blue) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2) !important;
}

.pcp-contact-bar .et_pb_button:hover {
    background-color: var(--pcp-light-bg) !important;
}

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

.pcp-services-section {
    background-color: var(--pcp-light-bg) !important;
    padding: 100px 0 !important;
}

.pcp-service-card {
    background: white !important;
    padding: 40px 32px !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 16px !important;
    box-shadow: var(--pcp-shadow-sm) !important;
    position: relative;
    overflow: hidden;
}

.pcp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pcp-gradient-main);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pcp-service-card:hover::before {
    transform: scaleX(1);
}

.pcp-service-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: var(--pcp-shadow-lg) !important;
}

.pcp-service-card h3 {
    color: var(--pcp-dark) !important;
    font-size: 20px !important;
    margin: 24px 0 16px !important;
    font-weight: 600 !important;
}

.pcp-service-card p {
    color: var(--pcp-gray) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.pcp-service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    background: var(--pcp-gradient-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.pcp-service-card:hover .pcp-service-icon {
    transform: scale(1.15) rotate(8deg);
}

/* ============================================
   SECTION TITLES
   ============================================ */

.pcp-section-title {
    color: var(--pcp-dark) !important;
    text-align: center;
    margin-bottom: 64px !important;
    position: relative;
}

.pcp-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--pcp-gradient-main);
    margin: 24px auto 0;
    border-radius: 2px;
}

.pcp-section-subtitle {
    color: var(--pcp-blue) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px !important;
    text-align: center;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */

.pcp-content-block h2 {
    color: var(--pcp-dark) !important;
    font-size: 36px !important;
    margin-bottom: 24px !important;
}

.pcp-content-block h3 {
    color: var(--pcp-dark) !important;
    font-size: 24px !important;
    margin: 32px 0 16px !important;
}

.pcp-content-block p {
    color: var(--pcp-text) !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
}

.pcp-content-block ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.pcp-content-block ul li {
    padding: 12px 0 12px 36px;
    position: relative;
    color: var(--pcp-text);
}

.pcp-content-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pcp-green);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   FEATURE BOXES
   ============================================ */

.pcp-feature-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--pcp-shadow-sm);
    transition: all 0.3s ease;
}

.pcp-feature-box:hover {
    box-shadow: var(--pcp-shadow-md);
    transform: translateY(-4px);
}

.pcp-feature-number {
    width: 56px;
    height: 56px;
    background: var(--pcp-gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ============================================
   FORMS
   ============================================ */

.et_pb_contact_form input[type="text"],
.et_pb_contact_form input[type="email"],
.et_pb_contact_form input[type="tel"],
.et_pb_contact_form textarea,
.et_pb_contact_form select {
    background: white !important;
    border: 2px solid #E8EEF2 !important;
    padding: 14px 18px !important;
    font-family: var(--pcp-font-body) !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
}

.et_pb_contact_form input:focus,
.et_pb_contact_form textarea:focus,
.et_pb_contact_form select:focus {
    border-color: var(--pcp-blue) !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(58, 207, 255, 0.1) !important;
}

.et_pb_contact_form label {
    color: var(--pcp-dark) !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.et_pb_contact_form .et_pb_contact_submit {
    background: var(--pcp-gradient-main) !important;
    color: white !important;
    padding: 16px 40px !important;
    border: none !important;
    box-shadow: var(--pcp-shadow-md) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

#main-footer {
    background: linear-gradient(135deg, #2AB8E8 0%, #3DC235 100%) !important;
    color: white !important;
    padding: 80px 0 32px !important;
}

#main-footer h4,
#main-footer .widget-title {
    color: white !important;
    font-size: 20px !important;
    margin-bottom: 24px !important;
    font-family: var(--pcp-font-heading) !important;
    font-weight: 600 !important;
}

#main-footer a {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 2 !important;
    transition: color 0.3s ease !important;
}

#main-footer a:hover {
    color: white !important;
}

#footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

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

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

.pcp-location-list {
    column-count: 2;
    column-gap: 24px;
    list-style: none;
    padding: 0;
}

.pcp-location-list li {
    padding: 10px 0;
    color: var(--pcp-gray);
    transition: color 0.3s ease;
}

.pcp-location-list li a {
    color: var(--pcp-gray) !important;
}

.pcp-location-list li a:hover {
    color: var(--pcp-blue) !important;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.pcp-testimonial {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--pcp-shadow-sm);
    position: relative;
}

.pcp-testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--pcp-blue);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.pcp-testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--pcp-text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.pcp-testimonial-author {
    font-weight: 600;
    color: var(--pcp-dark);
}

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

/* ============================================
   STATS/COUNTERS
   ============================================ */

.pcp-stat {
    text-align: center;
    padding: 32px;
}

.pcp-stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--pcp-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.pcp-stat-label {
    font-size: 16px;
    color: var(--pcp-gray);
    font-weight: 500;
}

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

@media (max-width: 980px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }

    .pcp-hero {
        min-height: 450px !important;
    }

    .pcp-location-list {
        column-count: 1;
    }

    .mobile_menu_bar {
        background: var(--pcp-gradient-main) !important;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }

    .pcp-service-card {
        margin-bottom: 24px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.pcp-bg-gradient { background: var(--pcp-gradient-main) !important; }
.pcp-bg-light { background: var(--pcp-light-bg) !important; }
.pcp-text-blue { color: var(--pcp-blue) !important; }
.pcp-text-green { color: var(--pcp-green) !important; }
.pcp-text-center { text-align: center !important; }

.pcp-mb-small { margin-bottom: 24px !important; }
.pcp-mb-medium { margin-bottom: 48px !important; }
.pcp-mb-large { margin-bottom: 80px !important; }

.pcp-pt-small { padding-top: 40px !important; }
.pcp-pt-medium { padding-top: 80px !important; }
.pcp-pt-large { padding-top: 120px !important; }

.pcp-pb-small { padding-bottom: 40px !important; }
.pcp-pb-medium { padding-bottom: 80px !important; }
.pcp-pb-large { padding-bottom: 120px !important; }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes pcpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pcp-fade-in-up {
    animation: pcpFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pcpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pcp-float {
    animation: pcpFloat 3s ease-in-out infinite;
}
