html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74, 163, 255, 0.18);
    box-shadow: 0 10px 30px rgba(7, 30, 54, 0.08);
}

.brand-logo {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111827;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.desktop-nav,
.desktop-phone {
    display: none !important;
}

.mobile-menu-button {
    display: inline-flex !important;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex !important;
    }

    .desktop-phone {
        display: inline-flex !important;
    }

    .mobile-menu-button,
    .mobile-menu-panel {
        display: none !important;
    }
}

.nav-link {
    font-size: 16px;
    color: #263244;
    font-weight: 700;
    transition: color 180ms ease;
}

.nav-link:hover {
    color: var(--primary-dark);
}

.mobile-menu-panel {
    display: none;
    border-top: 1px solid rgba(74, 163, 255, 0.22);
    background: #FFFFFF;
}

.mobile-menu-panel.is-open {
    display: block;
}

.phone-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0 1.15rem;
    border: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #185EA6 0%, #4AA3FF 100%);
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 18px 38px rgba(24, 94, 166, 0.28);
    position: relative;
    overflow: visible;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.phone-button:hover,
.cta-button:hover {
    color: #FFFFFF !important;
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 24px 48px rgba(24, 94, 166, 0.36);
}

.cta-button::after,
.phone-button::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 255, 255, 0.56);
    animation: pulseGlow 1.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.18; transform: scale(0.98); }
    50% { opacity: 0.7; transform: scale(1.04); }
}

.hero-section {
    min-height: 760px;
    background-image: linear-gradient(120deg, rgba(4, 24, 44, 0.78), rgba(4, 24, 44, 0.46)), url('../images/hero-kitchen.jpg');
    background-position: center;
    background-size: cover;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section h1 {
    color: #FFFFFF;
    font-size: 39px;
    line-height: 1.05;
    letter-spacing: -0.055em;
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: clamp(58px, 7vw, 88px);
    }
}

.hero-copy {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.stars {
    color: var(--accent);
    letter-spacing: 0.18em;
    font-size: 24px;
    text-shadow: 0 2px 16px rgba(247, 183, 49, 0.35);
}

.trust-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.trust-icon-frame {
    height: 64px;
    width: auto;
    min-width: 78px;
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.trust-icon-frame img {
    width: auto;
    height: 48px;
    max-width: 100%;
    object-fit: contain;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 60px rgba(16, 75, 128, 0.14);
    backdrop-filter: blur(18px);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(74, 163, 255, 0.16);
    color: #185EA6;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-dark .bg-white {
    color: var(--text);
}

.section-dark .bg-white h3,
.section-dark .bg-white h4 {
    color: var(--heading);
}

.heading-rule {
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, #4AA3FF, #185EA6);
    margin-top: 16px;
}

.heading-rule.centered {
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

h3,
h4 {
    font-size: 22px;
    line-height: 1.18;
}

p,
li {
    font-size: 16px;
    line-height: 1.75;
}

@media (min-width: 768px) {
    h2 { font-size: clamp(40px, 4vw, 56px); }
}

.service-icon {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.service-card,
.review-card,
.area-card,
.payment-card {
    border-radius: 0;
    border: 1px solid rgba(74, 163, 255, 0.2);
    box-shadow: 0 20px 45px rgba(7, 30, 54, 0.08);
}

.service-list li {
    margin-bottom: 0.8rem;
}

.split-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(7, 30, 54, 0.16);
}

@media (min-width: 1024px) {
    .split-text {
        width: 70%;
    }

    .split-media {
        width: 30%;
    }
}

.reviews-track {
    display: flex;
    transition: transform 420ms ease;
}

.review-slide {
    min-width: 100%;
    padding: 0.75rem;
}

@media (min-width: 768px) {
    .review-slide {
        min-width: 33.333333%;
    }
}

.carousel-button {
    width: 44px;
    height: 44px;
    border-radius: 0;
    border: 1px solid rgba(24, 94, 166, 0.22);
    background: #FFFFFF;
    color: #185EA6;
    font-weight: 900;
    transition: background 160ms ease, color 160ms ease;
}

.carousel-button:hover {
    background: #185EA6;
    color: #FFFFFF;
}

.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-sticky-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: none !important;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7, 30, 54, 0.96);
    transform: translateY(120%);
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-call a {
    width: 100%;
    min-height: 54px;
    color: #FFFFFF !important;
    font-size: 16px;
}

@media (max-width: 767px) {
    body.has-sticky-call {
        padding-bottom: 84px;
    }

    .mobile-sticky-call.is-visible {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .mobile-sticky-call {
        display: none !important;
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
}

.footer-text,
.footer-text p,
.footer-text li,
.footer-text a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.86);
}

.footer-text a:hover {
    color: #FFFFFF;
}
