/* 
============================================================
  PREMIUM UI & UX OVERRIDES
  - Typography (Inter & Outfit)
  - Glassmorphism & Soft Shadows
  - Micro-animations (hover effects)
  - CLS Fixes (min-heights)
============================================================
*/

/* --- Typography --- */
body, p, a, span, input, select, textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .ppp-logo-text {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

/* --- CLS Fixes --- */
.ppp-hero {
    min-height: clamp(500px, 75vh, 800px) !important;
    display: flex;
    align-items: center;
}
img {
    height: auto;
}

/* --- Navigation / Glassmorphism --- */
.ppp-header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
}

/* Fix text colors inside the white header */
.ppp-logo-text {
    color: #1e293b !important;
}

.ppp-header__nav-list a {
    color: #475569 !important;
    font-weight: 500 !important;
}

.ppp-header__nav-list a:hover {
    color: #1f6f1f !important;
}

.ppp-header__phone {
    color: #1f6f1f !important;
}

.ppp-header__phone:hover {
    color: #134d13 !important;
}

/* Fix mobile hamburger menu icon visibility */
.ppp-hamburger span {
    background: #1e293b !important;
}

/* --- Buttons --- */
.ppp-btn-primary, .ppp-popup-submit, .ppp-hero__card-cta {
    background: linear-gradient(135deg, #1f6f1f, #134d13) !important;
    box-shadow: 0 4px 15px rgba(31, 111, 31, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    border: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.ppp-btn-primary:hover, .ppp-popup-submit:hover, .ppp-hero__card-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(31, 111, 31, 0.35) !important;
    background: linear-gradient(135deg, #248224, #185e18) !important;
}

.ppp-btn-outline {
    border: 2px solid rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
}

.ppp-btn-outline:hover {
    background: rgba(255,255,255,0.15) !important;
    transform: translateY(-2px) !important;
}

/* --- Premium Cards (Services, Areas, Hero) --- */
.ppp-service-card, .ppp-area-card, .ppp-hero__card {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden;
}

.ppp-service-card:hover, .ppp-area-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

/* --- Hero Specific Tweaks --- */
.ppp-hero__card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    color: #1e293b !important;
}

/* Fix text colors inside the white card */
.ppp-hero__card-head {
    color: #475569 !important;
}

.ppp-hero__card-head span {
    color: #475569 !important;
}

.ppp-office-city {
    color: #1e293b !important;
    font-weight: 600 !important;
}

.ppp-office-phone {
    color: #1f6f1f !important;
    font-weight: 600 !important;
}

.ppp-office-phone:hover {
    color: #134d13 !important;
}

.ppp-hero__card-note {
    color: #64748b !important;
}

.ppp-hero__trust {
    gap: 12px !important;
}

.ppp-trust-pill {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 20px !important;
    padding: 6px 16px !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* --- Form Inputs (Popup & Contact) --- */
.ppp-popup-content {
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0,0,0,0.05) !important;
}

.ppp-popup-input, .contact-input, .contact-textarea {
    border-radius: 10px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.25s ease !important;
    padding: 12px 16px !important;
    font-weight: 500 !important;
    color: #1e293b !important;
}

.ppp-popup-input:focus, .contact-input:focus, .contact-textarea:focus {
    background: #ffffff !important;
    border-color: #1f6f1f !important;
    box-shadow: 0 0 0 4px rgba(31, 111, 31, 0.15) !important;
    outline: none !important;
}

.ppp-popup-label {
    font-weight: 600 !important;
    color: #475569 !important;
    font-size: 0.9rem !important;
    margin-bottom: 6px !important;
}
