@import url('./variable.css');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}
a{
    text-decoration:none !important;
}
img {
    display: block;
    max-width: 100%;
}

/* ── HERO ── */
.about-hero {
    background: var(--maroon);
    padding: 80px 5% 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.07) 0%, transparent 40%);
}

.about-hero-tag {
    margin-top: 20px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    position: relative;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 38px, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    /* margin-bottom: 1rem; */
    position: relative;
}

.about-hero h1 span {
    color: var(--gold);
}

.section-tag {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--maroon);
    font-weight: 500;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--maroon);
}

.section-desc {
    font-size: 14.5px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.75;
}

.divider {
    width: 44px;
    height: 3px;
    background: var(--maroon);
    border-radius: 2px;
    margin: 16px 0 24px;
}

/* ── ABOUT TACTCLUB ── */
.about-grid {
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-visual {

    background: var(--maroon-pale);
    border-radius: 16px;
    padding: 40px 20px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* .about-visual::after {
    content: 'T';
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 160px;
    font-weight: 700;
    color: rgba(124, 28, 46, 0.06);
    line-height: 1;
} */

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.badge {
    background: var(--maroon-tint);
    color: var(--maroon-deep);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
}

.about-text p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 4px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ── MISSION VISION ── */
.mv-section {
    padding: 40px 30px;
    background: var(--maroon-pale);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.mv-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--maroon);
    border-radius: 4px 0 0 4px;
}

.mv-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--maroon-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mv-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--maroon);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.mv-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
}

/* ── VALUES ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
}

.value-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.value-card:hover {
    border-color: var(--maroon);
    box-shadow: 0 4px 20px rgba(124, 28, 46, 0.08);
}

.value-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--maroon-tint);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.value-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.value-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── SERVICES ── */
.services-section {
    padding: 25px 20px;
    background: var(--maroon);
}

.services-section .section-title {
    color: #fff;
}

.services-section .section-title span {
    color: var(--gold);
}

.services-section .section-tag {
    color: rgba(255, 255, 255, 0.6);
}

.services-section .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

.services-section .divider {
    background: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1rem;
    transition: background .2s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h4 {
    font-size: 13.5px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ── TEAM ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
}

.team-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color .2s;
}

.team-card:hover {
    border-color: var(--maroon);
}

.team-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--maroon-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maroon);
    margin: 0 auto 0.75rem;
}

.team-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 3px;
}

.team-card p {
    font-size: 12px;
    color: var(--muted);
}

/* CORE-VALUE */
.about-core-values {
    padding: 40px 30px;
}

/* ── WHY CHOOSE US ── */
.why-section {
    background: var(--maroon-pale);
}

.why-grid {
    padding: 25px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--maroon);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 3px;
}

.why-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.why-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.why-box-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--maroon);
}

.why-box-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.4;
}

.about-leader-tem {
    padding: 25px 20px;
}

/* ── CTA ── */
.cta-section {
    background: var(--maroon-deep);
    text-align: center;
    padding: 40px 3%;
    margin-bottom: 125px;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section h2 span {
    color: var(--gold);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.5px;
    max-width: 460px;
    margin: 0 auto 2rem;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--maroon);
    border: none;
    border-radius: 8px;
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

/* add-new */
.tact-footer {
    overflow: hidden;
}

.tact-contact {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.about-visual-text {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    position: relative;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
/* ── RESPONSIVE ── */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 14px auto 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin: 16px auto 0;
    }

    .about-grid {
        padding: 20px 20px;
        gap: 26px;
    }

    .about-text p {
        font-size: 13.5px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 0px;
    }

    .about-visual {
        padding: 20px 16px;
    }

    .badge-row {
        margin-bottom: 16px;
    }

    .stat-num {
        font-size: 28px;
    }

    .mv-section {
        padding: 20px 20px;
    }

    .mv-card {
        padding: 12px 18px;
    }

    .mv-grid {
        gap: 16px;
        margin: 10px auto 0;
    }

    .mv-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .section-tag {
        margin-bottom: 4px;
    }

    .divider {
        margin: 10px 0 14px;
    }

    .mv-icon svg {
        width: 20px;
        height: 20px;
    }

    .mv-card p {
        font-size: 12.5px;
        margin-bottom: 10px;
    }

    .services-section {
        padding: 20px 20px;
    }

    .section-desc {
        font-size: 12.5px;
    }

    .service-card p {
        margin-bottom: 0px;
    }

    .service-card {
        padding: 14px 16px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .about-core-values {
        padding: 20px 20px;
    }

    .value-card {
        padding: 14px 16px;
    }

    .value-card p {
        font-size: 12px;
    }

    .value-num {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .why-grid {
        padding: 20px 20px;
        gap: 24px;
    }

    .why-box-num {
        font-size: 24px;
    }

    .about-leader-tem {
        padding: 20px 20px;
    }

    .team-card {
        padding: 14px 12px;
    }

    .team-card p {
        margin-bottom: 10px;
    }

    .cta-section {
        padding: 20px 20px;
        margin-bottom: 110px;
    }

    .why-dot {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-top: 2px;
    }

    .cta-section h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .btn-white {
        height: 38px;
        padding: 0 16px;
        font-size: 13px;
    }

    .btn-ghost {
        height: 38px;
        padding: 0 16px;
        font-size: 13px;
    }

    .team-avatar {
        font-size: 18px;
        margin: 0 auto 10px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        gap: 12px;
        margin: 14px auto 0;
    }

    .team-grid {
        /* grid-template-columns: repeat(2, 1fr); */

    }

    .values-grid {
        gap: 10px;
        margin: 10px auto 0;
    }

    section {
        /* padding: 52px 4%; */
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero {
        padding: 56px 4% 20px;
    }

    .about-hero-tag {
        margin-top: 12px;
        padding: 4px 12px;
        font-size: 10px;
        margin-bottom: 4px;
    }

    .about-grid {
        padding: 15px 15px;
        gap: 20px;
    }

    .about-text p {
        font-size: 11.5px;
        margin-bottom: 0px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .about-visual {
        padding: 18px 6px;
    }

    .badge-row {
        margin-bottom: 10px;
    }

    .badge {
        padding: 4px 4px;
        font-size: 11px;
    }

    .stat-row {
        gap: 10px;
        margin-top: 16px;
    }

    .about-visual-text {
        font-size: 11.5px;
    }

    .stat-box {
        padding: 10px 14px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-num {
        font-size: 24px;
    }

    .divider {
        margin: 6px 0 8px;
    }

    .mv-section {
        padding: 15px 15px;
    }

    .mv-card {
        padding: 10px 12px;
    }

    .mv-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .mv-icon svg {
        width: 18px;
        height: 18px;
    }

    .mv-grid {
        gap: 10px;
    }

    .mv-card h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .mv-card p {
        font-size: 11.5px;
        margin-bottom: 8px;
    }

    .services-section {
        padding: 15px 15px;
    }

    .service-card {
        padding: 10px 14px;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 11.5px;
    }

    .about-core-values {
        padding: 15px 15px;
    }

    .value-card {
        padding: 10px 14px;
    }

    .value-num {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .value-card p {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .value-card h4 {
        font-size: 13px;
    }

    .why-grid {
        padding: 15px 15px;
        gap: 14px;
    }

    .why-box {
        padding: 10px 10px;
    }

    .why-box-label {
        font-size: 11px;
        margin-top: 0px;
    }

    .why-box-num {
        font-size: 22px;
    }

    .why-dot {
        width: 28px;
        height: 28px;
    }

    .why-item h4 {
        font-size: 13px;
    }

    .why-item p {
        font-size: 11px;
    }

    .about-leader-tem {
        padding: 15px 15px;
    }

    .team-card {
        padding: 10px 10px;
    }

    .team-card h4 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .team-card p {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .cta-section {
        padding: 15px 15px;
        margin-bottom: 90px;
    }

    .cta-section h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .cta-section p {
        font-size: 11px;
        margin: 0 auto 20px;
    }

    .btn-white {
        height: 36px;
        padding: 0 14px;
        font-size: 12px;
    }

    .btn-ghost {
        height: 36px;
        padding: 0 14px;
        font-size: 12px;
    }

    .section-desc {
        font-size: 11px;
    }

    .team-avatar {
        font-size: 16px;
        margin: 0 auto 9px;
    }

}

@media (max-width: 576px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }

    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-hero-tag {
        margin-top: 8px;
        padding: 4px 10px;
        font-size: 9px;
        margin-bottom: 4px;
    }

    .about-hero h1 {
        font-size: 24px;
    }

    .about-visual {
        padding: 10px 6px;
    }

    .about-visual-text {
        font-size: 10px;
    }

    .stat-box {
        padding: 6px 8px;
    }

    .stat-num {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    .about-visual-text {
        margin-bottom: 0px;
    }

    .about-text p {
        font-size: 10px;
    }

    .section-title {
        font-size: 16px;
    }

    .divider {
        height: 2px;
    }

    .mv-section {
        padding: 12px;

    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-tag {
        margin-bottom: 0px;
    }

    .mv-card {
        padding: 8px 8px;
    }

    .mv-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }

    .mv-icon svg {
        width: 16px;
        height: 16px;
    }

    .mv-card h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .mv-card p {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .services-section {
        padding: 12px;
    }

    .section-desc {
        font-size: 10px;
    }

    .service-card {
        padding: 8px 10px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-card h4 {
        font-size: 12.5px;
    }

    .service-card p {
        font-size: 10px;
    }

    .about-core-values {
        padding: 12px;
    }

    .value-card {
        padding: 8px 8px;
    }

    .value-num {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .value-card h4 {
        font-size: 12px;
    }

    .value-card p {
        margin-bottom: 2px;
        font-size: 10px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 12px;
    }

    .about-leader-tem {
        padding: 12px;
    }

    .why-visual {
        gap: 8px;
    }

    .why-box-num {
        font-size: 20px;
    }

    .team-avatar {
        font-size: 14px;
        margin: 0 auto 8px;
    }

    .cta-section {
        padding: 12px;
        margin-bottom: 85px;
    }

    .cta-section h2 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .cta-section p {
        font-size: 10px;
        margin: 0 auto 14px;
    }

    .btn-white {
        height: 32px;
        padding: 0 10px;
        font-size: 10px;
    }

    .btn-ghost {
        height: 32px;
        padding: 0 10px;
        font-size: 10px;
    }
    .team-card{
        padding: 6px 6px;
    }
}