/* Orion About Us Widget Styles - Standard CSS */

/* Full-bleed section that ignores page container constraints */
.orion-fullbleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* About Us Section Base */
.orion-about-us-section {
    position: relative;
    background-color: #ffffff;
    padding: 0;
    overflow: hidden;
    z-index: 20;
}

.orion-about-container {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.orion-about-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.orion-about-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    color: #000000;
    max-width: 45%;
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1023px) {
    .orion-about-title {
        font-size: 40px;
        margin-bottom: -65px;
    }
}

@media (max-width: 639px) {
    .orion-about-title {
        font-size: 32px;
        max-width: 100%;
        margin-bottom: 0;
    }
}

.orion-about-main-content {
    background: #ffffff;
    max-width: 76%;
    width: 100%;
    position: relative;
    padding: 145px 40px 48px 0;
    display: flex;
    align-items: center;
    gap: 80px;
}

@media (max-width: 1536px) {
    .orion-about-main-content {
        max-width: 89%;
        gap: 57px;
        padding: 85px 40px 40px 0;
    }
}

@media (max-width: 1279px) {
    .orion-about-main-content {
        max-width: 91%;
        gap: 40px;
        padding: 85px 40px 40px 0;
    }
}

@media (max-width: 767px) {
    .orion-about-main-content {
        flex-direction: column;
        gap: 20px;
        padding: 24px 0 32px 0;
        max-width: 100%;
    }
}

.orion-about-left {
    flex-shrink: 0;
}

.orion-video-thumbnail {
    position: relative;
    width: 340px;
    height: 300px;
}

@media (max-width: 1279px) {
    .orion-video-thumbnail {
        width: 310px;
    }
}

@media (max-width: 767px) {
    .orion-video-thumbnail {
        width: 100%;
        height: 300px;
    }
}

.orion-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.orion-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.orion-play-btn:hover {
    transform: scale(1.05);
}

.orion-play-icon {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #ffffff;
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 1279px) {
    .orion-play-icon {
        width: 70px;
        height: 70px;
    }
}

.orion-play-icon svg {
    width: 40px;
    height: 40px;
    margin-left: 3px;
}

@media (max-width: 1279px) {
    .orion-play-icon svg {
        width: 36px;
        height: 36px;
    }
}

.orion-about-right {
    flex: 1;
    padding: 10px 0;
    z-index: 2;
}

.orion-about-text {
    margin-bottom: 40px;
}

@media (max-width: 1536px) {
    .orion-about-text {
        margin-bottom: 32px;
    }
}

@media (max-width: 1279px) {
    .orion-about-text {
        margin-bottom: 24px;
    }
}

@media (max-width: 1023px) {
    .orion-about-text {
        margin-bottom: 24px;
    }
}

.orion-about-text p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.orion-about-text p:last-child {
    margin-bottom: 0;
}

.orion-about-text p span {
    font-weight: 500;
}

.orion-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 36px;
}

@media (max-width: 1536px) {
    .orion-about-actions {
        gap: 28px;
    }
}

@media (max-width: 1279px) {
    .orion-about-actions {
        gap: 24px;
    }
}

@media (max-width: 639px) {
    .orion-about-actions {
        gap: 16px;
    }
}

.orion-about-btn {
    display: inline-block;
    background-color: #186F65;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #186F65;
}

.orion-about-btn:hover {
    background-color: #ffffff;
    color: #186F65;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 111, 101, 0.3);
}

.orion-phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #186F65;
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 0;
}

@media (max-width: 639px) {
    .orion-phone-link {
        gap: 4px;
    }
}

.orion-phone-link:hover {
    color: #0f4a42;
    transform: translateY(-1px);
}

.orion-phone-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 1279px) {
    .orion-phone-link svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 639px) {
    .orion-phone-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Background Images */
.orion-bg-image-1 {
    position: absolute;
    top: 0;
    right: 56px;
    width: 40%;
    height: 100%;
    z-index: 1;
    display: none;
}

@media (min-width: 1024px) {
    .orion-bg-image-1 {
        display: block;
    }
}

.orion-bg-image-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    z-index: 1;
    display: none;
}

@media (min-width: 1536px) {
    .orion-bg-image-2 {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .orion-bg-image-2 {
        display: block;
    }
}

@media (max-width: 1023px) {
    .orion-bg-image-2 {
        position: relative;
        width: 100%;
        height: 400px;
        display: block;
    }
}

@media (max-width: 639px) {
    .orion-bg-image-2 {
        height: 300px;
    }
}

.orion-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Modal */
.orion-video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    transition: all 0.3s ease;
}

.orion-video-modal.active {
    display: flex;
}

.orion-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
}

.orion-modal-close {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.orion-modal-close:hover {
    transform: scale(1.1);
}

.orion-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
}

@media (max-width: 1279px) {
    .orion-video-wrapper {
        max-width: 890px;
    }
}

@media (max-width: 1023px) {
    .orion-video-wrapper {
        max-width: 750px;
    }
}

.orion-video-player {
    width: 100%;
    height: auto;
    border-radius: 8px;
    z-index: 50;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .orion-about-us-section {
        padding-bottom: 56px;
    }
}

@media (max-width: 639px) {
    .orion-about-us-section {
        padding-bottom: 40px;
    }
}

/* Animation */
.orion-about-us-section {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Focus states for accessibility */
.orion-play-btn:focus,
.orion-about-btn:focus,
.orion-phone-link:focus,
.orion-modal-close:focus {
    outline: 2px solid #186F65;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .orion-about-title,
    .orion-about-text p {
        color: #000000;
    }
    
    .orion-about-btn {
        border-color: #000000;
    }
    
    .orion-phone-link {
        color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .orion-about-us-section,
    .orion-play-btn,
    .orion-about-btn,
    .orion-phone-link,
    .orion-modal-close {
        animation: none;
        transition: none;
    }
}