*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
    --bg:           #ffffff;
    --bg-2:         #f8f9fa;
    --bg-3:         #f0f1f3;
    --surface:      #ffffff;
    --txt:          #111827;
    --txt-2:        #374151;
    --txt-muted:    #6b7280;
    --border:       rgba(0,0,0,0.08);
    --glass:        rgba(255,255,255,0.82);
    --glass-border: rgba(255,255,255,0.55);
    --shadow:       rgba(0,0,0,0.07);
    --shadow-lg:    rgba(0,0,0,0.14);
    --red:          #dc2626;
    --red-hover:    #b91c1c;
    --red-light:    rgba(220,38,38,0.08);
    --red-glow:     rgba(220,38,38,0.22);
    --header-bg:    rgba(255,255,255,0.85);
    --deco-color:   #dc2626;
    --deco-opacity: 0.038;
    --card-bg:      #ffffff;
    --card-border:  rgba(0,0,0,0.06);
    --faq-bg:       #f9fafb;
    --faq-hover:    #f1f3f5;
    --map-border:   #ffffff;
}
[data-theme="dark"] {
    --bg:           #000000;
    --bg-2:         #0a0a0a;
    --bg-3:         #111111;
    --surface:      #0d0d0d;
    --txt:          #f2f2f2;
    --txt-2:        #c9c9c9;
    --txt-muted:    #6b6b6b;
    --border:       rgba(255,255,255,0.07);
    --glass:        rgba(5,5,5,0.88);
    --glass-border: rgba(255,255,255,0.10);
    --shadow:       rgba(0,0,0,0.45);
    --shadow-lg:    rgba(0,0,0,0.75);
    --red:          #ef4444;
    --red-hover:    #dc2626;
    --red-light:    rgba(239,68,68,0.07);
    --red-glow:     rgba(239,68,68,0.28);
    --header-bg:    rgba(0,0,0,0.90);
    --deco-color:   #ef4444;
    --deco-opacity: 0.022;
    --card-bg:      #0d0d0d;
    --card-border:  rgba(255,255,255,0.05);
    --faq-bg:       #0d0d0d;
    --faq-hover:    #141414;
    --map-border:   #1a1a1a;
}
::view-transition-old(root) {
    animation: vt-out 0.12s ease both;
    z-index: 1;
}
::view-transition-new(root) {
    animation: vt-in  0.12s ease both;
    z-index: 2;
}
@keyframes vt-out { to   { opacity: 0; } }
@keyframes vt-in  { from { opacity: 0; } }
body {
    transition: background-color 0.14s ease, color 0.14s ease;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--txt);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.14s ease, color 0.14s ease;
    position: relative;
}
a, button { cursor: pointer; }
.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;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, var(--deco-color) 1px, transparent 1px),
                      radial-gradient(circle at 80% 80%, var(--deco-color) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: var(--deco-opacity);
    pointer-events: none;
    z-index: 0;
    will-change: opacity;
    transition: opacity 0.16s ease;
}
.lazy-load { opacity: 0; transition: opacity 0.45s ease-in; }
.lazy-load.loaded { opacity: 1; }
.vertical-name {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 0.2em;
}
.fa-phone, .fa-phone-alt {
    display: inline-block;
    transform: scaleX(-1);
}
.glass-header {
    background: var(--header-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 4px 28px var(--shadow);
    transition: background 0.14s ease, box-shadow 0.14s ease;
}
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    gap: 1rem;
}
.header-logo   { display: flex; align-items: center; gap: 0.5rem; justify-self: start; flex-shrink: 0; }
.header-nav    { display: flex; align-items: center; gap: 1.5rem; justify-self: center; }
.header-cta    { display: flex; align-items: center; gap: 0.6rem; justify-self: end; flex-shrink: 0; }
.header-divider { width: 1px; height: 26px; background: var(--border); flex-shrink: 0; }
@media (max-width: 1023px) {
    .header-inner { display: none !important; }
    header .header-cta,
    header .header-nav,
    header .header-divider { display: none !important; }
}
.nav-link {
    position: relative;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--txt);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    padding-bottom: 3px;
    transition: color 0.25s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 50%; right: 50%;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1), right 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-link:hover::after { left: 0; right: 0; }
.nav-link:hover { color: var(--red); }
.phone-icon-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    text-decoration: none;
}
.phone-icon-btn:hover {
    transform: scale(1.15);
}
.theme-toggle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--txt);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease,
                transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s ease, border-color 0.3s ease;
}
.theme-toggle:hover {
    background: var(--red-light);
    color: var(--red);
    transform: scale(1.12) rotate(18deg);
    border-color: var(--red-glow);
    box-shadow: 0 4px 16px var(--red-light);
}
.btn-morph {
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-morph::before {
    content: ''; position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.13);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width 0.55s ease, height 0.55s ease;
    pointer-events: none;
}
.btn-morph:hover::before { width: 420px; height: 420px; }
.btn-morph:hover { transform: translateY(-2px); }
.btn-morph .btn-text {
    display: inline-block; position: relative; z-index: 1;
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.btn-morph .btn-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,120%); opacity: 0; z-index: 1;
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.btn-morph:hover .btn-text { transform: translateY(-120%); opacity: 0; }
.btn-morph:hover .btn-icon { transform: translate(-50%,-50%); opacity: 1; }
.hero-divider {
    width: 1px; height: 220px;
    background: linear-gradient(to bottom, transparent, var(--red), transparent);
    margin: 0 40px; flex-shrink: 0;
}
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
    transition: opacity 0.42s cubic-bezier(0.4,0,0.2,1),
                transform 0.42s cubic-bezier(0.4,0,0.2,1),
                background-color 0.35s ease;
}
.fullscreen-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
}
.fullscreen-menu::before {
    content: '';
    position: absolute;
    left: 50%; top: 10%; bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--red), transparent);
    opacity: 0.2;
    pointer-events: none;
}
.fullscreen-menu-item {
    font-size: 1.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--txt);
    text-decoration: none;
    padding: 0.8rem 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    width: 100%;
    justify-content: center;
    opacity: 0;
    transform: translateY(22px);
    transition: color 0.22s ease,
                opacity 0.38s ease,
                transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.fullscreen-menu.open .fullscreen-menu-item {
    opacity: 1;
    transform: translateY(0);
}
.fullscreen-menu.open .fullscreen-menu-item:nth-child(1) { transition-delay: 0.04s; }
.fullscreen-menu.open .fullscreen-menu-item:nth-child(2) { transition-delay: 0.09s; }
.fullscreen-menu.open .fullscreen-menu-item:nth-child(3) { transition-delay: 0.14s; }
.fullscreen-menu.open .fullscreen-menu-item:nth-child(4) { transition-delay: 0.19s; }
.fullscreen-menu.open .fullscreen-menu-item:nth-child(5) { transition-delay: 0.24s; }
.fullscreen-menu-item:hover { color: var(--red); }
.fullscreen-menu-item i { font-size: 1.1rem; color: var(--red); opacity: 0.7; }
.fullscreen-menu-separator {
    width: 40%; height: 1px;
    background: var(--border);
    margin: 0.5rem auto;
    opacity: 0;
    transition: opacity 0.38s ease 0.22s;
}
.fullscreen-menu.open .fullscreen-menu-separator { opacity: 1; }
.fullscreen-menu-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.38s ease 0.3s, transform 0.38s ease 0.3s;
}
.fullscreen-menu.open .fullscreen-menu-footer {
    opacity: 1;
    transform: translateY(0);
}
.fullscreen-menu-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--red);
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--red-glow);
    border-radius: 100px;
    transition: background 0.25s ease, color 0.25s ease;
}
.fullscreen-menu-phone:hover {
    background: var(--red);
    color: #fff;
}
.hamburger-line {
    display: block;
    width: 24px; height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
                opacity 0.28s ease,
                background 0.3s ease;
    transform-origin: center;
}
.gallery-item {
    overflow: hidden; position: relative;
    cursor: pointer; border-radius: 1rem;
    background: var(--bg-3);
    transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94),
                box-shadow 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}
.gallery-img {
    display: block; width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    transform-origin: center;
    content-visibility: auto;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 24px 48px var(--shadow-lg); }
.gallery-item:hover .gallery-img { transform: scale(1.07); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.46);
    opacity: 0; transition: opacity 0.32s ease;
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    color: #fff; font-size: 1.4rem; opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.26s ease 0.06s, transform 0.26s ease 0.06s;
}
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: translateY(0); }
.gallery-empty, .services-empty, .faq-empty {
    text-align: center; padding: 60px 20px;
    color: var(--txt-muted); font-size: 1.05rem;
}
.gallery-empty i, .services-empty i, .faq-empty i {
    font-size: 2.8rem; margin-bottom: 1rem; display: block;
    color: var(--border);
}
@keyframes zoomIn  { from { opacity:0; transform:scale(0.9); } to { opacity:1; transform:scale(1); } }
@keyframes zoomOut { from { opacity:1; transform:scale(1); } to { opacity:0; transform:scale(0.9); } }
.lightbox-enter { animation: zoomIn 0.3s forwards ease-out; }
.lightbox-exit  { animation: zoomOut 0.28s forwards ease-in; }
@media (max-width: 767px) {
    .services-slider-wrap {
        padding: 0 0 10px;
    }
    .servicesSwiper {
        overflow: visible !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    .servicesSwiper .swiper-wrapper {
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    .servicesSwiper .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        margin: 0 !important;
        aspect-ratio: unset;
        height: auto !important;
    }
    .servicesSwiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    .service-card {
        max-width: 100%;
        width: 100%;
        aspect-ratio: unset;
        height: auto;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 1rem 1.25rem !important;
        border-radius: 1.25rem;
        margin: 0 auto;
        gap: 1rem;
        background: var(--glass) !important;
        backdrop-filter: blur(28px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
        border: 1px solid var(--glass-border) !important;
        box-shadow: 0 4px 24px var(--shadow),
                    inset 0 1px 0 rgba(255,255,255,0.5),
                    inset 0 -1px 0 rgba(0,0,0,0.03) !important;
        transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
                    box-shadow 0.35s ease,
                    border-color 0.3s ease !important;
    }
    .service-card:active {
        transform: scale(0.97) !important;
    }
    .service-card .absolute {
        display: none !important;
    }
    .service-card .w-20 {
        width: 2.8rem !important;
        height: 2.8rem !important;
        min-width: 2.8rem !important;
        font-size: 1.15rem !important;
        margin-bottom: 0 !important;
        border-radius: 0.85rem !important;
        background: var(--red-light) !important;
        box-shadow: 0 2px 8px var(--red-glow) !important;
    }
    .service-card h3 {
        font-size: 0.92rem !important;
        margin-bottom: 0.1rem !important;
        text-align: left !important;
    }
    .service-card p {
        font-size: 0.72rem !important;
        margin-bottom: 0 !important;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: left !important;
        color: var(--txt-muted) !important;
    }
    .service-card .mt-auto {
        margin-top: 0 !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    .service-card .text-3xl {
        font-size: 1rem !important;
        white-space: nowrap !important;
    }
    .services-slider-wrap .swiper-button-prev,
    .services-slider-wrap .swiper-button-next,
    .swiper-progress-wrapper {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .service-card.reveal {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
        transition: opacity 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
                    transform 0.5s cubic-bezier(0.34,1.56,0.64,1) !important;
    }
    .service-card.reveal.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    .servicesSwiper .swiper-slide:nth-child(1) .service-card.reveal { transition-delay: 0s !important; }
    .servicesSwiper .swiper-slide:nth-child(2) .service-card.reveal { transition-delay: 0.06s !important; }
    .servicesSwiper .swiper-slide:nth-child(3) .service-card.reveal { transition-delay: 0.12s !important; }
    .servicesSwiper .swiper-slide:nth-child(4) .service-card.reveal { transition-delay: 0.18s !important; }
    .servicesSwiper .swiper-slide:nth-child(5) .service-card.reveal { transition-delay: 0.24s !important; }
    .servicesSwiper .swiper-slide:nth-child(6) .service-card.reveal { transition-delay: 0.30s !important; }
}
.services-slider-wrap {
    position: relative;
    padding: 0 0 50px;
}
.servicesSwiper {
    overflow: visible !important;
    padding: 40px 0 60px !important;
}
.servicesSwiper .swiper-wrapper {
    align-items: center !important;
}
.servicesSwiper .swiper-slide {
    width: clamp(240px, 28vw, 300px) !important;
    height: auto;
    transform: scale(0.87);
    opacity: 0.55;
    filter: blur(0.5px);
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease,
                filter 0.5s ease;
}
.servicesSwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
}
.servicesSwiper .swiper-slide-prev,
.servicesSwiper .swiper-slide-next {
    transform: scale(0.91);
    opacity: 0.72;
    filter: blur(0);
}
.servicesSwiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: 0;
    pointer-events: none;
}
.servicesSwiper .swiper-slide-active .service-card {
    border-color: rgba(220,38,38,0.45) !important;
    box-shadow: 0 32px 80px var(--red-glow), 0 8px 28px var(--shadow) !important;
}
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 2rem;
    transition: border-color 0.4s ease,
                box-shadow 0.4s ease,
                background 0.35s ease;
    width: 100%;
    margin: 0 auto;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--red) !important;
    background: var(--glass) !important;
    width: 48px !important; height: 48px !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 14px var(--shadow) !important;
    border: 1px solid var(--border) !important;
    transition: all 0.28s ease !important;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--red) !important;
    color: #fff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 8px 22px var(--red-glow) !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 15px !important; font-weight: 900 !important;
}
.swiper-progress-wrapper {
    display: flex; align-items: center; gap: 14px; padding: 20px 0 0;
}
.swiper-progress-bar {
    flex: 1; height: 3px;
    background: var(--red-light) !important;
    border-radius: 2px;
    position: relative; overflow: hidden;
    top: auto !important; bottom: auto !important;
}
.swiper-progress-bar .swiper-pagination-progressbar-fill {
    background: var(--red) !important;
    border-radius: 2px;
}
.swiper-slide-counter {
    font-size: 0.76rem; font-weight: 700;
    color: var(--txt-muted); letter-spacing: 0.08em; white-space: nowrap; flex-shrink: 0;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    background: var(--faq-bg);
    cursor: pointer;
    transition: border-color 0.28s ease,
                box-shadow 0.28s ease,
                background 0.28s ease,
                transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-item:hover {
    border-color: var(--red-glow);
    box-shadow: 0 8px 32px var(--red-light);
    transform: translateY(-3px) scale(1.012);
    background: var(--faq-hover);
}
.faq-question {
    padding: 1.4rem 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--txt);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.22s ease;
}
.faq-item:hover .faq-question { color: var(--red); }
.faq-icon {
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-item:hover .faq-icon { transform: rotate(45deg) scale(1.15); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-popup-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.58);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}
.faq-popup-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.faq-popup-glass {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(52px) saturate(220%);
    -webkit-backdrop-filter: blur(52px) saturate(220%);
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 28px;
    padding: 3rem 2.5rem 2.5rem;
    max-width: 580px;
    width: 100%;
    position: relative;
    transform: scale(0.86) translateY(32px);
    transition: transform 0.46s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 48px 120px rgba(0,0,0,0.20),
                inset 0 1px 0 rgba(255,255,255,0.8),
                inset 0 -1px 0 rgba(0,0,0,0.05);
}
.faq-popup-overlay.open .faq-popup-glass {
    transform: scale(1) translateY(0);
}
[data-theme="dark"] .faq-popup-glass {
    background: rgba(10,10,10,0.62);
    border-color: rgba(255,255,255,0.10);
    box-shadow: 0 48px 120px rgba(0,0,0,0.85),
                inset 0 1px 0 rgba(255,255,255,0.07),
                0 0 0 1px rgba(239,68,68,0.12);
}
.faq-popup-close {
    position: absolute; top: 1.1rem; right: 1.1rem;
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
    color: #374151;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease,
                color 0.25s ease,
                transform 0.38s cubic-bezier(0.34,1.56,0.64,1),
                border-color 0.25s ease;
    backdrop-filter: blur(8px);
}
[data-theme="dark"] .faq-popup-close {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
    color: #f2f2f2;
}
.faq-popup-close:hover {
    background: var(--red); color: #fff;
    transform: rotate(90deg) scale(1.12);
    border-color: var(--red);
}
.faq-popup-accent {
    display: block; width: 3rem; height: 3px;
    background: var(--red); border-radius: 2px;
    margin-bottom: 1.1rem;
}
.faq-popup-question {
    font-size: 1.25rem; font-weight: 900;
    color: #111827; line-height: 1.4;
    margin-bottom: 1.25rem;
    padding-right: 1rem;
}
[data-theme="dark"] .faq-popup-question { color: #f2f2f2; }
.faq-popup-answer {
    color: #374151;
    line-height: 1.8;
    font-size: 1rem;
}
[data-theme="dark"] .faq-popup-answer { color: #c9c9c9; }
.faq-popup-answer a { color: var(--red); text-decoration: underline; }
.faq-popup-answer strong { color: inherit; font-weight: 700; }
.contact-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.35s ease;
    position: relative;
}
.contact-card:hover {
    border-color: rgba(220,38,38,0.28) !important;
    box-shadow: 0 6px 22px var(--shadow);
}
.contact-card .icon-container {
    transition: transform 0.28s ease, box-shadow 0.28s ease; flex-shrink: 0;
}
.contact-card:hover .icon-container {
    transform: scale(1.07);
    box-shadow: 0 6px 20px var(--red-glow);
}
.social-icon-wrapper { display: flex; gap: 1.25rem; align-items: center; }
.social-icon {
    position: relative; width: 54px; height: 54px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
    box-shadow: 0 6px 20px var(--shadow); overflow: hidden;
}
.social-icon::before {
    content: ''; position: absolute; inset: 0; border-radius: 16px;
    background: linear-gradient(135deg, var(--icon-color-1), var(--icon-color-2)); z-index: 1;
}
.social-icon::after {
    content: ''; position: absolute; inset: 2px; border-radius: 14px;
    background: var(--surface); z-index: 2;
}
.social-icon i {
    font-size: 1.6rem; z-index: 3; position: relative;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    color: transparent; background-clip: text; -webkit-background-clip: text;
    background-image: linear-gradient(135deg, var(--icon-color-1), var(--icon-color-2));
}
.social-icon:hover { transform: translateY(-6px) scale(1.1); box-shadow: 0 20px 40px var(--shadow-lg); }
.social-icon:hover i { transform: scale(1.15); }
.social-icon.instagram { --icon-color-1: #E4405F; --icon-color-2: #833AB4; }
.social-icon.facebook  { --icon-color-1: #1877F2; --icon-color-2: #0D5FDB; }
#map {
    height: 100%; min-height: 450px; width: 100%;
    border-radius: 2rem; z-index: 1;
}
.leaflet-container { background: var(--bg-3) !important; }
[data-theme="dark"] .leaflet-tile {
    filter: invert(1) hue-rotate(180deg) brightness(0.82) saturate(0.8);
}
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--red); color: #fff !important;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 40;
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.35s ease,
                transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.22s ease,
                background 0.22s ease;
    box-shadow: 0 5px 18px var(--red-glow);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover {
    background: var(--red-hover);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 30px var(--red-glow);
}
#services, #faq, #contact {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}
#gallery {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}
[data-theme="dark"] .bg-white        { background-color: #000 !important; }
[data-theme="dark"] .bg-gray-50      { background-color: #000000 !important; }
[data-theme="dark"] .bg-gray-100     { background-color: #111 !important; }
[data-theme="dark"] .bg-gray-900     { background-color: #111 !important; }
[data-theme="dark"] .bg-white\/96    { background-color: rgba(0,0,0,0.96) !important; }
[data-theme="dark"] .bg-red-50       { background-color: rgba(239,68,68,0.07) !important; }
[data-theme="dark"] .text-gray-900   { color: #f2f2f2 !important; }
[data-theme="dark"] .text-gray-800   { color: #e5e5e5 !important; }
[data-theme="dark"] .text-gray-700   { color: #c9c9c9 !important; }
[data-theme="dark"] .text-gray-600   { color: #a3a3a3 !important; }
[data-theme="dark"] .text-gray-500   { color: #737373 !important; }
[data-theme="dark"] .text-gray-400   { color: #525252 !important; }
[data-theme="dark"] .text-black      { color: #f2f2f2 !important; }
[data-theme="dark"] .border-gray-100 { border-color: rgba(255,255,255,0.05) !important; }
[data-theme="dark"] .border-gray-200 { border-color: rgba(255,255,255,0.07) !important; }
[data-theme="dark"] .shadow-gray-200 { --tw-shadow-color: rgba(0,0,0,0.7) !important; }
[data-theme="dark"] .bg-green-50  { background-color: rgba(16,185,129,0.07) !important; }
[data-theme="dark"] .text-green-800 { color: #6ee7b7 !important; }
[data-theme="dark"] .border-green-200 { border-color: rgba(52,211,153,0.2) !important; }
[data-theme="dark"] .text-red-800  { color: #fca5a5 !important; }
[data-theme="dark"] .border-red-200 { border-color: rgba(239,68,68,0.2) !important; }
[data-theme="dark"] .border-red-500\/30 { border-color: rgba(239,68,68,0.3) !important; }
footer { background-color: #000 !important; color: #fff; }
footer .text-gray-500, footer .text-gray-600,
footer .text-gray-400, footer .text-gray-700,
footer .text-gray-300 { color: #fff !important; opacity: 0.88; }
footer .bg-white\/10   { background: rgba(255,255,255,0.15); }
footer a:hover { opacity: 0.75; }
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.fullscreen-menu-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.12);
    color: #111;
    font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10;
    transition: background 0.25s ease,
                color 0.25s ease,
                transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                border-color 0.25s ease;
}
[data-theme="dark"] .fullscreen-menu-close {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}
.fullscreen-menu-close:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}
.swiper-button-prev { left:  -8px !important; }
}
@media (max-width: 768px) {
    .social-icon { width: 48px; height: 48px; }
    .social-icon i { font-size: 1.4rem; }
    .servicesSwiper .swiper-slide { width: min(320px, calc(100vw - 48px)) !important; }
    .servicesSwiper .swiper-slide-prev,
    .servicesSwiper .swiper-slide-next { opacity: 0.5; transform: scale(0.88); }
    .service-card { border-radius: 1.25rem; }
    .service-card-icon-wrap { width: 52px !important; height: 52px !important; font-size: 1.4rem !important; margin-bottom: 0.75rem !important; }
    .service-card-title { font-size: 1rem !important; margin-bottom: 0.4rem !important; }
    .service-card-desc { font-size: 0.78rem !important; margin-bottom: 0.75rem !important; line-height: 1.5 !important; }
    .service-card-price { font-size: 1.4rem !important; }
    .faq-popup-glass { padding: 2.25rem 1.5rem 2rem; }
    .faq-popup-question { font-size: 1.1rem; }
    .fullscreen-menu-item { font-size: 1.5rem; padding: 0.7rem 2rem; }
    .hero-divider { display: none; }
    #map { min-height: 320px; }
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
@media (max-width: 480px) {
    .servicesSwiper .swiper-slide { width: min(320px, calc(100vw - 40px)) !important; }
    .fullscreen-menu-item { font-size: 1.25rem; padding: 0.6rem 1.5rem; }
    .faq-popup-glass { padding: 2rem 1.2rem 1.8rem; border-radius: 20px; }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.services-grid .service-card {
    max-width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
}
@media (max-width: 767px) {
    .services-grid .service-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 1.75rem !important;
    }
    .services-grid .service-card .absolute {
        display: block !important;
    }
    .services-grid .service-card .w-20 {
        width: 5rem !important;
        height: 5rem !important;
        min-width: 5rem !important;
        font-size: 1.875rem !important;
        margin-bottom: 1.5rem !important;
        border-radius: 50% !important;
    }
    .services-grid .service-card h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.75rem !important;
        text-align: center !important;
    }
    .services-grid .service-card p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        display: block !important;
        -webkit-line-clamp: unset !important;
        overflow: visible !important;
    }
    .services-grid .service-card .mt-auto {
        margin-top: auto !important;
        margin-left: 0 !important;
        flex-shrink: 0 !important;
    }
    .services-grid .service-card .text-3xl {
        font-size: 1.875rem !important;
        white-space: normal !important;
    }
}
.page-shell {
    opacity: 1;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
body.page-leaving .page-shell {
    opacity: 0;
    transform: translateY(8px);
}
.page-hero {
    position: relative;
}
.page-hero-icon {
    width: 76px;
    height: 76px;
    border-radius: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--red-light);
    color: var(--red);
    font-size: 2rem;
    box-shadow: 0 18px 48px var(--red-glow);
}
.contact-section {
    position: relative;
}
.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: stretch;
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid var(--card-border);
    border-radius: 2.4rem;
    background: linear-gradient(135deg, var(--surface), var(--bg-2));
    box-shadow: 0 34px 90px var(--shadow);
}
.contact-copy {
    padding: clamp(1.25rem, 3vw, 2.25rem);
}
.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.contact-kicker::before {
    content: '';
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
}
.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 94px;
    padding: 1rem;
    border-radius: 1.45rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--txt);
    box-shadow: 0 12px 32px var(--shadow);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: var(--red-glow);
    box-shadow: 0 24px 58px var(--shadow-lg);
}
.contact-info-card-wide {
    grid-column: 1 / -1;
}
.contact-info-card strong,
.contact-info-card small {
    display: block;
}
.contact-info-card strong {
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}
.contact-info-card small {
    margin-top: 0.22rem;
    color: var(--txt-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    font-size: 1.05rem;
}
.contact-icon.red {
    background: var(--red);
    box-shadow: 0 16px 32px var(--red-glow);
}
.contact-icon.dark {
    background: #111827;
}
.contact-icon.blue {
    background: #2563eb;
}
.contact-socials {
    margin-left: auto;
    display: inline-flex;
    gap: 0.75rem;
}
.contact-socials .social-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
}
.contact-map-panel {
    position: relative;
    min-height: 560px;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: var(--bg-3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}
.contact-map-panel #map {
    min-height: 560px;
    height: 100%;
    border-radius: 2rem;
    border: 0;
}
.contact-address-card {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 1rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 1.2rem;
    color: var(--txt);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 42px var(--shadow);
    font-weight: 800;
}
.contact-address-card i {
    color: var(--red);
}
.faq-popup-overlay {
    background: rgba(0,0,0,0.62) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.faq-popup-glass {
    background: var(--surface) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
[data-theme="dark"] .faq-popup-glass {
    background: #0d0d0d !important;
}
@media (max-width: 1023px) {
    .contact-shell {
        grid-template-columns: 1fr;
        border-radius: 2rem;
    }
    .contact-map-panel,
    .contact-map-panel #map {
        min-height: 420px;
    }
}
@media (max-width: 767px) {
    #home {
        padding-top: 8.5rem !important;
    }
    #home h1,
    .page-hero h1 {
        font-size: clamp(2.4rem, 12vw, 4rem) !important;
    }
    .contact-shell {
        padding: 0.75rem;
        border-radius: 1.5rem;
    }
    .contact-copy {
        padding: 1rem;
    }
    .contact-card-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-card {
        min-height: 84px;
        border-radius: 1.1rem;
    }
    .contact-socials {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }
    .contact-info-card-wide {
        flex-wrap: wrap;
    }
    .contact-map-panel,
    .contact-map-panel #map {
        min-height: 340px;
        border-radius: 1.35rem;
    }
    .contact-address-card {
        font-size: 0.85rem;
        border-radius: 1rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .page-shell,
    body.page-leaving .page-shell,
    .reveal,
    .contact-info-card,
    .faq-item,
    .gallery-item {
        transition: none !important;
        transform: none !important;
    }
}


body::before{display:none}.glass-header{backdrop-filter:none;-webkit-backdrop-filter:none;box-shadow:0 4px 18px var(--shadow)}.contact-address-card{backdrop-filter:none;-webkit-backdrop-filter:none}.contact-shell{box-shadow:0 18px 46px var(--shadow)}.contact-info-card{box-shadow:0 8px 24px var(--shadow)}.contact-info-card:hover{box-shadow:0 16px 38px var(--shadow-lg)}.gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem;max-width:1180px;margin:0 auto}.gallery-grid .gallery-item{appearance:none;border:0;padding:0;cursor:pointer;display:block;position:relative;overflow:hidden;border-radius:1.5rem;background:var(--surface);color:inherit}.gallery-grid .gallery-img{width:100%;height:100%;object-fit:cover}.vt-map-pin span{display:block;width:24px;height:24px;border-radius:999px;background:#dc2626;border:3px solid #fff;box-shadow:0 0 18px rgba(220,38,38,.45)}.map-popup{padding:.6rem;max-width:240px;font-family:system-ui,-apple-system,Segoe UI,sans-serif}.map-popup strong{color:#dc2626;font-size:15px}.map-popup p{margin:.25rem 0;font-size:13px}.map-fallback{height:100%;min-height:320px;display:flex;align-items:center;justify-content:center;color:var(--txt-muted);font-weight:700}.reveal{transition:opacity .36s ease,transform .36s ease}.page-shell{transition:opacity .14s ease,transform .14s ease}#gallery,#services,#faq,#contact{content-visibility:auto;contain-intrinsic-size:800px}@media(max-width:1023px){.gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}}@media(max-width:640px){.gallery-grid{grid-template-columns:1fr}.gallery-grid .gallery-item{height:260px}.glass-header{box-shadow:0 3px 14px var(--shadow)}}@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation:none!important;transition:none!important}}


.saww-credit{display:inline-flex;align-items:center;justify-content:center;gap:.35rem;margin-top:.9rem;padding:.32rem .72rem;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.07);color:rgba(255,255,255,.72);font-size:.62rem;font-weight:800;letter-spacing:.12em;line-height:1;text-transform:uppercase}.saww-credit a{color:inherit;text-decoration:none}.saww-credit a:hover{color:#fff;opacity:1}
::view-transition-old(root){animation-duration:.12s!important}::view-transition-new(root){animation-duration:.12s!important}html,body,.glass-header,.theme-toggle,.fullscreen-menu,.faq-popup-glass,.contact-shell,.contact-info-card{transition-duration:.14s!important}

/* High-contrast cleanup: remove soft glows and keep surfaces crisp. */
:root {
    --bg: #ffffff;
    --bg-2: #f3f4f6;
    --bg-3: #e5e7eb;
    --surface: #ffffff;
    --txt: #0b0f19;
    --txt-2: #1f2937;
    --txt-muted: #475569;
    --border: rgba(15,23,42,0.18);
    --glass: #ffffff;
    --glass-border: rgba(15,23,42,0.18);
    --shadow: transparent;
    --shadow-lg: transparent;
    --red: #c81e1e;
    --red-hover: #991b1b;
    --red-light: rgba(200,30,30,0.12);
    --red-glow: rgba(200,30,30,0.22);
    --header-bg: #ffffff;
    --card-bg: #ffffff;
    --card-border: rgba(15,23,42,0.18);
    --faq-bg: #ffffff;
    --faq-hover: #f3f4f6;
}
[data-theme="dark"] {
    --bg: #050505;
    --bg-2: #0f0f0f;
    --bg-3: #1f1f1f;
    --surface: #101010;
    --txt: #ffffff;
    --txt-2: #e5e7eb;
    --txt-muted: #b7bcc5;
    --border: rgba(255,255,255,0.2);
    --glass: #090909;
    --glass-border: rgba(255,255,255,0.2);
    --shadow: transparent;
    --shadow-lg: transparent;
    --red: #ff4b4b;
    --red-hover: #ff6b6b;
    --red-light: rgba(255,75,75,0.15);
    --red-glow: rgba(255,75,75,0.25);
    --header-bg: #090909;
    --card-bg: #101010;
    --card-border: rgba(255,255,255,0.2);
    --faq-bg: #101010;
    --faq-hover: #171717;
}
.shadow-xl,
.shadow-2xl,
.shadow-md,
.glass-header,
.theme-toggle,
.phone-icon-btn,
.btn-morph,
.gallery-item,
.service-card,
.faq-item,
.faq-popup-glass,
.contact-shell,
.contact-info-card,
.contact-icon,
.social-icon,
.contact-map-panel,
.contact-address-card,
.back-to-top,
.page-hero-icon {
    box-shadow: none !important;
}
.glass-header,
.contact-address-card,
.faq-popup-glass {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.glass-header {
    border-color: var(--border) !important;
}
.theme-toggle:hover,
.phone-icon-btn:hover,
.btn-morph:hover,
.contact-info-card:hover,
.faq-item:hover,
.gallery-item:hover,
.back-to-top:hover {
    box-shadow: none !important;
}
.contact-shell {
    background: var(--surface);
    border-color: var(--border);
}
.contact-info-card {
    border-color: var(--border);
}
.contact-info-card > span:not(.contact-icon) {
    min-width: 0;
}
.contact-email-card strong {
    max-width: 100%;
    font-size: 0.78rem;
    line-height: 1.15;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services-section {
    background:
        linear-gradient(90deg, rgba(200,30,30,0.08) 0 1px, transparent 1px 100%),
        linear-gradient(0deg, rgba(15,23,42,0.08) 0 1px, transparent 1px 100%),
        var(--bg);
    background-size: 42px 42px;
}
.services-heading {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}
.services-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--red);
    border-radius: 999px;
    color: var(--red);
    background: var(--surface);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.services-heading h2 {
    color: var(--txt);
    font-size: 3rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}
.services-heading p {
    margin: 1rem auto 0;
    max-width: 620px;
    color: var(--txt-muted);
    font-size: 1rem;
    line-height: 1.7;
}
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)) !important;
    gap: 1rem !important;
    max-width: 1180px !important;
}
.services-grid .package-card {
    position: relative;
    display: grid !important;
    grid-template-rows: auto 1fr auto;
    min-height: 300px;
    padding: 1.1rem !important;
    overflow: hidden;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--txt);
    text-align: left !important;
    isolation: isolate;
}
.services-grid .package-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--red);
}
.package-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.package-index {
    color: var(--txt-muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
}
.package-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--red);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    background: var(--surface);
    font-size: 1.1rem;
}
.package-card-body {
    min-width: 0;
}
.package-card-body h3 {
    margin: 0 0 0.7rem;
    color: var(--txt);
    font-size: 1.45rem;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: 0;
}
.package-card-body p {
    margin: 0;
    color: var(--txt-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}
.package-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.package-card-foot strong {
    color: var(--red);
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 950;
    white-space: nowrap;
}
.package-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--txt);
    border-radius: 999px;
    color: var(--txt);
    background: transparent;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.package-card-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-1px);
}

.site-footer {
    padding: 1.7rem 0 !important;
    border-top: 1px solid rgba(255,255,255,0.14);
    background: #000 !important;
}
.site-footer-inner {
    display: grid;
    gap: 0.75rem;
}
.site-footer-company,
.site-footer-legal {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.76rem;
    line-height: 1.55;
    letter-spacing: 0;
}
.site-footer-company {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.85rem;
}
.site-footer-company strong {
    color: #fff;
}
.site-footer-partners {
    display: grid;
    justify-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.64);
    font-size: 0.74rem;
    line-height: 1.2;
}
.site-footer-partners > a:not(.saww-credit) {
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0;
}
.site-footer .saww-credit {
    margin: 0;
    padding: 0.24rem 0.56rem;
    border: 1px solid rgba(255,255,255,0.26);
    border-radius: 999px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 0.54rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
}
.site-footer .saww-credit:hover {
    color: #fff;
    opacity: 1;
}

@media (max-width: 767px) {
    .contact-email-card strong {
        font-size: 0.72rem;
    }
    .services-heading {
        margin-bottom: 1.25rem;
    }
    .services-heading h2 {
        font-size: 2.1rem;
    }
    .services-heading p {
        font-size: 0.92rem;
    }
    .services-grid .package-card {
        min-height: auto;
        padding: 1rem !important;
    }
    .package-card-head {
        margin-bottom: 1rem;
    }
    .package-card-body h3 {
        font-size: 1.22rem !important;
        text-align: left !important;
    }
    .package-card-body p {
        display: block !important;
        overflow: visible !important;
        font-size: 0.9rem !important;
        text-align: left !important;
    }
    .package-card-foot {
        align-items: flex-start;
        flex-direction: column;
    }
    .package-card-foot strong {
        font-size: 1.2rem !important;
        white-space: normal !important;
    }
    .package-card-link {
        width: 100%;
    }
    .site-footer {
        padding: 1.25rem 0 !important;
    }
    .back-to-top.visible {
        bottom: 4.5rem;
    }
    .site-footer-company,
    .site-footer-legal {
        font-size: 0.7rem;
    }
}
