/* ==========================================================================
   SERVICE 10: PLUMBING V2 (ARCHITECTURE 1, VIBRANT THEME)
   ========================================================================== */

:root {
    --primary: #0f172a;        /* Dark Navy for text legibility */
    --brand-primary: #4f46e5;  /* Vibrant Electric Indigo */
    --brand-secondary: #06b6d4;/* Vibrant Cyan */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography Limits Enforced */
h1, h2, h3, h4, .logo { color: var(--primary); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(2rem, 3vw, 2.4rem); margin-bottom: 15px; } 

.container { max-width: 1150px; margin: 0 auto; padding: 0 5%; }
img { max-width: 100%; display: block; border-radius: 16px; }
a { text-decoration: none; }

/* Utilities & Tight Spacing (60px-80px max) */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.vibrant-text { color: var(--brand-primary); }
.bg-light { background-color: var(--bg-light); }
.border-top { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }
.flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.eyebrow { font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.font-sm { font-size: 0.9rem; }
.mt-2 { margin-top: 10px; } .mt-4 { margin-top: 30px; } .pt-3 { padding-top: 20px; }

/* Banner */
.josef-preview-banner { background: var(--bg-light); color: var(--text-main); text-align: center; padding: 8px; font-size: 13px; border-bottom: 1px solid var(--border); }

/* =========================================================
   MASTER PROTOCOL: ARCHITECTURE 1 (SCULPTED FLOATING BAR)
   ========================================================= */
.header-1-wrapper { padding: 20px 0; position: sticky; top: 0; z-index: 100; }
.header-1 {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
    border-radius: 100px; padding: 10px 15px 10px 30px;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08); /* Vibrant shadow */
    display: flex; justify-content: space-between; align-items: center;
    border: 1px solid rgba(79, 70, 229, 0.1);
}
.logo { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.5px; }

.header-1-nav { background: var(--bg-light); padding: 12px 30px; border-radius: 50px; display: flex; gap: 30px; }
.nav-link { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-link:hover { color: var(--brand-primary); }

.btn-primary { 
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); 
    color: white; padding: 14px 28px; border-radius: 50px; font-weight: 700; 
    transition: all 0.3s; display: inline-block; box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3); 
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4); }

/* 1. Hero Section */
.plumbing-hero { padding: 40px 0 60px 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.vibrant-badge { display: inline-flex; align-items: center; gap: 8px; background: #eef2ff; color: var(--brand-primary); padding: 8px 16px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; margin-bottom: 20px; border: 1px solid #c7d2fe; }
.hero-text h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 20px; letter-spacing: -1px; }
.hero-text p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-text { display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.hero-image img { box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1); height: 550px; object-fit: cover; }

/* 2. Trust Bar */
.trust-bar { padding: 30px 0; }
.logo-flex { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.trust-logo { font-size: 1.2rem; font-weight: 800; color: #94a3b8; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.trust-logo:hover { color: var(--brand-secondary); }

/* 3. About Section */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.floating-card { position: absolute; bottom: -20px; right: -20px; background: white; padding: 25px; border-radius: 16px; box-shadow: 0 15px 35px rgba(6, 182, 212, 0.15); border: 1px solid var(--border); text-align: center; }
.floating-card h3 { font-size: 2.5rem; color: var(--brand-secondary); margin-bottom: 0; line-height: 1; }
.floating-card p { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin: 0; }
.about-content p { font-size: 1.05rem; margin-bottom: 30px; }
.benefit-list { display: flex; flex-direction: column; gap: 25px; }
.benefit-item { display: flex; gap: 15px; align-items: flex-start; }
.icon-wrap { width: 50px; height: 50px; background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.benefit-item h4 { margin-bottom: 5px; font-size: 1.1rem; }

/* 4. Services Section */
.services-section { padding: 80px 0; }
.section-header { margin-bottom: 50px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 40px 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(79, 70, 229, 0.1); }
.card-icon { font-size: 2.5rem; color: var(--brand-secondary); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 10px; }

/* 5. Process Section */
.process-section { padding: 80px 0; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.step-card { padding: 30px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-light); position: relative; text-align: center; }
.step-number { width: 45px; height: 45px; background: var(--brand-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; margin: 0 auto 15px auto; box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3); }

/* 6. Reviews Section */
.review-section { padding: 80px 0; }
.review-card { max-width: 800px; margin: 0 auto; background: white; padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(79, 70, 229, 0.05); border: 1px solid var(--border); }
.review-card .stars { color: var(--brand-secondary); font-size: 1.5rem; margin-bottom: 20px; }
.review-card blockquote { font-size: 1.2rem; font-style: italic; color: var(--primary); margin-bottom: 20px; }

/* 7. Footer */
.vibrant-footer { padding: 60px 0 20px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.footer-contact h4 { margin-bottom: 15px; }
.footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--text-muted); font-weight: 500; }
.socials a { color: var(--text-muted); font-size: 1.4rem; margin-left: 15px; transition: color 0.2s; }
.socials a:hover { color: var(--brand-primary); }

/* Animations */
.fade-in-up { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile */
@media (max-width: 992px) {
    .hide-mobile { display: none; }
    .hero-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .floating-card { position: relative; bottom: 0; right: 0; margin-top: -30px; margin-left: 20px; width: max-content; }
}