/* Premium, mobile-first styling for Zhbllokime Dyersh Tirane. */
:root {
    --bg: #08111f;
    --bg-soft: #0f1d31;
    --panel: #13243a;
    --panel-light: #ffffff;
    --text: #f7fafc;
    --text-muted: #b8c4d6;
    --ink: #122033;
    --ink-muted: #5e6b7c;
    --amber: #f5b82e;
    --amber-dark: #d89612;
    --teal: #29c7ac;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 70px rgba(3, 9, 20, 0.35);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 96px;
}

body.light-page {
    background: #f4f7fb;
    color: var(--ink);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    color: var(--text);
    background: rgba(8, 17, 31, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark,
.icon-badge {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: var(--radius);
    color: #111827;
    background: linear-gradient(135deg, var(--amber), #ffe18a);
    box-shadow: 0 12px 28px rgba(245, 184, 46, 0.26);
    flex: 0 0 auto;
}

.brand-text {
    display: grid;
    line-height: 1.08;
}

.brand-text small {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    background: transparent;
    cursor: pointer;
}

.nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #0b1728;
    box-shadow: var(--shadow);
}

.nav-links.is-open {
    display: grid;
}

.nav-link {
    padding: 12px 14px;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.96) 0%, rgba(8, 17, 31, 0.74) 54%, rgba(8, 17, 31, 0.92) 100%),
        url("assets/u_pc21eg4wlc-locksmith-8559026_1920.jpg") center/cover no-repeat;
}

.hero-grid,
.split-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #ffe8a6;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(2.35rem, 8vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-lead,
.page-lead {
    max-width: 720px;
    margin-bottom: 28px;
    color: var(--text-muted);
    font-size: clamp(1.05rem, 2.6vw, 1.3rem);
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.action-gap {
    margin-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1.1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #111827;
    background: var(--amber);
    box-shadow: 0 16px 34px rgba(245, 184, 46, 0.28);
}

.btn-primary:hover {
    background: var(--amber-dark);
}

.btn-secondary {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.trust-item,
.stat-card,
.service-card,
.step-card,
.work-card,
.contact-card,
.feature-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow);
}

.trust-item {
    padding: 14px;
}

.trust-item strong {
    display: block;
    font-size: 1.08rem;
}

.trust-item span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.section {
    padding: 64px 0;
}

.section.light {
    color: var(--ink);
    background: #f4f7fb;
}

.section.alt {
    background: #0b1728;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 12px;
    color: inherit;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    line-height: 1.08;
}

.section-heading p {
    color: var(--ink-muted);
    font-size: 1.05rem;
}

.section.alt .section-heading p,
.section:not(.light) .section-heading p {
    color: var(--text-muted);
}

.card-grid {
    display: grid;
    gap: 18px;
}

.service-card,
.feature-card,
.step-card,
.contact-card {
    padding: 22px;
}

.service-card {
    color: var(--ink);
    background: var(--panel-light);
    border-color: rgba(18, 32, 51, 0.08);
}

.service-card h3,
.feature-card h3,
.step-card h3,
.contact-card h3 {
    margin: 14px 0 8px;
    font-size: 1.18rem;
    line-height: 1.2;
}

.service-card p,
.feature-card p,
.step-card p,
.contact-card p,
.service-card li {
    color: var(--ink-muted);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #0d6c88;
    font-weight: 800;
}

.work-grid {
    display: grid;
    gap: 18px;
}

.work-card {
    overflow: hidden;
    color: var(--text);
    background: var(--panel);
}

.work-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.work-card-content {
    padding: 20px;
}

.work-card h3 {
    margin: 0 0 8px;
}

.work-card p {
    color: var(--text-muted);
}

.step-number {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: var(--amber);
    font-weight: 900;
}

.step-card {
    color: var(--text);
    background: var(--panel);
}

.step-card p {
    color: var(--text-muted);
}

.feature-card {
    color: var(--ink);
    background: #ffffff;
    border-color: rgba(18, 32, 51, 0.08);
    box-shadow: 0 18px 48px rgba(18, 32, 51, 0.08);
}

.page-hero {
    padding: 64px 0;
    background: linear-gradient(135deg, #08111f 0%, #13243a 100%);
}

.page-hero .container {
    display: grid;
    gap: 28px;
}

.page-hero img,
.split-grid img {
    width: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-panel {
    padding: 28px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(18, 32, 51, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(18, 32, 51, 0.08);
}

.content-panel h2,
.content-panel h3 {
    margin-top: 0;
    line-height: 1.16;
}

.content-panel p + p,
.content-panel ul + p {
    margin-top: 14px;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink-muted);
}

.check-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #08311f;
    background: var(--teal);
    content: "✓";
    font-size: 0.78rem;
    font-weight: 900;
}

.contact-grid {
    display: grid;
    gap: 18px;
}

.contact-card {
    color: var(--ink);
    background: #ffffff;
    border-color: rgba(18, 32, 51, 0.08);
    box-shadow: 0 18px 48px rgba(18, 32, 51, 0.08);
}

.map-frame {
    width: 100%;
    min-height: 310px;
    border: 0;
    border-radius: var(--radius);
}

.site-footer {
    padding: 36px 0;
    color: var(--text-muted);
    background: #060d18;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    gap: 18px;
}

.footer-grid strong {
    color: var(--text);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.mobile-call-bar {
    position: fixed;
    z-index: 40;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 14px 20px;
    border-radius: 999px;
    color: #111827;
    background: var(--amber);
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 0 8px rgba(245, 184, 46, 0.12);
    isolation: isolate;
}

.mobile-call-bar::before {
    position: absolute;
    inset: -10px;
    z-index: -1;
    border-radius: 999px;
    background: rgba(245, 184, 46, 0.34);
    content: "";
    animation: callPulse 1.8s ease-out infinite;
}

.mobile-call-bar i {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    color: var(--amber);
    background: #111827;
}

@keyframes callPulse {
    0% {
        opacity: 0.72;
        transform: scale(0.94);
    }

    70% {
        opacity: 0;
        transform: scale(1.18);
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}

@media (min-width: 720px) {
    .hero-grid,
    .split-grid,
    .page-hero .container {
        grid-template-columns: 1.08fr 0.92fr;
    }

    .trust-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .work-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-call-bar {
        left: auto;
        right: 28px;
        bottom: 28px;
        min-width: 245px;
    }
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        align-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-link {
        padding: 10px;
        font-size: 0.88rem;
    }

    .nav-cta {
        display: inline-flex;
    }
}

@media (min-width: 1180px) {
    .nav-link {
        padding: 10px 12px;
        font-size: 0.93rem;
    }
}
