/* ==========================================================================
   Air Home template — only enqueued on views/air-home.php (inc/assets.php).
   Site-header/nav/footer/toast/contact-form-field rules below are unused:
   the real header.php/footer.php and Contact Form 7's own markup own those
   elements on this page. Left in place rather than trimmed to avoid drift
   from the source design file.
   ========================================================================== */
/* ==========================================================================
   Vita HVAC Services — Design tokens
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@500;600;700;800&display=swap');

:root {
    /* Brand colors */
    --color-primary: #0056c5;
    --color-primary-dark: #00449e;
    --color-primary-light: rgba(0, 86, 197, 0.12);
    --color-accent: #a61c24;
    --color-accent-dark: #8a161d;

    --color-navy: #081c30;
    --color-navy-soft: #0f2942;

    /* Neutrals */
    --color-ink: #101f2e;
    --color-muted: #526271;
    --color-border: #e3e9ef;
    --color-bg: #ffffff;
    --color-bg-alt: #f2f2f3;
    --glow-water: 0 0 0 1px rgba(0, 86, 197, 0.15), 0 12px 32px rgba(0, 86, 197, 0.28);

    /* Typography */
    --font-heading: 'Poppins', 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', 'Segoe UI', sans-serif;

    /* Layout */
    --container: 1360px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 8px rgba(8, 28, 48, 0.06);
    --shadow-md: 0 8px 24px rgba(8, 28, 48, 0.1);
    --shadow-lg: 0 20px 48px rgba(8, 28, 48, 0.16);
    --header-h: 76px;
    --transition: 200ms ease;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}
body,
h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
    margin: 0;
}
ul {
    padding: 0;
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
}
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

body {
    font-family: var(--font-body);
    color: var(--color-ink);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
    text-transform: uppercase;
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}
@media (max-width: 720px) {
    .container {
        padding-inline: 16px;
    }
}

section {
    padding: 88px 0;
}
@media (max-width: 768px) {
    section {
        padding: 56px 0;
    }
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

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

/* ==========================================================================
   Section heading helper
   ========================================================================== */
.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.section-head {
    max-width: 640px;
    margin-bottom: 48px;
}
.section-head.center {
    margin-inline: auto;
    text-align: center;
}
.section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    margin-bottom: 14px;
}
.section-head p {
    color: var(--color-muted);
    font-size: 17px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 26px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
    white-space: nowrap;
}
.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.btn-lg {
    min-height: 54px;
    padding: 14px 32px;
    font-size: 16px;
}
.btn-primary {
    background: var(--color-primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: var(--shadow-md);
}
.btn-accent {
    background: var(--color-accent);
    color: #fff;
}
.btn-accent:hover {
    background: var(--color-accent-dark);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}
.btn-outline-dark {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline-dark:hover {
    background: var(--color-primary);
    color: #fff;
}
.btn-block {
    width: 100%;
}
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* The mockup's own header/nav (.site-header, .header-inner, .logo,
   .main-nav, .nav-toggle, .header-actions/.header-phone) is intentionally
   not styled here: air-home.php never renders that markup — get_header()
   renders the real shared header instead, styled by
   assets/css/partials/header.css. Those class names used to sit here too
   and silently overrode the real header's .logo/.main-nav on this template
   (air-home.css loads after header.css), so they were removed rather than
   left as "harmless" dead weight. */

/* Floating actions */
.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.floating-call {
    display: flex;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: var(--color-accent);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(166, 28, 36, 0.45);
    animation: pulse-call 2.4s ease-in-out infinite;
    position: relative;
    flex-shrink: 0;
}
.floating-call svg {
    width: 26px;
    height: 26px;
    position: absolute;
    transition:
        opacity 200ms ease,
        transform 200ms ease;
}
.floating-call .icon-close {
    opacity: 0;
    transform: rotate(-45deg);
}
.floating-call[aria-expanded='true'] .icon-open {
    opacity: 0;
    transform: rotate(45deg);
}
.floating-call[aria-expanded='true'] .icon-close {
    opacity: 1;
    transform: rotate(0deg);
}
.floating-call[aria-expanded='true'] {
    animation: none;
}
@keyframes pulse-call {
    0%,
    100% {
        box-shadow: 0 10px 24px rgba(166, 28, 36, 0.45);
    }
    50% {
        box-shadow:
            0 10px 24px rgba(166, 28, 36, 0.7),
            0 0 0 8px rgba(166, 28, 36, 0.12);
    }
}
@media (prefers-reduced-motion: reduce) {
    .floating-call {
        animation: none;
    }
}

.floating-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 200ms ease,
        transform 200ms ease,
        visibility 200ms;
}
.floating-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.floating-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--color-navy);
    border-radius: 8px;
    padding: 6px 18px 6px 6px;
    box-shadow: var(--shadow-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color var(--transition);
		width: 100%;
}
.floating-menu-item:hover {
    background: var(--color-bg-alt);
}
.floating-menu-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(166, 28, 36, 0.12);
    color: var(--color-accent);
}
.floating-menu-icon svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 780px;
    padding-top: calc(var(--header-h) + 140px);
    padding-bottom: 160px;
    overflow: hidden;
    background: var(--color-navy);
    isolation: isolate;
}
.hero-inner {
    width: 100%;
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 20, 34, 0.9) 0%, rgba(8, 20, 34, 0.72) 22%, rgba(8, 20, 34, 0.35) 42%, rgba(8, 20, 34, 0.08) 52%, transparent 100%),
        linear-gradient(0deg, rgba(8, 20, 34, 0.38) 0%, transparent 45%);
}
.hero-inner {
    display: block;
}
.hero-content {
    max-width: 640px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 194, 14, 0.14);
    color: var(--color-yellow);
    border: 1px solid rgba(255, 194, 14, 0.35);
    padding: 8px 16px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 22px;
}
.hero-badge svg {
    width: 16px;
    height: 16px;
}
.hero-content h1 {
    color: #fff;
    font-size: clamp(40px, 4.6vw, 66px);
    margin-bottom: 18px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.hero-content h1 em {
    color: var(--color-accent);
    font-style: normal;
}
.hero-content h1 .hero-brand {
    color: var(--color-accent);
}
.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(18px, 3.2vw, 32px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-tagline .tag-heating {
    color: var(--color-accent);
}
.hero-tagline .tag-cooling {
    background: linear-gradient(90deg, #3b93db 0%, var(--color-primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.hero-tagline .tag-service {
    color: #fff;
}
.hero-tagline .tag-sep {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}
.hero-sub {
    color: #e4ecf5;
    font-size: 19px;
    max-width: 480px;
    margin-bottom: 32px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 720px) {
    .hero {
        min-height: 620px;
    }
    .hero-media img {
        object-position: 73%;
    }
    .hero-media::after {
        background:
            linear-gradient(180deg, rgba(8, 20, 34, 0.6) 0%, rgba(8, 20, 34, 0.35) 45%, rgba(8, 20, 34, 0.65) 100%),
            linear-gradient(90deg, rgba(8, 20, 34, 0.7) 0%, rgba(8, 20, 34, 0.45) 50%, rgba(8, 20, 34, 0.25) 100%);
    }
    .hero-sub {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta .btn {
        width: 100%;
    }
    .stat {
        padding: 16px !important;

    }
    .city-chip {
        flex: 1 1 calc(50% - 6px);
			}
		
}

@media (max-width: 560px) {
    .reviews-cta .btn {
        width: 100%;
    }

}

/* ==========================================================================
   Stats bar
   ========================================================================== */
.stats-bar {
    background: linear-gradient(90deg, var(--color-primary) 0%, #3b93db 50%, var(--color-primary) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.stats-track {
    display: flex;
    width: max-content;
    animation: stats-scroll 32s linear infinite;
}
.stats-bar:hover .stats-track {
    animation-play-state: paused;
}
.stats-row {
    display: flex;
    flex-wrap: nowrap;
}
.stat {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 14px;
    padding-block: 22px;
    padding-inline: 40px;
    color: #fff;
    white-space: nowrap;
    position: relative;
}
.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.18);
}
@keyframes stats-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .stats-track {
        animation: none;
    }
}
.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.stat svg {
    width: 32px;
    height: 32px;
    color: white;
    flex-shrink: 0;
    display: block;
}
.stat img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    filter: brightness(0) invert(1);
}
.stat strong {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.stat span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #c9ddf2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}


/* ==========================================================================
   Services
   ========================================================================== */
.services {
    background: var(--color-bg);
}
.emergency-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) 12%, #071c31 50%, #071c31 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 56px;
}
.emergency-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.emergency-icon svg {
    width: 32px;
    height: 32px;
}
.emergency-text {
    flex: 1;
}
.emergency-text h3 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 6px;
}
.emergency-text p {
    color: #c9d6e4;
    font-size: 14.5px;
}
.emergency-banner .btn {
    flex-shrink: 0;
}
@media (max-width: 760px) {
    .emergency-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }
    .emergency-banner .btn {
        width: 100%;
    }
}
.services-subhead {
    font-size: 22px;
    margin-bottom: 24px;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.services-grid .service-card {
    flex: 0 1 calc(25% - 18px);
}
@media (max-width: 1180px) {
    .services-grid .service-card {
        flex-basis: calc(33.333% - 16px);
    }
}
@media (max-width: 860px) {
    .services-grid .service-card {
        flex-basis: calc(50% - 12px);
    }
}
@media (max-width: 560px) {
    .services-grid .service-card {
        flex-basis: 100%;
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: #fff;
    overflow: hidden;
    transition:
        box-shadow var(--transition),
        transform var(--transition);
}
.service-card {
    cursor: pointer;
}
.service-card:hover {
    box-shadow: var(--glow-water);
    transform: translateY(-3px);
}
.service-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}
.service-card:hover .service-photo img {
    transform: scale(1.06);
}
.service-card-body {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 28px 28px;
    padding-right: 80px;
}
.service-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}
.service-sublist {
    list-style: none;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    padding-right: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.service-sublist li {
    position: relative;
    padding-left: 15px;
}
.service-sublist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent);
}
.service-arrow-btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    color: #fff;
    cursor: pointer;
    transition:
        background-color var(--transition),
        transform var(--transition);
}
.service-arrow-btn svg {
    width: 18px;
    height: 18px;
}
.service-card:hover .service-arrow-btn {
    background: var(--color-accent);
    transform: translateX(2px);
}

/* ==========================================================================
   Why us
   ========================================================================== */

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 860px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
.why-us-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.why-us-media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
@media (max-width: 860px) {
    .why-us-media img {
        height: 320px;
    }
}
.why-us-content .section-head,
.why-us-content .eyebrow,
.why-us-content h2 {
    margin-bottom: 0;
}
.why-us-content h2 {
    margin-top: 10px;
    margin-bottom: 16px;
}
.why-us-intro {
    color: var(--color-muted);
    font-size: 16px;
    margin-bottom: 28px;
}
.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}
.why-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}
.why-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 28, 48, 0.08);
    color: #081c30;
}
.why-feature-icon svg {
    width: 22px;
    height: 22px;
}
.why-feature-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}
.why-feature span:last-child {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-navy);
}
@media (max-width: 480px) {
    .why-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   About
   ========================================================================== */
	 .about{
		    background: var(--color-bg-alt);
	 }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
.about-text h2 {
    margin-bottom: 18px;
}
.about-text p {
    color: var(--color-muted);
    font-size: 17px;
    margin-bottom: 24px;
}
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 28, 48, 0.08);
    color: #081c30;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13.5px;
    font-family: var(--font-heading);
}
.about-badge svg {
    width: 16px;
    height: 16px;
}
.about-badge img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}
.about-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
		aspect-ratio:1;
}
@media (max-width: 860px) {
    .about-media img {
        height: 320px;
    }
}

/* ==========================================================================
   Service area
   ========================================================================== */

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 860px) {
    .area-grid {
        grid-template-columns: 1fr;
    }
}
.area-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}
.area-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}
.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.city-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
}
.city-chip svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

/* ==========================================================================
   Brands
   ========================================================================== */
.brands {
    background: var(--color-bg-alt);
}
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 56px;
}
.brands-grid img {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;

}
.brands-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
@media (max-width: 600px) {
    .brands-grid {
        gap: 28px 32px;
    }
    .brands-grid img {
        height: 32px;
    }
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews {
    background: var(--color-navy);
		overflow: hidden;
}
.reviews .section-head h2,
.reviews .section-head p {
    color: #fff;
}
.reviews .section-head p {
    color: #b9c7d6;
}
.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.reviews-rating .stars {
    display: flex;
    gap: 2px;
    color: var(--color-yellow);
}
.reviews-rating .stars svg {
    width: 20px;
    height: 20px;
}
.reviews-rating strong {
    color: #fff;
    font-family: var(--font-heading);
}
.reviews-rating span {
    color: #b9c7d6;
    font-size: 14px;
}

.reviews-swiper {
    padding-bottom: 8px;
}
.reviews-swiper .swiper-slide {
    height: auto;
}
.review-card {
    height: 100%;
    border-radius: var(--radius-md);
    padding: 26px;
    background: #fff;
    box-shadow: var(--shadow-md);
}
.review-stars {
    display: flex;
    gap: 2px;
    color: var(--color-yellow);
    margin-bottom: 14px;
}
.review-stars svg {
    width: 16px;
    height: 16px;
}
.review-card p.review-text {
    color: var(--color-ink);
    font-size: 15px;
    margin-bottom: 18px;
}
.review-person {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
}
.review-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14.5px;
}
.review-loc {
    color: var(--color-muted);
    font-size: 13px;
}
.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}
.reviews-nav button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition);
}
.reviews-nav button:hover {
    background: rgba(255, 255, 255, 0.12);
}
.reviews-nav svg {
    width: 18px;
    height: 18px;
}
.reviews-cta {
    text-align: center;
    margin-top: 32px;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
	 .gallery{
		overflow: hidden;
		    background: var(--color-bg-alt);
	 }
.gallery-swiper {
    padding-bottom: 8px;
}
.gallery-item {
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 28, 48, 0.55), transparent 45%);
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}
.gallery-nav button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition);
}
.gallery-nav button:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: transparent;
}
.gallery-nav svg {
    width: 18px;
    height: 18px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(6, 16, 26, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox.is-open {
    display: flex;
}
.lightbox img {
    max-width: min(900px, 92vw);
    max-height: 84vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.24);
}
.lightbox-close {
    top: 20px;
    right: 20px;
}
.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox svg {
    width: 22px;
    height: 22px;
}
@media (max-width: 640px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   Service modal
   ========================================================================== */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.service-modal.is-open {
    display: flex;
}
.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 16, 26, 0.6);
}
.service-modal-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 88vh;
    overflow-y: auto;
}
.service-modal-photo {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-modal-body {
    padding: 24px 36px 36px;
}
.service-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    color: var(--color-navy);
    cursor: pointer;
    transition: background-color var(--transition);
}
.service-modal-close:hover {
    background: var(--color-border);
}
.service-modal-close svg {
    width: 18px;
    height: 18px;
}
.service-modal-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    padding-right: 24px;
}
.service-modal-card p {
    color: var(--color-muted);
    font-size: 15px;
    margin-bottom: 26px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
    max-width: 780px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    transition:
        box-shadow var(--transition),
        border-color var(--transition);
}
.faq-item.is-open {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16.5px;
    color: var(--color-navy);
}
.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(166, 28, 36, 0.12);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition);
}
.faq-icon svg {
    width: 16px;
    height: 16px;
}
.faq-item.is-open .faq-icon {
    background: var(--color-accent);
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
}
.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--color-muted);
    font-size: 15px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
    background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-soft) 100%);
}
.contact .section-head h2,
.contact .section-head p {
    color: #fff;
}
.contact .section-head p {
    color: #c9d6e4;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        order: -1;
    }
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--header-h) + 32px);
}
@media (max-width: 900px) {
    .contact-info {
        position: static;
    }
}
.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: #fff;
}
.contact-info-item .ci-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 120px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.contact-info-item .ci-icon svg {
    width: 22px;
    height: 22px;
}
.contact-info-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
}
.contact-info-item a,
.contact-info-item span.value {
    color: #c9d6e4;
    font-size: 14.5px;
}
.contact-info-item a:hover {
    color: var(--color-accent);
}
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition);
}
.contact-social a:hover {
    background: var(--color-accent);
}
.contact-social svg {
    width: 20px;
    height: 20px;
}

.contact-form {
    border-radius: var(--radius-lg);
    padding: 36px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}
@media (max-width: 720px) {
    .contact-form {
        padding: 22px;
    }
}
.contact-form h3 {
    font-size: 22px;
    margin-bottom: 6px;
}
.contact-form > p {
    color: var(--color-muted);
    font-size: 14.5px;

}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 520px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
.field {
    margin-bottom: 18px;
}
.field label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13.5px;
    margin-bottom: 7px;
    color: var(--color-navy);
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--color-border);
    background: var(--color-bg-alt);
    transition:
        border-color var(--transition),
        background-color var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--color-primary);
    background: #fff;
    outline: none;
}
.field textarea {
    resize: vertical;
    min-height: 110px;
}
.field-error {
    color: var(--color-accent);
    font-size: 12.5px;
    margin-top: 6px;
    display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: var(--color-accent);
}
.field.has-error .field-error {
    display: block;
}
.contact-form input[type='submit'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition:
        background-color var(--transition),
        box-shadow var(--transition);
}
.contact-form input[type='submit']:hover {
    background: var(--color-accent-dark);
    box-shadow: var(--shadow-md);
}
.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-size: 13px;
    margin-top: 6px;
}
.form-note svg {
    width: 15px;
    height: 15px;
    color: var(--color-primary);
}

.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translate(-50%, 20px);
    background: var(--color-navy);
    color: #fff;
    padding: 16px 22px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity var(--transition),
        transform var(--transition);
    z-index: 200;
    font-weight: 600;
    font-size: 14.5px;
}
.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}
.toast svg {
    width: 20px;
    height: 20px;
    color: #4ade80;
    flex-shrink: 0;
}

/* Footer styles now live in assets/css/partials/footer.css (loaded on every
   page, since footer.php is shared — not just Air Home). */

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


.wpcf7-spinner{
	display:none !important;
}