/* ===== Contact Modal ===== */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    pointer-events: all;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl, 24px);
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    text-align: center;
}

.contact-modal.active .contact-modal-content {
    transform: scale(1) translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.05);
    border: none;
    font-size: 24px;
    line-height: 1;
    color: var(--color-text-primary, #0f172a);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.contact-modal-close:hover {
    background: rgba(15, 23, 42, 0.1);
}

.contact-modal-header {
    margin-bottom: 24px;
}

.contact-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary, #0f172a);
    margin-bottom: 8px;
}

.contact-modal-header p {
    color: var(--color-text-light, #7d8390);
    font-size: 15px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-option-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md, 12px);
    background: rgba(15, 23, 42, 0.05);
    text-decoration: none;
    color: var(--color-text-primary, #0f172a);
    transition: all 0.2s;
    border: 1px solid transparent;
}

.contact-option-btn:hover {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.co-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 600;
    font-size: 16px;
}

.co-text small {
    font-weight: 400;
    font-size: 13px;
    color: var(--color-text-light, #7d8390);
    margin-top: 2px;
    transition: color 0.2s;
}

.contact-option-btn.whatsapp-btn {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-option-btn.whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-option-btn.whatsapp-btn:hover .co-text small {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Video Modal ===== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.05);
    border: none;
    font-size: 24px;
    line-height: 1;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.video-modal-close:hover {
    background: rgba(15, 23, 42, 0.1);
}

.video-modal-header {
    margin-bottom: 24px;
    text-align: center;
}

.video-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.video-modal-header p {
    color: var(--color-text-light);
    font-size: 15px;
}

.video-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.video-tab {
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid transparent;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-tab:hover {
    background: rgba(15, 23, 42, 0.1);
}

.video-tab.active {
    background: var(--color-text-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.video-player-container {
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-player-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}