/* OrgVein custom styles — Bootstrap handles the rest */

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ====== ROOT VARIABLES ========= */
:root {
    --orgvein-green: #1a6b4a;
    --green-dark: #0f2318;
    --green-mid: #1a6b4a;
    --green-light: #d4c89a;
}

* {
    font-family: 'Montserrat', sans-serif !important;
}

/* ======= HERO ======= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to bottom,
        #000000 100%,
        #000000 100%,
        #ffffff 100%
    );
    overflow: hidden;
    margin-bottom: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, #00000 0%, #00000 70%);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    animation: heroFadeUp 0.9s ease both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow */
.hero-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-eyebrow-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d4c89a;
}

.hero-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d4c89a;
    opacity: 0.6;
    display: inline-block;
}

/* H1 */
.hero-h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.hero-h1-outline {
    -webkit-text-stroke: 2px #d4c89a;
    color: transparent;
    font-style: italic;
}

/* Tagline */
.hero-tagline {
    font-size: 1.05rem;
    font-style: italic;
    color: #d4c89a;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Divider */
.hero-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    width: 200px;
}

.hero-divider span {
    flex: 1;
    height: 1px;
    background: rgba(212,200,154,0.3);
}

.hero-divider i {
    font-size: 0.5rem;
    color: #d4c89a;
    opacity: 0.7;
}

/* Sub */
.hero-sub {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    max-width: 620px;
    margin-bottom: 2.2rem;
}

/* CTA Row */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-cta-main {
    display: inline-flex;
    align-items: center;
    background: #d4c89a;
    color: #0f2318;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.hero-cta-main:hover {
    background: #e2d8ae;
    color: #0f2318;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-h1 { font-size: 2.4rem; }
    .hero-stat-sep { display: none; }
    .hero-stat-strip { gap: 1.2rem; padding: 1rem 1.5rem; }
    .hero-cta-row { flex-direction: column; gap: 1rem; }
}

/* ===== About Stats ======== */
.about-section {
    position: relative;
    background: #ffffff;
    width: 100%;
    margin: 0;
    margin-top: -2px;
    padding-top: 5rem;
    overflow: hidden;
}
.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .row {
    position: relative;
    z-index: 1;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.about-more-btn {
    background: #000000;
    color: #fff;
    font-weight: 600;
    padding: .6rem 1.5rem;
    border-radius: 6px;
    transition: background .2s;
}
.about-section .row {
    position: relative;
    z-index: 1;
}
.about-more-btn:hover { background: #00000; color: #fff; }
.about-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.9s ease;
    object-fit: cover;
}

.about-img:hover {
    transform: scale(1.03);
}

.about-animate-left,
.about-animate-right {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
}

.about-animate-left {
    transform: translateX(-80px);
}

.about-animate-right {
    transform: translateX(80px);
    transition-delay: 0.1s;
}

.about-animate-left.is-visible,
.about-animate-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============ Mission & Vision ============ */
.mv-section {
    margin: 0 0 3rem 0;
}

.mv-card {
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 2.2rem 2rem;
    height: 100%;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}

/* Mission card — dark */
.col-md-6:first-child .mv-card {
    background: linear-gradient(145deg, #132D1F, #261e0d);
}

/* Vision card — light gold */
.col-md-6:last-child .mv-card {
    background: linear-gradient(145deg, #fdf8ee, #d2b77b);
    border: 1px solid #e2d09a;
}

/* Top bar */
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 16px 16px 0 0;
}

.col-md-6:first-child .mv-card::before {
    background: #d2b77b;
}

.col-md-6:last-child .mv-card::before {
    background: #261e0d;
}

.mv-card:hover {
    box-shadow: 0 10px 32px rgba(26, 107, 74, 0.15);
    transform: translateY(-3px);
}

/* Tag */
.mv-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1.1rem;
}

.col-md-6:first-child .mv-tag {
    color: #d4c89a;
    background: rgba(255, 255, 255, 0.12);
}

.col-md-6:last-child .mv-tag {
    color: #000000;
    background: rgba(26, 107, 74, 0.10);
}

/* Title */
.mv-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.col-md-6:first-child .mv-title { color: #fff; }
.col-md-6:last-child .mv-title  { color: #132D1F; }

/* Body */
.mv-body {
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.col-md-6:first-child .mv-body { color: #e8e8e8; }
.col-md-6:last-child .mv-body  { color: #5a4e35; }

.mv-body strong {
    font-weight: 700;
}

.col-md-6:first-child .mv-body strong { color: #00000; }
.col-md-6:last-child .mv-body strong  { color: #00000; }

/* Footer line */
.mv-footer-line {
    height: 1px;
    margin-top: auto;
}

.col-md-6:first-child .mv-footer-line {
    background: linear-gradient(to right, rgba(212,200,154,0.4), transparent);
}

.col-md-6:last-child .mv-footer-line {
    background: linear-gradient(to right, rgba(26,107,74,0.2), transparent);
}

/* ============ Service Cards =======*/
.card {
    background-color: #ebe0c6;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    background: linear-gradient(145deg, #fdf8ee, #d2b77b);
}

/* Icon circle */
.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #0d0d0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Icon inside */
.icon-wrapper i {
    color: #fff;
    font-size: 24px;
}

/* Text style */
.card p {
    color: #1b2a41;
    font-weight: 600;
    font-size: 1rem;
}

/* ======== methodology ========== */

.methodology-modern {
    position: relative;
    overflow: hidden;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.methodology-step:hover {
    background: #E1F5EE;
    transition: background 0.4s;
}

.methodology-step:hover {
    background: #E1F5EE;
    transition: background 0.2s;
}

@media (max-width: 768px) {
    .hero-title { font-size: 1.8rem; }
    .hero-section { min-height: 80vh; }
}

/* SLIDER TRACK */
.slider-track-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* CARDS */
.method-card {
    flex: 0 0 260px;
    height: 200px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    position: relative;
    overflow: hidden;
    opacity: 0.45;
    transform: scale(0.88);
    cursor: pointer;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.method-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 45, 31, 0.52);
    border-radius: 20px;
    z-index: 0;
    transition: background 0.6s;
}

.method-card.active {
    flex: 0 0 320px;
    height: 220px;
    opacity: 1;
    transform: scale(1);
}

.method-card.active::before {
    background: rgba(19, 45, 31, 0.62);
}

.method-card.near {
    opacity: 0.72;
    transform: scale(0.93);
}

.card-num {
    font-size: 0.85rem;
    color: #E9AE66;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-bottom: 4px;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
}

.card-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    margin-top: 6px;
    line-height: 1.45;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.method-card.active .card-desc {
    max-height: 60px;
    opacity: 1;
}

/* ───────── TESTIMONIAL SECTION ───────── */
.testimonial-section {
    background: #faf8f5;
}

/* Slider */
.testimonial-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Track */
.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: testimonialScroll 32s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* 3 cards visible */
.testimonial-slide {
    width: 320px;
    flex-shrink: 0;
}

/* Card */
.testimonial-card {
    background: #ebe0c6;
    border: 1px solid #e6dfd5;
    border-radius: 16px;
    padding: 1.3rem;
    position: relative;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s ease;
}

.testimonial-card:hover {
    height: auto;
    min-height: 230px;
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    background: #f1ead8;
    z-index: 20;
}

/* Quote */
.testimonial-quote {
    font-size: 2.2rem;
    line-height: 1;
    color: #d1c08c;
    margin-bottom: .5rem;
}

/* Text */
.testimonial-text {
    font-size: .92rem;
    line-height: 1.75;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease;
}

/* Show full message on hover */
.testimonial-card:hover .testimonial-text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #d2b77b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 700;
    color: #114232;
}

.author-name {
    font-size: .92rem;
    font-weight: 700;
    color: #114232;
}

.author-company {
    font-size: .78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* Infinite scroll */
@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

/* Tablet */
@media (max-width: 992px) {
    .testimonial-slide {
        width: 300px;
    }
}

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

    .testimonial-slide {
        width: 85vw;
    }

    .testimonial-card {
        min-height: 175px;
        max-height: 175px;
        padding: 1rem;
    }
}

/* ========= FAQ ============= */

.faq-section {
    padding-top: 40px;
    padding-bottom: 40px;
}
.faq-main-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
}

.faq-accordion { border-top: 1px solid #e0e0e0; }

.faq-item {
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    background: transparent;
}

.faq-btn {
    background: transparent !important;
    color: #1c1c1c !important;
    font-size: .95rem;
    font-weight: 500;
    padding: 1.25rem 0;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-btn::after { display: none; }

.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    flex-shrink: 0;
    transition: transform .3s;
}

.faq-btn:not(.collapsed) .faq-icon {
    transform: rotate(45deg);
    color: #00000;
}

.faq-answer {
    font-size: .9rem;
    color: #555;
    line-height: 1.7;
    padding: 0 0 1.25rem 0;
    background: transparent;
}

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

.cta-section {
    background: #f9fafb;
    padding: 50px 0;
}

/* LEFT SIDE */
.cta-section h2 {
    font-size: 2.2rem;
    color: #0a2a2a;
}

.cta-section p {
    font-size: 1rem;
    color: #6c757d;
}

.cta-btn {
    background: #e6a817;
    color: #0a2a2a;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #d49a14;
    transform: translateY(-2px);
}

/* RIGHT SIDE CARD */
.diagnosis-form-card {
    background: linear-gradient(145deg, #fdf8ee, #d2b77b);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-card-title {
    font-weight: 700;
    color: #0a2a2a;
}

.form-card-sub {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
}

/* FORM FIELDS */
.form-label-custom {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 5px;
    display: block;
}

.form-input-custom {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #e3e6ea;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    background: #fff;
    min-height: 44px;
}

/* Select */
.form-select-custom {
    appearance: none;
}

/* Focus effect */
.form-input-custom:focus {
    border-color: #e6a817;
    box-shadow: 0 0 0 2px rgba(230,168,23,0.15);
    outline: none;
}

/* SUBMIT BUTTON */
.form-submit-btn {
    background: #e5d5b3;
    color: #000000;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #e5d5b3;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .cta-section {
        text-align: center;
    }

    .cta-section .row {
        flex-direction: column;
    }

    .diagnosis-form-card {
        margin-top: 20px;
    }
}
/* CONTACT BLOCK */
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 15px;
}

.contact-icon.light {
    background: #f3f4f6;
    color: #c89b3c;
}

.contact-icon.dark {
    background: #0a2a2a;
    color: #fff;
}

/* PHONE CARDS */
.contact-card {
    background: #f8f9fa;
    border: 1px solid #e3e6ea;
    border-radius: 14px;
    padding: 10px 14px;
    margin-bottom: 10px;
    display: inline-block;
    min-width: 220px;
}

.contact-card small {
    display: block;
    font-size: 0.7rem;
    color: #8a94a6;
    letter-spacing: 0.08em;
}

.contact-card strong {
    font-size: 1.05rem;
    color: #0a2a2a;
}

/* EMAIL */
.contact-email {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a2a2a;
    line-height: 1.4;
}