/* ----------------------------------------------------
   VISION & MISSION
---------------------------------------------------- */

.vm-section {
    background: #0A0A0A;
    padding: 140px 0;
    overflow: hidden;
}

.vm-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}


.vm-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 320px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #1F1F1F;
    background: #0F0F0F;
}


.vm-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.9;
}


.vm-bg-vision {
    background: linear-gradient(
        135deg,
        rgba(192,192,192,0.15),
        rgba(0,0,0,0.85) 60%
    );
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
}


.vm-bg-mission {
    background: linear-gradient(
        225deg,
        rgba(192,192,192,0.15),
        rgba(0,0,0,0.85) 60%
    );
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}


.vm-content {
    position: relative;
    z-index: 3;
    max-width: 520px;
    padding: 60px;
}


.vm-left {
    justify-content: flex-start;
}

.vm-right {
    justify-content: flex-end;
    text-align: right;
}

.vm-right .vm-content {
    margin-left: auto;
}


.vm-tag {
    font-size: 14px;
    letter-spacing: 2px;
    color: #C0C0C0;
    text-transform: uppercase;
}

.vm-title {
    margin-top: 12px;
    font-size: 34px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.vm-title strong {
    color: #C0C0C0;
}

.vm-text {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.7;
    color: #B5B5B5;
}


.vm-card:hover {
    border-color: rgba(192,192,192,0.4);
}

/* Icons */
.vm-big-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}


.vm-icon-right {
    right: 80px;
}

.vm-icon-left {
    left: 80px;
}

.vm-big-icon i {
    font-size: 180px;
    color: rgba(220, 220, 220, 0.22);
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.08));
    transition: 0.4s ease;
}


.vm-card:hover .vm-big-icon i {
    color: rgba(220, 220, 220, 0.30);
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .vm-section {
        padding: 80px 0;
    }

    .vm-container {
        gap: 40px;
        padding: 0 30px;
    }

    .vm-card {
        flex-direction: column;
        text-align: left;
        min-height: auto;
    }

    .vm-right {
        text-align: left;
    }

    .vm-bg-vision,
    .vm-bg-mission {
        clip-path: none;
    }

    .vm-content {
        padding: 35px 30px;
        max-width: 100%;
    }

    .vm-big-icon {
        display: none;
    }

    .vm-card {
        text-align: left;
    }

    .vm-right .vm-content {
        margin-left: 0;
        text-align: left;
    }
    .vm-title {
        font-size: 28px;
    }

    .vm-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .vm-section {
        padding: 60px 0;
    }

    .vm-container {
        gap: 30px;
        padding: 0 20px;
    }

    .vm-card {
        border-radius: 14px;
    }

    .vm-content {
        padding: 30px 25px;
    }
    .vm-tag {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .vm-title {
        font-size: 24px;
        margin-top: 10px;
    }

    .vm-text {
        font-size: 15px;
        margin-top: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 600px) {
    .vm-section {
        padding: 50px 0;
    }

    .vm-container {
        gap: 25px;
        padding: 0 20px;
    }

    .vm-content {
        padding: 25px 20px;
    }

    .vm-title {
        font-size: 22px;
    }

    .vm-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .vm-title {
        font-size: 20px;
    }

    .vm-content {
        padding: 20px;
    }
}


/* ----------------------------------------------------
   OUR TEAM
---------------------------------------------------- */

.team-section {
    background: #F8F8F8;
    padding: 140px 0;
}

.team-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
}


.team-header {
    text-align: center;
    margin-bottom: 70px;
}

.team-tag {
    color: #666666;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.team-title {
    margin-top: 15px;
    font-size: 44px;
    font-weight: 700;
    color: #1A1A1A;
}

.team-title strong {
    color: #666666;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}


.team-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Expand hover area to prevent toggle glitch */
.team-card::before {
    content: '';
    position: absolute;
    inset: -10px;
    z-index: -1;
    pointer-events: auto;
}


.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 3.5;
    background: #2A2A2A;
}


.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0) 70%,
        rgba(0,0,0,0) 100%
    );
    opacity: 1;
    transition: background 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                backdrop-filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(0px);
}


.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px 10px 30px;
    text-align: center;
    background: transparent;
    transition: bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                padding 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-info h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 
                 0 4px 20px rgba(0,0,0,0.8),
                 0 0 40px rgba(0,0,0,0.6);
}

.team-info span {
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9), 
                 0 3px 16px rgba(0,0,0,0.8),
                 0 0 30px rgba(0,0,0,0.6);
}

.team-profile {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 18px;
    padding: 20px 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
                max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.team-card:hover img {
    filter: brightness(1.05);
    transform: scale(1.08);
}

.team-card:hover .team-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.75) 60%,
        rgba(0,0,0,0.3)
    );
    backdrop-filter: blur(8px);
}

.team-card:hover .team-info {
    bottom: 10px;
}

.team-card:hover .team-profile {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
}

/* Card Hover Lift */
.team-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0.25);
}

/* Mobile Info Section (hidden on desktop) */
.team-info-mobile {
    display: none;
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }

    .team-container {
        padding: 0 20px;
    }

    .team-header {
        margin-bottom: 50px;
    }

    .team-tag {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .team-title {
        font-size: 32px;
        margin-top: 12px;
    }

    .team-grid {
        gap: 40px;
    }

    .team-card {
        border-radius: 14px;
        display: flex;
        flex-direction: column;
    }

    /* Hide hover overlay on mobile */
    .team-overlay {
        display: none;
    }

    .team-image {
        aspect-ratio: 3 / 3.2;
    }

    /* Show mobile info section */
    .team-info-mobile {
        display: block;
        padding: 25px;
        background: #FFFFFF;
        text-align: left;
    }

    .team-info-mobile h3 {
        color: #1A1A1A;
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .team-info-mobile span {
        color: #666666;
        font-size: 13px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        font-weight: 600;
        display: block;
        margin-bottom: 15px;
    }

    .team-info-mobile p {
        color: #4A4A4A;
        font-size: 14px;
        line-height: 1.7;
        padding-top: 15px;
        border-top: 1px solid #E5E5E5;
    }

    /* Remove hover effects on mobile */
    .team-card:hover {
        transform: none;
        box-shadow: none;
    }

    .team-card:hover img {
        transform: none;
        filter: none;
    }
}

@media (max-width: 600px) {
    .team-section {
        padding: 60px 0;
    }

    .team-container {
        padding: 0 20px;
    }

    .team-header {
        margin-bottom: 40px;
    }

    .team-title {
        font-size: 26px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .team-image {
        aspect-ratio: 1 / 1;
    }

    .team-info-mobile {
        padding: 20px;
    }

    .team-info-mobile h3 {
        font-size: 17px;
    }

    .team-info-mobile span {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .team-info-mobile p {
        font-size: 13px;
        line-height: 1.65;
        padding-top: 12px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 50px 0;
    }

    .team-title {
        font-size: 22px;
    }

    .team-card {
        border-radius: 12px;
    }

    .team-grid {
        gap: 30px;
    }

    .team-info-mobile {
        padding: 18px;
    }

    .team-info-mobile h3 {
        font-size: 16px;
    }

    .team-info-mobile span {
        font-size: 11px;
    }

    .team-info-mobile p {
        font-size: 13px;
    }
}


/* ----------------------------------------------------
   WHAT SETS US APART
---------------------------------------------------- */

.apart-section {
    background: #0B0B0B;
    padding: 140px 0;
}

.apart-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
}


.apart-header {
    max-width: 700px;
    margin-bottom: 80px;
}

.apart-tag {
    color: #C0C0C0;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.apart-title {
    margin-top: 15px;
    font-size: 44px;
    font-weight: 700;
    color: #FFFFFF;
}

.apart-title strong {
    color: #C0C0C0;
}

.apart-subtitle {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.7;
    color: #9E9E9E;
}


.apart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}


.apart-card {
    background: #111;
    padding: 40px 35px;
    border-radius: 14px;
    border: 1px solid #1F1F1F;
    transition: 0.35s ease;
}

.apart-card h3 {
    margin-top: 22px;
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
}

.apart-card p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #AAAAAA;
}


.apart-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(192,192,192,0.15);
    border: 1px solid rgba(192,192,192,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.apart-icon i {
    font-size: 22px;
    color: #C0C0C0;
}

.apart-card:hover {
    background: #C0C0C0;
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(192,192,192,0.25);
    border-color: #C0C0C0;
}

.apart-card:hover h3,
.apart-card:hover p {
    color: #000;
}

.apart-card:hover .apart-icon {
    background: #000;
    border-color: #000;
}

.apart-card:hover .apart-icon i {
    color: #C0C0C0;
}

@media (max-width: 991px) {
    .apart-section {
        padding: 80px 0;
    }

    .apart-container {
        padding: 0 30px;
    }

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

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

    .apart-subtitle {
        font-size: 17px;
    }

    .apart-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .apart-section {
        padding: 60px 0;
    }

    .apart-container {
        padding: 0 20px;
    }

    .apart-header {
        margin-bottom: 50px;
    }

    .apart-tag {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .apart-title {
        font-size: 28px;
        margin-top: 12px;
    }

    .apart-subtitle {
        font-size: 16px;
        margin-top: 15px;
    }

    .apart-grid {
        gap: 25px;
    }

    .apart-card {
        padding: 30px 28px;
        border-radius: 12px;
    }

    .apart-card h3 {
        margin-top: 18px;
        font-size: 20px;
    }

    .apart-card p {
        font-size: 15px;
    }

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

    .apart-icon i {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .apart-section {
        padding: 50px 0;
    }

    .apart-header {
        margin-bottom: 40px;
    }

    .apart-title {
        font-size: 24px;
    }

    .apart-subtitle {
        font-size: 15px;
    }

    .apart-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .apart-card {
        padding: 25px;
    }

    .apart-card h3 {
        font-size: 18px;
        margin-top: 15px;
    }

    .apart-card p {
        font-size: 14px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .apart-title {
        font-size: 22px;
    }

    .apart-card {
        padding: 20px;
    }

    .apart-icon {
        width: 45px;
        height: 45px;
    }

    .apart-icon i {
        font-size: 18px;
    }
}


/* ----------------------------------------------------
   CTA SECTION
---------------------------------------------------- */

.cta-light-section {
    background: #F3F3F3;
    padding: 140px 20px;
    text-align: center;
}

.cta-light-container {
    max-width: 900px;
    margin: auto;
}


.cta-light-tag {
    display: inline-block;
    color: #666;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-light-title {
    font-size: 44px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.cta-light-title strong {
    color: #000;
}

.cta-light-text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-light-btn {
    display: inline-block;
    margin-top: 40px;
    background: #000;
    color: #FFF;
    padding: 18px 44px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-light-btn:hover {
    background: linear-gradient(to bottom, #CFCFCF, #BDBDBD);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
    .cta-light-section {
        padding: 80px 30px;
    }

    .cta-light-title {
        font-size: 32px;
    }

    .cta-light-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .cta-light-section {
        padding: 60px 20px;
    }

    .cta-light-tag {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .cta-light-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-light-text {
        font-size: 16px;
        margin-top: 18px;
    }

    .cta-light-btn {
        margin-top: 35px;
        padding: 16px 36px;
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .cta-light-section {
        padding: 50px 20px;
    }

    .cta-light-title {
        font-size: 24px;
    }

    .cta-light-text {
        font-size: 15px;
        margin-top: 15px;
    }

    .cta-light-btn {
        width: 100%;
        max-width: 320px;
        padding: 15px;
        font-size: 16px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .cta-light-title {
        font-size: 22px;
    }

    .cta-light-text {
        font-size: 14px;
    }

    .cta-light-btn {
        max-width: 100%;
        padding: 14px;
        font-size: 15px;
    }
}
