﻿/* MINIMAL FIXES TO PREVENT CUT-OFFS (non-invasive) */
*, *::before, *::after {
    box-sizing: border-box;
}

img, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --bg: #060606;
    --card: #0f0f10;
    --gold: #D4AF37; /* true gold */
    --muted: #cfcfcf;
    --radius: 14px;
    --max-width: 1200px;
    --ease: cubic-bezier(.2,.9,.25,1);
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

html, body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: #fff;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.wrap {
    width: 100%;
    max-width: var(--max-width);
    margin: 28px auto;
    padding: 0 20px 60px 20px;
}

h1 {
    color: var(--gold);
    margin: 6px 0 8px;
    font-size: 36px;
    word-break: break-word;
}

h2 {
    color: var(--gold);
    margin: 20px 0 12px;
    font-size: 24px;
    word-break: break-word;
}

p.lead {
    color: var(--muted);
    margin: 0 0 14px;
    line-height: 1.6;
    font-size: 16px
}

/* HERO */
.hero {
    position: relative;
    padding: 36px;
    border-radius: 14px;
    text-align: center;
    display: flex;
    gap: 18px;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 14px;
        background: url("https://i.postimg.cc/fyMkgfBS/image004.jpg/1600x600") center/cover no-repeat;
        transform: scale(1.02);
        filter: brightness(0.25) saturate(0.95) contrast(0.94);
        z-index: 0;
    }

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero p {
    color: var(--muted);
    font-size: 17px;
    opacity: 1;
}

.hero-cta {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center
}

/* WHY CHOOSE */
.why {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 14px;
    margin-top: 28px
}

.why-card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    text-align: center
}

    .why-card p {
        color: var(--muted);
        margin: 8px 0 0
    }

/* search + quick */
.top-tools {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 26px 0 18px;
    flex-wrap: wrap
}

.search {
    flex: 1;
    min-width: 220px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: #0b0b0b;
    color: var(--muted);
    font-size: 15px;
    max-width: 100%
}

.btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: transform 160ms ease;
    white-space: nowrap
}

    .btn:hover {
        transform: translateY(-2px)
    }

.btn-gold {
    background: var(--gold);
    color: #0b0b0b
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--muted)
}

/* ACCORDION */
.accordion {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
    max-width: 100%
}

.category {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.02));
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    overflow: hidden
}

.cat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer
}

    .cat-head h3 {
        margin: 0;
        color: var(--gold);
        font-size: 18px
    }

    .cat-head p {
        margin: 0;
        color: var(--muted);
        font-size: 13px
    }

.cat-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 420ms var(--ease);
    padding: 0 16px
}

    .cat-body.open {
        padding: 12px 16px 16px 16px
    }

/* services */
.svc-list {
    display: grid;
    gap: 8px
}

.svc-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    gap: 12px;
    flex-wrap: wrap
}

.svc-left {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex: 1;
    min-width: 0
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px
}

.svc-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0
}

.svc-title {
    font-weight: 800;
    word-break: break-word
}

.svc-descCollapsed {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35
}

.svc-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    flex-shrink: 0
}

.info-desc {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    background: rgba(255,255,255,0.01);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03)
}

    .info-desc p {
        margin: 0;
        font-size: 14px;
        line-height: 1.4
    }

/* Educational blocks */
.edu-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 18px;
    margin: 26px 0
}

.edu-card {
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--card);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    flex-wrap: wrap
}

.edu-img {
    width: 220px;
    height: 140px;
    border-radius: 12px;
    background: linear-gradient(180deg,#141414,#0b0b0b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.06);
    font-weight: 700;
    flex-shrink: 0
}

/* Testimonials */
.test-wrap {
    margin-top: 28px;
    border-radius: 12px;
    overflow: hidden
}

.test-slider {
    display: flex;
    transition: transform 900ms var(--ease);
    gap: 12px
}

.test-card {
    min-width: 100%;
    background: var(--card);
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04)
}

.stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 8px
}

.test-quote {
    color: var(--muted)
}

/* CTA strip */
.cta-strip {
    margin-top: 30px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(212,175,55,0.06), rgba(0,0,0,0.02));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

    .cta-strip h3 {
        margin: 0;
        color: var(--gold)
    }

@media (max-width:980px) {
    .edu-card {
        flex-direction: column
    }

    .edu-img {
        width: 100%;
        height: 180px
    }

    .svc-actions {
        align-items: flex-start;
        flex-direction: row
    }

    .svc-row {
        flex-direction: column;
        align-items: stretch
    }
}
