/* ==========================================================================
   Quick Heating Services - Custom Styles
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */
:root {
    /* Primary Colors */
    --qhs-orange: #FF6B35;
    --qhs-orange-hover: #E55A25;
    --qhs-orange-light: #FFF0E8;
    --qhs-orange-text: #C75000;

    /* Secondary Colors */
    --qhs-navy: #1B2A4A;
    --qhs-navy-light: #2A3F6B;
    --qhs-navy-dark: #111D33;

    /* Neutrals */
    --qhs-white: #FFFFFF;
    --qhs-light-bg: #F8F9FA;
    --qhs-light-bg-alt: #F0F2F5;
    --qhs-grey: #6C757D;
    --qhs-grey-light: #DEE2E6;
    --qhs-text: #333333;
    --qhs-text-light: #555555;

    /* Status */
    --qhs-success: #28A745;
    --qhs-emergency: #DC3545;

    /* Typography */
    --qhs-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --qhs-font-heading: 'Poppins', var(--qhs-font-primary);

    /* Spacing */
    --qhs-space-xs: 0.25rem;
    --qhs-space-sm: 0.5rem;
    --qhs-space-md: 1rem;
    --qhs-space-lg: 2rem;
    --qhs-space-xl: 3rem;
    --qhs-space-2xl: 5rem;
    --qhs-space-section: 6rem;

    /* Border Radius */
    --qhs-radius-sm: 4px;
    --qhs-radius-md: 8px;
    --qhs-radius-lg: 16px;
    --qhs-radius-xl: 24px;

    /* Shadows */
    --qhs-shadow-sm: 0 2px 4px rgba(27, 42, 74, 0.08);
    --qhs-shadow-md: 0 4px 12px rgba(27, 42, 74, 0.12);
    --qhs-shadow-lg: 0 8px 30px rgba(27, 42, 74, 0.16);
    --qhs-shadow-card: 0 10px 40px rgba(27, 42, 74, 0.1);
    --qhs-shadow-hover: 0 16px 48px rgba(255, 107, 53, 0.2);

    /* Transitions */
    --qhs-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --qhs-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --qhs-container-max: 1200px;
    --qhs-header-height: 80px;
}

/* ==========================================================================
   2. Base & Reset Overrides
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--qhs-font-primary);
    color: var(--qhs-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--qhs-navy);
    text-decoration: none;
    transition: color var(--qhs-transition);
}

a:hover {
    color: var(--qhs-orange);
}

/* Skip to content - accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: var(--qhs-orange);
    color: var(--qhs-white);
    font-weight: 600;
    border-radius: 0 0 var(--qhs-radius-md) 0;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    color: var(--qhs-white);
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--qhs-orange);
    outline-offset: 2px;
}

/* Screen reader only */
.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;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--qhs-font-heading);
    font-weight: 700;
    color: var(--qhs-navy);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.qhs-section-title {
    text-align: center;
    margin-bottom: var(--qhs-space-xl);
}

.qhs-section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.qhs-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--qhs-orange);
    border-radius: 2px;
}

.qhs-section-title p {
    color: var(--qhs-grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: var(--qhs-space-md) auto 0;
}

/* Text utilities */
.text-orange { color: var(--qhs-orange-text); }
.text-navy { color: var(--qhs-navy); }
.text-white { color: var(--qhs-white); }
.text-grey { color: var(--qhs-grey); }

/* ==========================================================================
   4. Button Components
   ========================================================================== */
.qhs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--qhs-font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--qhs-radius-md);
    cursor: pointer;
    transition: all var(--qhs-transition);
    text-decoration: none;
    min-height: 44px;
    min-width: 44px;
    line-height: 1.2;
}

.qhs-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.qhs-btn-primary {
    background: var(--qhs-orange);
    color: var(--qhs-white);
    border-color: var(--qhs-orange);
}

.qhs-btn-primary:hover {
    background: var(--qhs-orange-hover);
    border-color: var(--qhs-orange-hover);
    color: var(--qhs-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.qhs-btn-secondary {
    background: var(--qhs-navy);
    color: var(--qhs-white);
    border-color: var(--qhs-navy);
}

.qhs-btn-secondary:hover {
    background: var(--qhs-navy-light);
    border-color: var(--qhs-navy-light);
    color: var(--qhs-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 42, 74, 0.4);
}

.qhs-btn-outline {
    background: transparent;
    color: var(--qhs-orange);
    border-color: var(--qhs-orange);
}

.qhs-btn-outline:hover {
    background: var(--qhs-orange);
    color: var(--qhs-white);
    transform: translateY(-2px);
}

.qhs-btn-white {
    background: var(--qhs-white);
    color: var(--qhs-navy);
    border-color: var(--qhs-white);
}

.qhs-btn-white:hover {
    background: var(--qhs-light-bg);
    color: var(--qhs-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.qhs-btn-emergency {
    background: linear-gradient(135deg, var(--qhs-orange), var(--qhs-emergency));
    color: var(--qhs-white);
    border: none;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    animation: pulse-glow 2s infinite;
}

.qhs-btn-emergency:hover {
    color: var(--qhs-white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.5);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
}

/* ==========================================================================
   5. Card Components
   ========================================================================== */
.qhs-card {
    background: var(--qhs-white);
    border-radius: var(--qhs-radius-lg);
    padding: var(--qhs-space-lg);
    box-shadow: var(--qhs-shadow-card);
    transition: all var(--qhs-transition);
    position: relative;
    overflow: hidden;
}

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

/* Service Card */
.qhs-card--service {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--qhs-grey-light);
    box-shadow: var(--qhs-shadow-sm);
}

.qhs-card--service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--qhs-orange);
    transform: scaleX(0);
    transition: transform var(--qhs-transition);
}

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

.qhs-card--service .qhs-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--qhs-space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--qhs-orange-light);
    border-radius: 50%;
    transition: all var(--qhs-transition);
}

.qhs-card--service:hover .qhs-card__icon {
    background: var(--qhs-orange);
    transform: scale(1.1);
}

.qhs-card--service .qhs-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--qhs-orange);
    transition: color var(--qhs-transition);
}

.qhs-card--service:hover .qhs-card__icon svg {
    color: var(--qhs-white);
}

.qhs-card--service h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.qhs-card--service p {
    color: var(--qhs-grey);
    font-size: 0.95rem;
    margin-bottom: var(--qhs-space-md);
}

.qhs-card--service .qhs-card__link {
    color: var(--qhs-orange-text);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.qhs-card--service .qhs-card__link::after {
    content: '\2192';
    transition: transform var(--qhs-transition);
}

.qhs-card--service:hover .qhs-card__link::after {
    transform: translateX(4px);
}

/* Pricing Card */
.qhs-card--pricing {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 2px solid var(--qhs-grey-light);
}

.qhs-card--pricing .qhs-card__badge {
    display: none;
}

.qhs-card--pricing--featured {
    border-color: var(--qhs-orange);
    transform: scale(1.05);
    z-index: 2;
}

.qhs-card--pricing--featured .qhs-card__badge {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--qhs-orange);
    color: var(--qhs-white);
    padding: 0.35rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.qhs-card--pricing--featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.qhs-card--pricing .qhs-price {
    font-family: var(--qhs-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--qhs-navy);
    margin: var(--qhs-space-md) 0;
}

.qhs-card--pricing .qhs-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--qhs-grey);
}

.qhs-card--pricing .qhs-features-list {
    list-style: none;
    padding: 0;
    margin: var(--qhs-space-lg) 0;
    text-align: left;
}

.qhs-card--pricing .qhs-features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--qhs-light-bg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.qhs-card--pricing .qhs-features-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: var(--qhs-success);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Testimonial Card */
.qhs-card--testimonial {
    padding: 2rem;
}

.qhs-card--testimonial .qhs-stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: var(--qhs-space-md);
}

.qhs-card--testimonial blockquote {
    font-style: italic;
    color: var(--qhs-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 var(--qhs-space-md);
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--qhs-orange);
}

.qhs-card--testimonial .qhs-reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qhs-card--testimonial .qhs-reviewer__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--qhs-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--qhs-navy);
    font-size: 1.1rem;
}

.qhs-card--testimonial .qhs-reviewer__name {
    font-weight: 600;
    color: var(--qhs-navy);
}

.qhs-card--testimonial .qhs-reviewer__platform {
    font-size: 0.85rem;
    color: var(--qhs-grey);
}

/* ==========================================================================
   6. Section Dividers (SVG Waves)
   ========================================================================== */
.qhs-wave-divider {
    position: relative;
}

.qhs-wave-divider::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23F8F9FA' d='M0,40 C360,100 720,0 1080,60 C1260,90 1380,50 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: 100% 100%;
    z-index: 2;
    pointer-events: none;
}

.qhs-wave-divider--white::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFFFF' d='M0,40 C360,100 720,0 1080,60 C1260,90 1380,50 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E");
}

.qhs-wave-divider--navy::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%231B2A4A' d='M0,40 C360,100 720,0 1080,60 C1260,90 1380,50 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E");
}

.qhs-diagonal-divider {
    position: relative;
}

.qhs-diagonal-divider::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--qhs-white);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 2;
}

/* ==========================================================================
   7. Header
   ========================================================================== */
.qhs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all var(--qhs-transition);
}

.qhs-header.is-sticky {
    background: var(--qhs-navy);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.qhs-header__top-bar {
    background: var(--qhs-navy-dark);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.qhs-header__top-bar-inner {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
}

.qhs-header__top-bar a {
    color: rgba(255, 255, 255, 0.85);
}

.qhs-header__top-bar a:hover {
    color: var(--qhs-orange);
}

.qhs-header__main {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--qhs-header-height);
}

.qhs-header__logo img {
    height: 50px;
    width: auto;
}

.qhs-header__nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.qhs-header__nav a {
    color: var(--qhs-white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.qhs-header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--qhs-orange);
    transition: width var(--qhs-transition);
}

.qhs-header__nav a:hover::after,
.qhs-header__nav a.active::after {
    width: 100%;
}

.qhs-header__nav a:hover {
    color: var(--qhs-orange);
}

.qhs-header__cta .qhs-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Mobile menu toggle */
.qhs-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.qhs-header__toggle span {
    width: 24px;
    height: 2px;
    background: var(--qhs-white);
    transition: all var(--qhs-transition);
    display: block;
}

.qhs-header__toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.qhs-header__toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.qhs-header__toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ==========================================================================
   8. Hero Section
   ========================================================================== */
.qhs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--qhs-navy);
    overflow: hidden;
    padding: calc(var(--qhs-header-height) + var(--qhs-space-2xl)) 0 var(--qhs-space-2xl);
}

.qhs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.95) 0%, rgba(27, 42, 74, 0.65) 100%);
    z-index: 1;
}

.qhs-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.qhs-hero__content {
    position: relative;
    z-index: 3;
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--qhs-space-2xl);
    align-items: center;
}

.qhs-hero__text h1 {
    color: var(--qhs-white);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: var(--qhs-space-md);
    line-height: 1.1;
}

.qhs-hero__text h1 span {
    color: var(--qhs-orange);
}

.qhs-hero__text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: var(--qhs-space-lg);
    max-width: 500px;
}

.qhs-hero__buttons {
    display: flex;
    gap: var(--qhs-space-md);
    flex-wrap: wrap;
}

.qhs-hero__badges {
    display: flex;
    gap: var(--qhs-space-lg);
    margin-top: var(--qhs-space-xl);
}

.qhs-hero__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.qhs-hero__badge svg {
    width: 24px;
    height: 24px;
    color: var(--qhs-orange);
}

.qhs-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qhs-hero__floating-card {
    background: var(--qhs-white);
    border-radius: var(--qhs-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--qhs-shadow-lg);
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.qhs-hero__floating-card--top {
    top: 10%;
    right: -10%;
    animation-delay: 0.5s;
}

.qhs-hero__floating-card--bottom {
    bottom: 10%;
    left: -5%;
    animation-delay: 1s;
}

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

/* ==========================================================================
   9. Trust Bar
   ========================================================================== */
.qhs-trust-bar {
    background: var(--qhs-light-bg);
    padding: var(--qhs-space-xl) 0;
    position: relative;
    z-index: 5;
}

.qhs-trust-bar__inner {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--qhs-space-lg);
}

.qhs-trust-item {
    text-align: center;
    padding: var(--qhs-space-md);
}

.qhs-trust-item__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--qhs-space-sm);
}

.qhs-trust-item__icon svg {
    width: 100%;
    height: 100%;
    color: var(--qhs-orange);
}

.qhs-counter {
    font-family: var(--qhs-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--qhs-navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.qhs-trust-item__label {
    color: var(--qhs-grey);
    font-size: 0.95rem;
}

/* ==========================================================================
   10. Services Grid
   ========================================================================== */
.qhs-services {
    padding: var(--qhs-space-section) 0;
    background: var(--qhs-white);
}

.qhs-services__grid {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--qhs-space-lg);
}

/* ==========================================================================
   11. Why Choose Us
   ========================================================================== */
.qhs-why-us {
    padding: var(--qhs-space-section) 0;
    background: var(--qhs-light-bg);
}

.qhs-why-us__inner {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--qhs-space-2xl);
    align-items: center;
}

.qhs-feature-card {
    display: flex;
    gap: var(--qhs-space-md);
    padding: var(--qhs-space-md);
    border-radius: var(--qhs-radius-md);
    transition: all var(--qhs-transition);
    background: var(--qhs-white);
    margin-bottom: var(--qhs-space-md);
    box-shadow: var(--qhs-shadow-sm);
}

.qhs-feature-card:hover {
    box-shadow: var(--qhs-shadow-md);
    transform: translateX(8px);
}

.qhs-feature-card__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--qhs-orange-light);
    border-radius: var(--qhs-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qhs-feature-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--qhs-orange);
}

.qhs-feature-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.qhs-feature-card p {
    color: var(--qhs-grey);
    font-size: 0.9rem;
    margin: 0;
}

.qhs-why-us__visual {
    position: relative;
}

.qhs-why-us__image {
    border-radius: var(--qhs-radius-lg);
    overflow: hidden;
    box-shadow: var(--qhs-shadow-lg);
}

.qhs-why-us__image img {
    width: 100%;
    height: auto;
    display: block;
}

.qhs-stats-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--qhs-navy);
    color: var(--qhs-white);
    border-radius: var(--qhs-radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--qhs-shadow-lg);
    text-align: center;
}

.qhs-stats-float__number {
    font-family: var(--qhs-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--qhs-orange);
}

.qhs-stats-float__label {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ==========================================================================
   12. Pricing Section
   ========================================================================== */
.qhs-pricing {
    padding: var(--qhs-space-section) 0;
    background: var(--qhs-white);
}

.qhs-pricing__grid {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--qhs-space-lg);
    align-items: start;
}

/* ==========================================================================
   13. Process Timeline
   ========================================================================== */
.qhs-process {
    padding: var(--qhs-space-section) 0;
    background: var(--qhs-light-bg);
}

.qhs-process__timeline {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.qhs-process__timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--qhs-grey-light);
    z-index: 1;
}

.qhs-process__step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 1rem;
}

.qhs-process__step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--qhs-space-md);
    background: var(--qhs-white);
    border: 3px solid var(--qhs-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--qhs-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--qhs-orange);
    transition: all var(--qhs-transition);
}

.qhs-process__step:hover .qhs-process__step-number {
    background: var(--qhs-orange);
    color: var(--qhs-white);
    transform: scale(1.1);
}

.qhs-process__step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.qhs-process__step p {
    color: var(--qhs-grey);
    font-size: 0.9rem;
}

/* ==========================================================================
   14. Testimonials
   ========================================================================== */
.qhs-testimonials {
    padding: var(--qhs-space-section) 0;
    background: var(--qhs-white);
}

.qhs-testimonials__grid {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--qhs-space-lg);
}

/* ==========================================================================
   15. Emergency Banner
   ========================================================================== */
.qhs-emergency {
    background: linear-gradient(135deg, var(--qhs-orange) 0%, var(--qhs-emergency) 100%);
    padding: var(--qhs-space-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qhs-emergency::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.qhs-emergency__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.qhs-emergency h2 {
    color: var(--qhs-white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.qhs-emergency p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: var(--qhs-space-lg);
}

.qhs-emergency .qhs-phone-display {
    font-family: var(--qhs-font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--qhs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--qhs-space-lg);
}

.qhs-emergency .qhs-phone-display svg {
    width: 32px;
    height: 32px;
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
}

/* ==========================================================================
   16. Finance Section
   ========================================================================== */
.qhs-finance {
    padding: var(--qhs-space-section) 0;
    background: var(--qhs-light-bg);
}

.qhs-finance__inner {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--qhs-space-2xl);
    align-items: center;
}

.qhs-finance__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qhs-finance__badge {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--qhs-orange), var(--qhs-orange-hover));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--qhs-white);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.qhs-finance__badge .qhs-finance__percent {
    font-family: var(--qhs-font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.qhs-finance__badge .qhs-finance__label {
    font-size: 1.1rem;
    font-weight: 600;
}

.qhs-finance__content h2 {
    margin-bottom: var(--qhs-space-md);
}

.qhs-finance__content p {
    color: var(--qhs-text-light);
    margin-bottom: var(--qhs-space-lg);
}

.qhs-finance__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--qhs-space-lg);
}

.qhs-finance__list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.qhs-finance__list li::before {
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: var(--qhs-orange);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ==========================================================================
   17. Blog Section
   ========================================================================== */
.qhs-blog {
    padding: var(--qhs-space-section) 0;
    background: var(--qhs-white);
}

.qhs-blog__grid {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--qhs-space-lg);
}

.qhs-blog-card {
    border-radius: var(--qhs-radius-lg);
    overflow: hidden;
    background: var(--qhs-white);
    box-shadow: var(--qhs-shadow-sm);
    transition: all var(--qhs-transition);
}

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

.qhs-blog-card__image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.qhs-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--qhs-transition-slow);
}

.qhs-blog-card:hover .qhs-blog-card__image img {
    transform: scale(1.05);
}

.qhs-blog-card__date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--qhs-orange);
    color: var(--qhs-white);
    padding: 0.35rem 0.75rem;
    border-radius: var(--qhs-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.qhs-blog-card__content {
    padding: 1.5rem;
}

.qhs-blog-card__content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.qhs-blog-card__content h3 a {
    color: var(--qhs-navy);
}

.qhs-blog-card__content h3 a:hover {
    color: var(--qhs-orange);
}

.qhs-blog-card__content p {
    color: var(--qhs-grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

.qhs-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--qhs-orange-text);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.qhs-blog-card__link:hover {
    color: var(--qhs-orange);
}

/* ==========================================================================
   18. Footer
   ========================================================================== */
.qhs-footer {
    background: var(--qhs-navy-dark);
    padding: var(--qhs-space-2xl) 0 0;
}

.qhs-footer__grid {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--qhs-space-xl);
}

.qhs-footer h4 {
    color: var(--qhs-white);
    font-size: 1.1rem;
    margin-bottom: var(--qhs-space-md);
    position: relative;
    padding-bottom: 0.75rem;
}

.qhs-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--qhs-orange);
    border-radius: 2px;
}

.qhs-footer p,
.qhs-footer li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.qhs-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--qhs-transition);
}

.qhs-footer a:hover {
    color: var(--qhs-orange);
    padding-left: 4px;
}

.qhs-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qhs-footer__contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.qhs-footer__contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--qhs-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.qhs-footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--qhs-space-md);
}

.qhs-footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--qhs-transition);
    padding: 0;
}

.qhs-footer__social a:hover {
    background: var(--qhs-orange);
    padding-left: 0;
    transform: translateY(-3px);
}

.qhs-footer__social svg {
    width: 18px;
    height: 18px;
    color: var(--qhs-white);
}

.qhs-footer__certs {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--qhs-space-xl);
    padding: var(--qhs-space-lg) 0;
}

.qhs-footer__certs-inner {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--qhs-space-xl);
    flex-wrap: wrap;
}

.qhs-footer__certs img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--qhs-transition);
}

.qhs-footer__certs img:hover {
    opacity: 1;
}

.qhs-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--qhs-space-md) 0;
}

.qhs-footer__bottom-inner {
    max-width: var(--qhs-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   19. Scroll Animations
   ========================================================================== */
[data-animate] {
    opacity: 0;
    transition: opacity var(--qhs-transition-slow), transform var(--qhs-transition-slow);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-left"] {
    transform: translateX(-30px);
}

[data-animate="fade-right"] {
    transform: translateX(30px);
}

[data-animate="scale"] {
    transform: scale(0.9);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ==========================================================================
   20. Back to Top
   ========================================================================== */
.qhs-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--qhs-orange);
    color: var(--qhs-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--qhs-shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--qhs-transition);
    z-index: 999;
}

.qhs-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.qhs-back-to-top:hover {
    background: var(--qhs-orange-hover);
    transform: translateY(-3px);
}

.qhs-back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   21. Responsive
   ========================================================================== */

/* Tablet and below */
@media (max-width: 991px) {
    :root {
        --qhs-space-section: 4rem;
    }

    .qhs-header__toggle {
        display: flex;
    }

    .qhs-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--qhs-navy);
        padding: calc(var(--qhs-header-height) + 2rem) 2rem 2rem;
        transition: right var(--qhs-transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        overflow-y: auto;
    }

    .qhs-header__nav.is-open {
        right: 0;
    }

    .qhs-header__nav ul {
        flex-direction: column;
        gap: 0;
    }

    .qhs-header__nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .qhs-header__nav a {
        display: block;
        padding: 0.875rem 0;
    }

    .qhs-header__cta {
        display: none;
    }

    .qhs-hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .qhs-hero__text p {
        margin-left: auto;
        margin-right: auto;
    }

    .qhs-hero__buttons {
        justify-content: center;
    }

    .qhs-hero__badges {
        justify-content: center;
    }

    .qhs-hero__visual {
        display: none;
    }

    .qhs-trust-bar__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .qhs-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qhs-why-us__inner {
        grid-template-columns: 1fr;
    }

    .qhs-why-us__visual {
        order: -1;
    }

    .qhs-stats-float {
        right: 0;
        bottom: -20px;
    }

    .qhs-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .qhs-card--pricing--featured {
        transform: none;
    }

    .qhs-card--pricing--featured:hover {
        transform: translateY(-8px);
    }

    .qhs-process__timeline {
        flex-direction: column;
        align-items: center;
        gap: var(--qhs-space-lg);
    }

    .qhs-process__timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 3px;
        height: 100%;
        transform: translateX(-50%);
    }

    .qhs-testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .qhs-finance__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .qhs-finance__visual {
        order: -1;
    }

    .qhs-finance__list {
        display: inline-block;
        text-align: left;
    }

    .qhs-blog__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .qhs-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 575px) {
    :root {
        --qhs-space-section: 3rem;
        --qhs-header-height: 70px;
    }

    .qhs-hero {
        min-height: auto;
        padding: calc(var(--qhs-header-height) + 3rem) 0 4rem;
    }

    .qhs-hero__text h1 {
        font-size: 2rem;
    }

    .qhs-hero__badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .qhs-trust-bar__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--qhs-space-md);
    }

    .qhs-counter {
        font-size: 2rem;
    }

    .qhs-services__grid {
        grid-template-columns: 1fr;
    }

    .qhs-card--service {
        padding: 1.5rem 1rem;
    }

    .qhs-pricing__grid {
        max-width: 100%;
    }

    .qhs-footer__grid {
        grid-template-columns: 1fr;
    }

    .qhs-footer__bottom-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .qhs-header__top-bar {
        display: none;
    }

    .qhs-emergency .qhs-phone-display {
        font-size: 1.5rem;
    }

    .qhs-wave-divider::after {
        height: 40px;
    }
}

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

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   23. Elementor Overrides - Comprehensive
   ========================================================================== */

/* --- Global Elementor Resets --- */
.elementor-page {
    font-family: var(--qhs-font-primary);
    color: var(--qhs-text);
}

.elementor-page .elementor-heading-title {
    font-family: var(--qhs-font-heading);
}

/* --- Service Cards (icon-box widgets) in grid containers --- */
/* Target icon-box widgets that are direct children of flex-wrap containers */
.elementor-widget-icon-box.qhs-card--service,
.elementor-widget-icon-box[class*="qhs-card"] {
    flex: 1 1 calc(25% - 18px) !important;
    min-width: 240px;
    max-width: calc(25% - 18px);
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--qhs-white);
    border: 1px solid var(--qhs-grey-light);
    border-radius: var(--qhs-radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elementor-widget-icon-box.qhs-card--service:hover,
.elementor-widget-icon-box[class*="qhs-card"]:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Orange top bar on hover */
.elementor-widget-icon-box.qhs-card--service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--qhs-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.elementor-widget-icon-box.qhs-card--service:hover::before {
    transform: scaleX(1);
}

/* Icon styling in service cards */
.elementor-widget-icon-box.qhs-card--service .elementor-icon {
    width: 70px;
    height: 70px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--qhs-orange-light);
    border-radius: 50%;
    font-size: 28px;
    color: var(--qhs-orange);
    transition: all 0.3s ease;
}

.elementor-widget-icon-box.qhs-card--service:hover .elementor-icon {
    background: var(--qhs-orange);
    color: var(--qhs-white);
    transform: scale(1.1);
}

.elementor-widget-icon-box.qhs-card--service .elementor-icon i,
.elementor-widget-icon-box.qhs-card--service .elementor-icon svg {
    color: inherit;
    fill: currentColor;
    width: 28px;
    height: 28px;
}

.elementor-widget-icon-box.qhs-card--service .elementor-icon-box-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--qhs-navy);
    margin-bottom: 0.5rem;
}

.elementor-widget-icon-box.qhs-card--service .elementor-icon-box-description {
    color: var(--qhs-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Pricing Cards --- */
.qhs-card--pricing {
    background: var(--qhs-white);
    border: 2px solid var(--qhs-grey-light);
    border-radius: var(--qhs-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qhs-card--pricing:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.qhs-card--pricing.qhs-card--featured {
    border-color: var(--qhs-orange);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.qhs-card--pricing.qhs-card--featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* --- Trust Bar Counters --- */
.elementor-widget-counter .elementor-counter-number-wrapper {
    font-family: var(--qhs-font-heading);
    font-weight: 800;
    color: var(--qhs-navy);
}

.elementor-widget-counter .elementor-counter-title {
    color: var(--qhs-grey);
    font-size: 0.95rem;
}

/* --- Hero Section --- */
.qhs-hero .elementor-heading-title {
    color: var(--qhs-white);
}

.qhs-hero .elementor-text-editor {
    color: rgba(255, 255, 255, 0.85);
}

/* --- Emergency Banner --- */
.qhs-emergency .elementor-heading-title,
.qhs-emergency .elementor-text-editor {
    color: var(--qhs-white);
}

/* --- Wave Dividers --- */
.qhs-wave-divider {
    position: relative;
}

/* --- Section Titles --- */
.qhs-section-title .elementor-heading-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

/* --- Process/Timeline Steps --- */
.qhs-process .elementor-widget-icon-box .elementor-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--qhs-orange);
    color: var(--qhs-white);
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 24px;
    font-weight: 700;
}

/* --- Testimonial Cards --- */
.qhs-card--testimonial {
    background: var(--qhs-white);
    border-radius: var(--qhs-radius-lg);
    padding: 2rem;
    box-shadow: var(--qhs-shadow-md);
    border: 1px solid var(--qhs-grey-light);
}

/* --- Button Overrides --- */
.elementor-page .elementor-button {
    font-family: var(--qhs-font-heading);
    font-weight: 600;
    border-radius: var(--qhs-radius-md);
    transition: all 0.3s ease;
}

.elementor-page .qhs-btn-primary .elementor-button {
    background-color: var(--qhs-orange);
}

.elementor-page .qhs-btn-primary .elementor-button:hover {
    background-color: var(--qhs-orange-hover);
}

/* --- Footer --- */
.qhs-footer .elementor-heading-title {
    color: var(--qhs-white);
}

/* --- Responsive for Elementor service grid --- */
@media (max-width: 991px) {
    .elementor-widget-icon-box.qhs-card--service,
    .elementor-widget-icon-box[class*="qhs-card"] {
        flex: 1 1 calc(50% - 12px) !important;
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 575px) {
    .elementor-widget-icon-box.qhs-card--service,
    .elementor-widget-icon-box[class*="qhs-card"] {
        flex: 1 1 100% !important;
        max-width: 100%;
    }
}
