/* =============== CSS CUSTOM PROPERTIES ============= */
:root {
    --black: #000000;
    --black-soft: #1a1a1a;
    --gold: #d2b77b;
    --white: #ffffff;

    --gray-light: #f8f8f8;
    --gray-border: #ececec;
    --gray-text: #5a5a5a;
    --gray-muted: #b8b8b8;

    --orbit-radius: 170px;
    --orbit-size: 450px;
}

/* =========== SERVICES HERO SECTION ================= */
.services-hero {
    padding: 5px 0;
    color: var(--black);
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

.services-title span {
    color: var(--gold);
}

.services-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
    max-width: 500px;
}

/* ── Orbit ── */
.orbit {
    position: relative;
    width: var(--orbit-size);
    height: var(--orbit-size);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-hub {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 70%, #d2b77b 100%);
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(210, 183, 123, 0.25);
}

.orbit-item {
    position: absolute;
    width: 65px;
    height: 65px;
    transition: all 0.3s ease;
}

.hub-logo {
    width: 205px;
    height: 500px;
    object-fit: contain;
}

.icon-circle {
    width: 100%;
    height: 100%;
    background: #d2b77b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 183, 123, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.icon-circle i {
    font-size: 1.4rem;
    color: var(--black);
}

/* 7-item orbit positions */
.item-1 { transform: rotate(0deg)      translate(var(--orbit-radius)) rotate(0deg); }
.item-2 { transform: rotate(51.43deg)  translate(var(--orbit-radius)) rotate(-51.43deg); }
.item-3 { transform: rotate(102.86deg) translate(var(--orbit-radius)) rotate(-102.86deg); }
.item-4 { transform: rotate(154.29deg) translate(var(--orbit-radius)) rotate(-154.29deg); }
.item-5 { transform: rotate(205.71deg) translate(var(--orbit-radius)) rotate(-205.71deg); }
.item-6 { transform: rotate(257.14deg) translate(var(--orbit-radius)) rotate(-257.14deg); }
.item-7 { transform: rotate(308.57deg) translate(var(--orbit-radius)) rotate(-308.57deg); }

/* ================== WHAT WE DO SECTION ===================== */
.what-we-do {
    padding: 10px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}

/* ── Service Cards ── */
.service-card {
    height: 100%;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(210, 183, 123, 0.15);
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.service-icon i {
    font-size: 28px;
    color: #d2b77b;
}

.service-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-muted);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    background: #d2b77b;
    transform: rotate(-3deg) scale(1.05);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #000000;
}

/* ================= WHY ORGVEIN ================= */

.why-orgvein {
    padding: 8px 0;
    background: #fff;
}

.why-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.why-subtitle {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.why-card {
    background: #fff;
    border: 1px solid #ece4d2;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(210, 183, 123, 0.18);
    border-color: #d2b77b;
}

.why-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 18px;

    /* GOLD + BLACK */
    background: linear-gradient(135deg, #000000, #d2b77b);

    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    color: #fff;
    font-size: 28px;
}

.why-card h6 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.5;
}

/* subtle gold top border */
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: #d2b77b;
    border-radius: 50px;
}

/* Required for ::before */
.why-card {
    position: relative;
    overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {

    .why-orgvein {
        padding: 60px 0;
    }

    .why-title {
        font-size: 34px;
    }

    .why-card {
        padding: 28px 16px;
    }

    .why-icon {
        width: 58px;
        height: 58px;
    }

    .why-icon i {
        font-size: 24px;
    }

    .why-card h6 {
        font-size: 15px;
    }
}

/*========== CTA =========*/

.cta-text {
    font-size: 18px;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.services-cta .btn {
    padding: 10px 24px;
    font-size: 14px;
    background: var(--black);
    color: var(--white);
    border: none;
    transition: all 0.3s ease;
}

.services-cta .btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* =================== RESPONSIVE ======================== */
@media (max-width: 992px) {
    :root {
        --orbit-radius: 150px;
        --orbit-size: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --orbit-radius: 130px;
        --orbit-size: 350px;
    }

    .services-hero {
        padding: 60px 0;
    }

    .services-title,
    .services-subtitle {
        text-align: center;
    }

    .services-title {
        font-size: 32px;
    }

    .services-subtitle {
        margin: 0 auto 30px;
    }

    .main-hub {
        width: 100px;
        height: 100px;
    }

    .orbit-item {
        width: 55px;
        height: 55px;
    }

    .icon-circle i {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    :root {
        --orbit-radius: 110px;
        --orbit-size: 300px;
    }

    .services-title {
        font-size: 28px;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .main-hub {
        width: 80px;
        height: 80px;
    }

    .orbit-item {
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }
}