/**
 * Kyle HVAC Pros - UX/UI Improvements Stylesheet
 *
 * 2025-2026 Best Practices Implementation
 * Mobile-first approach with trust-building design
 *
 * @version 1.0.0
 */

/* ==========================================================================
   1. BASE TYPOGRAPHY
   ========================================================================== */

body.kyle-hvac-ux-active {
    font-family: var(--khvac-font-body);
    font-size: 16px;
    line-height: 1.6;
    /* Let Astra handle text color */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.kyle-hvac-ux-active h1,
body.kyle-hvac-ux-active h2,
body.kyle-hvac-ux-active h3,
body.kyle-hvac-ux-active h4,
body.kyle-hvac-ux-active h5,
body.kyle-hvac-ux-active h6 {
    font-family: var(--khvac-font-heading);
    font-weight: 700;
    line-height: 1.3;
    /* Let Astra handle heading colors */
}

body.kyle-hvac-ux-active h1 { font-size: clamp(2rem, 5vw, 2.625rem); }
body.kyle-hvac-ux-active h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
body.kyle-hvac-ux-active h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

/* Link colors */
body.kyle-hvac-ux-active a {
    color: var(--khvac-primary);
}

body.kyle-hvac-ux-active a:hover,
body.kyle-hvac-ux-active a:focus {
    color: var(--khvac-primary-dark);
}

/* Mobile typography adjustments */
@media (max-width: 767px) {
    body.kyle-hvac-ux-active {
        font-size: 18px;
        line-height: 1.7;
    }
}


/* ==========================================================================
   2. EMERGENCY BANNER
   ========================================================================== */

.khvac-emergency-banner {
    background: linear-gradient(135deg, var(--khvac-emergency) 0%, var(--khvac-emergency-dark) 100%);
    color: var(--khvac-white);
    padding: 12px 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: var(--khvac-shadow-md);
}

.khvac-emergency-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
}

.khvac-emergency-banner__pulse {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--khvac-success);
    border-radius: 50%;
    animation: khvac-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
}

@keyframes khvac-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.khvac-emergency-banner__text {
    font-size: 14px;
    font-weight: 500;
}

.khvac-emergency-banner__text strong {
    font-weight: 700;
}

.khvac-emergency-banner__separator {
    margin: 0 8px;
    opacity: 0.7;
}

.khvac-emergency-banner__phone {
    color: var(--khvac-white);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--khvac-radius-md);
    transition: all 0.2s ease;
}

.khvac-emergency-banner__phone:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--khvac-white);
    transform: scale(1.02);
}

.khvac-phone-icon {
    flex-shrink: 0;
}

/* Mobile banner adjustments */
@media (max-width: 767px) {
    .khvac-emergency-banner {
        padding: 10px;
    }

    .khvac-emergency-banner__text {
        font-size: 13px;
    }

    .khvac-emergency-banner__separator {
        display: none;
    }

    .khvac-emergency-banner__inner {
        flex-direction: column;
        gap: 6px;
    }

    .khvac-emergency-banner__phone {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* ==========================================================================
   3. MOBILE STICKY CTA BUTTON
   ========================================================================== */

.khvac-mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    background: linear-gradient(135deg, var(--khvac-secondary) 0%, var(--khvac-secondary-dark) 100%);
    color: var(--khvac-white);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-family: var(--khvac-font-heading);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--khvac-shadow-lg);
    align-items: center;
    gap: 8px;
    min-height: 48px;
    min-width: 48px;
    transition: all 0.3s ease;
    animation: khvac-bounce 2s ease-in-out infinite;
}

.khvac-mobile-sticky-cta:hover,
.khvac-mobile-sticky-cta:focus {
    color: var(--khvac-white);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 87, 34, 0.4);
}

@keyframes khvac-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.khvac-mobile-sticky-cta:hover {
    animation: none;
}

/* Show only on mobile/tablet */
@media (max-width: 976px) {
    .khvac-mobile-sticky-cta {
        display: flex;
    }
}

/* Smaller screens - compact button */
@media (max-width: 480px) {
    .khvac-mobile-sticky-cta {
        bottom: 15px;
        right: 15px;
        padding: 16px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }

    .khvac-mobile-sticky-cta__text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .khvac-mobile-sticky-cta .khvac-phone-icon {
        width: 28px;
        height: 28px;
    }
}


/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */

.khvac-hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.khvac-hero-section .wp-block-cover__background {
    background: linear-gradient(135deg, var(--khvac-primary) 0%, var(--khvac-primary-dark) 100%) !important;
}

.khvac-hero-headline {
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--khvac-spacing-md) !important;
}

.khvac-hero-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.375rem) !important;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: var(--khvac-spacing-lg) !important;
}

.khvac-hero-buttons {
    margin-top: var(--khvac-spacing-lg);
    gap: var(--khvac-spacing-md) !important;
}

.khvac-hero-buttons .wp-block-button__link {
    padding: 16px 32px !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    border-radius: var(--khvac-radius-md) !important;
    min-height: 52px;
    min-width: 180px;
    transition: all 0.3s ease !important;
}

.khvac-btn-primary .wp-block-button__link {
    background: var(--khvac-secondary) !important;
    color: var(--khvac-white) !important;
    border: none !important;
}

.khvac-btn-primary .wp-block-button__link:hover {
    background: var(--khvac-secondary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--khvac-shadow-lg);
}

.khvac-btn-secondary .wp-block-button__link {
    background: transparent !important;
    color: var(--khvac-white) !important;
    border: 2px solid var(--khvac-white) !important;
}

.khvac-btn-secondary .wp-block-button__link:hover {
    background: var(--khvac-white) !important;
    color: var(--khvac-primary) !important;
}

/* Mobile hero adjustments */
@media (max-width: 767px) {
    .khvac-hero-section {
        min-height: 450px;
    }

    .khvac-hero-buttons {
        flex-direction: column !important;
        width: 100%;
    }

    .khvac-hero-buttons .wp-block-button {
        width: 100%;
    }

    .khvac-hero-buttons .wp-block-button__link {
        width: 100% !important;
        display: block !important;
        text-align: center;
    }
}


/* ==========================================================================
   5. TRUST BADGES SECTION
   ========================================================================== */

.khvac-trust-badges {
    padding: var(--khvac-spacing-xl) var(--khvac-spacing-md);
    background: var(--khvac-background);
}

.khvac-trust-badges h3 {
    margin-bottom: var(--khvac-spacing-lg);
}

.khvac-trust-badges__grid {
    gap: var(--khvac-spacing-md) !important;
}

.khvac-trust-badge {
    background: var(--khvac-white);
    padding: var(--khvac-spacing-lg);
    border-radius: var(--khvac-radius-lg);
    box-shadow: var(--khvac-shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.khvac-trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--khvac-shadow-md);
}

.khvac-trust-badge__icon {
    font-size: 2.5rem !important;
    margin-bottom: var(--khvac-spacing-sm) !important;
    line-height: 1 !important;
}

.khvac-trust-badge__title {
    font-family: var(--khvac-font-heading);
    font-size: 1rem !important;
    color: var(--khvac-text) !important;
    margin-bottom: var(--khvac-spacing-xs) !important;
}

.khvac-trust-badge__desc {
    font-size: 0.875rem !important;
    color: var(--khvac-text-light) !important;
    margin-bottom: 0 !important;
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
    .khvac-trust-badges__grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .khvac-trust-badges__grid .wp-block-column {
        flex-basis: auto !important;
        width: 100% !important;
    }

    .khvac-trust-badge {
        padding: var(--khvac-spacing-md);
    }

    .khvac-trust-badge__icon {
        font-size: 2rem !important;
    }
}

/* Very small screens: single column */
@media (max-width: 480px) {
    .khvac-trust-badges__grid {
        grid-template-columns: 1fr !important;
    }
}


/* ==========================================================================
   6. TESTIMONIALS SECTION
   ========================================================================== */

.khvac-testimonials {
    padding: var(--khvac-spacing-xl) var(--khvac-spacing-md);
    background: var(--khvac-white);
}

.khvac-testimonials h2 {
    margin-bottom: var(--khvac-spacing-lg);
    color: var(--khvac-primary);
}

.khvac-testimonials__grid {
    gap: var(--khvac-spacing-lg) !important;
}

.khvac-testimonial-card {
    background: var(--khvac-background);
    padding: var(--khvac-spacing-lg);
    border-radius: var(--khvac-radius-lg);
    border-left: 4px solid var(--khvac-primary);
    transition: all 0.3s ease;
}

.khvac-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--khvac-shadow-md);
}

.khvac-testimonial-stars {
    color: #FFC107 !important;
    font-size: 1.25rem !important;
    margin-bottom: var(--khvac-spacing-sm) !important;
    letter-spacing: 2px;
}

.khvac-testimonial-text {
    font-style: italic;
    color: var(--khvac-text);
    line-height: 1.7 !important;
    margin-bottom: var(--khvac-spacing-md) !important;
    position: relative;
}

.khvac-testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--khvac-primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.khvac-testimonial-author {
    font-family: var(--khvac-font-heading);
    font-size: 0.875rem !important;
    color: var(--khvac-text-light) !important;
    margin-bottom: 0 !important;
}

.khvac-testimonial-author strong {
    color: var(--khvac-text);
}

/* Mobile testimonials */
@media (max-width: 767px) {
    .khvac-testimonials__grid {
        flex-direction: column !important;
    }

    .khvac-testimonial-card {
        padding: var(--khvac-spacing-md);
    }
}


/* ==========================================================================
   7. CONTACT FORM SECTION
   ========================================================================== */

.khvac-contact-section {
    padding: var(--khvac-spacing-xl) var(--khvac-spacing-md);
    background: linear-gradient(135deg, var(--khvac-primary) 0%, var(--khvac-primary-dark) 100%);
    color: var(--khvac-white);
}

.khvac-contact-section h2 {
    color: var(--khvac-white) !important;
}

.khvac-contact-section p {
    color: rgba(255, 255, 255, 0.9);
}

.khvac-contact-form {
    max-width: 600px;
    margin: var(--khvac-spacing-lg) auto 0;
    background: var(--khvac-white);
    padding: var(--khvac-spacing-lg);
    border-radius: var(--khvac-radius-lg);
    box-shadow: var(--khvac-shadow-lg);
}

.khvac-form-row {
    margin-bottom: var(--khvac-spacing-md);
}

.khvac-form-row label {
    display: block;
    font-family: var(--khvac-font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--khvac-text);
    margin-bottom: var(--khvac-spacing-xs);
}

.khvac-form-row input,
.khvac-form-row select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--khvac-font-body);
    font-size: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: var(--khvac-radius-md);
    background: var(--khvac-white);
    color: var(--khvac-text);
    transition: all 0.2s ease;
    min-height: 48px;
    -webkit-appearance: none;
    appearance: none;
}

.khvac-form-row input:focus,
.khvac-form-row select:focus {
    outline: none;
    border-color: var(--khvac-primary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.khvac-form-row input::placeholder {
    color: var(--khvac-text-light);
}

.khvac-form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23757575'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.khvac-form-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--khvac-secondary) 0%, var(--khvac-secondary-dark) 100%);
    color: var(--khvac-white);
    font-family: var(--khvac-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: var(--khvac-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 52px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.khvac-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.khvac-form-submit:active {
    transform: translateY(0);
}

/* Mobile form adjustments */
@media (max-width: 767px) {
    .khvac-contact-form {
        padding: var(--khvac-spacing-md);
        margin: var(--khvac-spacing-md) auto 0;
    }

    .khvac-form-row input,
    .khvac-form-row select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Zoho Form Container */
.khvac-zoho-form-container {
    max-width: 700px;
    margin: var(--khvac-spacing-lg) auto 0;
    background: var(--khvac-white);
    padding: var(--khvac-spacing-md);
    border-radius: var(--khvac-radius-lg);
    box-shadow: var(--khvac-shadow-lg);
}

.khvac-zoho-form-container iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
}

/* Mobile adjustments for Zoho form */
@media (max-width: 767px) {
    .khvac-zoho-form-container {
        padding: var(--khvac-spacing-sm);
        margin: var(--khvac-spacing-md) auto 0;
        border-radius: var(--khvac-radius-md);
    }
}


/* ==========================================================================
   8. SERVICE CARDS (UAG Info Box Enhancement)
   ========================================================================== */

.khvac-service-card {
    background: var(--khvac-white);
    border-radius: var(--khvac-radius-lg);
    overflow: hidden;
    box-shadow: var(--khvac-shadow-sm);
    transition: all 0.3s ease;
}

.khvac-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--khvac-shadow-lg);
}

.khvac-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.khvac-service-card__content {
    padding: var(--khvac-spacing-lg);
}

.khvac-service-card__title {
    font-family: var(--khvac-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--khvac-text);
    margin-bottom: var(--khvac-spacing-sm);
}

.khvac-service-card__desc {
    color: var(--khvac-text-light);
    margin-bottom: var(--khvac-spacing-md);
}

.khvac-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--khvac-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.khvac-service-card__link:hover {
    color: var(--khvac-primary-dark);
    gap: 12px;
}


/* ==========================================================================
   9. BUTTONS (Global Enhancements)
   ========================================================================== */

body.kyle-hvac-ux-active .wp-block-button__link,
body.kyle-hvac-ux-active .ast-button,
body.kyle-hvac-ux-active button[type="submit"] {
    font-family: var(--khvac-font-heading);
    font-weight: 600;
    border-radius: var(--khvac-radius-md);
    padding: 12px 24px;
    min-height: 44px;
    transition: all 0.3s ease;
}

/* Primary button style */
body.kyle-hvac-ux-active .wp-block-button:not(.is-style-outline) .wp-block-button__link {
    background: var(--khvac-secondary);
    color: var(--khvac-white);
}

body.kyle-hvac-ux-active .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    background: var(--khvac-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--khvac-shadow-md);
}

/* Outline button style */
body.kyle-hvac-ux-active .wp-block-button.is-style-outline .wp-block-button__link {
    border: 2px solid var(--khvac-primary);
    color: var(--khvac-primary);
}

body.kyle-hvac-ux-active .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--khvac-primary);
    color: var(--khvac-white);
}


/* ==========================================================================
   10. HEADER ENHANCEMENTS
   ========================================================================== */

/* Make header phone number more prominent */
body.kyle-hvac-ux-active .ast-header-button-1 a,
body.kyle-hvac-ux-active .ast-header-button-2 a,
body.kyle-hvac-ux-active .menu-link[href^="tel:"] {
    background: var(--khvac-secondary) !important;
    color: var(--khvac-white) !important;
    padding: 10px 20px !important;
    border-radius: var(--khvac-radius-md) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

body.kyle-hvac-ux-active .ast-header-button-1 a:hover,
body.kyle-hvac-ux-active .ast-header-button-2 a:hover,
body.kyle-hvac-ux-active .menu-link[href^="tel:"]:hover {
    background: var(--khvac-secondary-dark) !important;
    transform: scale(1.02);
}

/* Ensure adequate tap targets on mobile navigation */
@media (max-width: 976px) {
    body.kyle-hvac-ux-active .ast-mobile-popup-drawer .menu-link {
        padding: 14px 20px !important;
        min-height: 48px;
    }
}


/* ==========================================================================
   11. SERVICE AREA MAP SECTION
   ========================================================================== */

.khvac-map-section {
    padding: var(--khvac-spacing-xl) var(--khvac-spacing-md);
    background: var(--khvac-background);
}

.khvac-map-section h2 {
    text-align: center;
    margin-bottom: var(--khvac-spacing-lg);
}

.khvac-map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--khvac-radius-md);
    overflow: hidden;
    box-shadow: var(--khvac-shadow-md);
}

.khvac-map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.khvac-service-areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--khvac-spacing-md);
    margin-top: var(--khvac-spacing-lg);
    padding: 0;
    list-style: none;
}

.khvac-service-areas-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: var(--khvac-spacing-sm);
    background: var(--khvac-white);
    border-radius: var(--khvac-radius-sm);
}

.khvac-service-areas-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--khvac-success);
    border-radius: 50%;
    flex-shrink: 0;
}


/* ==========================================================================
   12. FOOTER ENHANCEMENTS
   ========================================================================== */

body.kyle-hvac-ux-active .site-footer {
    background: var(--khvac-text) !important;
}

body.kyle-hvac-ux-active .site-footer,
body.kyle-hvac-ux-active .site-footer p,
body.kyle-hvac-ux-active .site-footer a {
    color: rgba(255, 255, 255, 0.9);
}

body.kyle-hvac-ux-active .site-footer a:hover {
    color: var(--khvac-secondary);
}


/* ==========================================================================
   13. ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* Focus states */
body.kyle-hvac-ux-active a:focus,
body.kyle-hvac-ux-active button:focus,
body.kyle-hvac-ux-active input:focus,
body.kyle-hvac-ux-active select:focus,
body.kyle-hvac-ux-active textarea:focus {
    outline: 2px solid var(--khvac-primary);
    outline-offset: 2px;
}

/* Skip link */
body.kyle-hvac-ux-active .skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100000;
    background: var(--khvac-primary);
    color: var(--khvac-white);
    padding: 15px 25px;
    border-radius: var(--khvac-radius-md);
    text-decoration: none;
    font-weight: 600;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .khvac-mobile-sticky-cta {
        animation: none;
    }

    .khvac-emergency-banner__pulse {
        animation: none;
    }
}


/* ==========================================================================
   14. PRINT STYLES
   ========================================================================== */

@media print {
    .khvac-emergency-banner,
    .khvac-mobile-sticky-cta {
        display: none !important;
    }

    body.kyle-hvac-ux-active {
        font-size: 12pt;
        color: #000;
    }
}


/* ==========================================================================
   15. UTILITY CLASSES
   ========================================================================== */

.khvac-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.khvac-text-center { text-align: center; }
.khvac-text-left { text-align: left; }
.khvac-text-right { text-align: right; }

.khvac-mt-sm { margin-top: var(--khvac-spacing-sm); }
.khvac-mt-md { margin-top: var(--khvac-spacing-md); }
.khvac-mt-lg { margin-top: var(--khvac-spacing-lg); }
.khvac-mt-xl { margin-top: var(--khvac-spacing-xl); }

.khvac-mb-sm { margin-bottom: var(--khvac-spacing-sm); }
.khvac-mb-md { margin-bottom: var(--khvac-spacing-md); }
.khvac-mb-lg { margin-bottom: var(--khvac-spacing-lg); }
.khvac-mb-xl { margin-bottom: var(--khvac-spacing-xl); }

.khvac-p-sm { padding: var(--khvac-spacing-sm); }
.khvac-p-md { padding: var(--khvac-spacing-md); }
.khvac-p-lg { padding: var(--khvac-spacing-lg); }
.khvac-p-xl { padding: var(--khvac-spacing-xl); }


/* ==========================================================================
   16. HIDE PAGE TITLES
   ========================================================================== */

body.kyle-hvac-ux-active .entry-title,
body.kyle-hvac-ux-active .ast-archive-title,
body.kyle-hvac-ux-active .page-title,
body.kyle-hvac-ux-active h1.entry-title,
body.kyle-hvac-ux-active .ast-the-title {
    display: none !important;
}
