:root {
    --bg: #111532;
    --panel: #171b3c;
    --accent: #d7dbee;
    --accent-2: #8fb3ff;
    --text: #f3f5ff;
    --muted: #b4b8cc;
    --border: #252b4d;
    --radius: 14px;
    --shadow: 0 20px 60px rgba(4, 8, 32, 0.45);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 10% 20%, rgba(143, 179, 255, 0.08), transparent 35%), linear-gradient(120deg, #0e1230, #111532 45%, #0c0f25 100%);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Inter', serif;
    color: #fff;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(15, 16, 21, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
}

.brand__logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand__name {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand__tagline {
    color: var(--muted);
    font-size: 13px;
}

.brand--light .brand__mark {
    box-shadow: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    transition: all 0.2s ease;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    color: var(--text);
    cursor: pointer;
    gap: 6px;
    align-items: center;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.open {
    display: flex;
}

.nav a:hover,
.nav a.active {
    color: #fff;
    background: rgba(200, 164, 106, 0.1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 12px;
    border: 1px solid var(--accent);
    color: #0f0f12;
    background: linear-gradient(135deg, #f6f7ff, #cfd5ff);
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 12px 30px rgba(193, 154, 92, 0.35);
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(193, 154, 92, 0.5);
}

.button--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border);
    box-shadow: none;
}

.button--ghost:hover,
.nav a.button--ghost.active {
    border-color: var(--accent);
    color: var(--accent);
}

.hero {
    padding: 90px 0 60px;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(158, 199, 201, 0.1);
    color: #c8e2e3;
    border: 1px solid rgba(158, 199, 201, 0.35);
    font-weight: 600;
}

.hero__title {
    font-size: clamp(38px, 5vw, 56px);
    margin: 20px 0 14px;
}

.hero__copy {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 20px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.hero__media {
    display: flex;
    flex-direction: column;
}

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    min-width: 140px;
}

.stat strong {
    display: block;
    font-size: 22px;
    color: #fff;
}

.panel-glow {
    background: radial-gradient(circle at 20% 30%, rgba(143, 179, 255, 0.15), transparent 45%),
                radial-gradient(circle at 80% 20%, rgba(215, 219, 238, 0.2), transparent 40%),
                var(--panel);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card h3 {
    margin-bottom: 6px;
}

.service-card p {
    color: var(--muted);
    font-size: 15px;
}

.service-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(200, 164, 106, 0.14);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #f3dcb2;
    margin-bottom: 12px;
}

.section {
    padding: 70px 0;
}

.section__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.section__header p {
    color: var(--muted);
    max-width: 520px;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.list li {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.muted {
    color: var(--muted);
}

.footer {
    margin-top: 60px;
    border-top: 1px solid var(--border);
    padding: 40px 0 26px;
    background: #0c0f2a;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.footer__bottom {
    margin-top: 24px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.pill {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid var(--border);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

form {
    display: grid;
    gap: 12px;
}

label {
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.link {
    color: var(--accent-2);
    font-weight: 600;
}

.image-frame {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(143, 179, 255, 0.1));
    border: 1px dashed var(--border);
    border-radius: 16px;
    padding: 12px;
    color: var(--muted);
    display: grid;
    place-items: center;
    text-align: center;
    min-height: 220px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.image-frame--hero {
    min-height: 320px;
    max-height: 420px;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle at 20% 20%, rgba(143, 179, 255, 0.2), transparent 45%), rgba(255, 255, 255, 0.02);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.gallery-tile {
    border-radius: 12px;
    border: 1px dashed var(--border);
    background: rgba(255, 255, 255, 0.03);
    min-height: 160px;
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-weight: 600;
    overflow: hidden;
}

.image-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.service-card .image-frame {
    margin-top: 12px;
    min-height: 0;
    max-height: 260px;
    aspect-ratio: 4 / 3;
    padding: 0;
}

.hero__media .image-frame--hero img {
    width: 100%;
    height: 100%;
/* Ensure contained service images never overflow */
.service-card .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1ebe5d, #25d366);
    color: #0b160b;
    font-weight: 700;
    box-shadow: 0 16px 44px rgba(37, 211, 102, 0.38);
    z-index: 30;
}

.whatsapp-fab svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 960px) {
    .hero__inner,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .topbar {
        position: sticky;
        top: 0;
    }

    .nav {
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }

    .nav a {
        padding: 9px 12px;
    }

    .hero {
        padding: 70px 0 46px;
    }
}

@media (max-width: 720px) {
    .container {
        width: 94%;
    }

    .section {
        padding: 56px 0;
    }

    .section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .card {
        padding: 16px;
    }

    .button {
        width: 100%;
        justify-content: center;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
        padding: 10px 0 6px;
        border-top: 1px solid var(--border);
    }

    .nav a {
        width: 100%;
        padding: 10px 12px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.02);
    }
}

@media (max-width: 540px) {
    body {
        font-size: 15px;
    }

    h1, h2 {
        line-height: 1.15;
    }

    .hero__title {
        font-size: clamp(30px, 9vw, 44px);
    }

    .topbar__inner {
        gap: 10px;
    }

    .brand__mark {
        width: 38px;
        height: 38px;
    }

    .nav {
        gap: 8px;
    }

    .nav a {
        font-size: 14px;
    }

    .stats {
        flex-direction: column;
    }
}

