/**
 * SEALS Project Single Widget Styles
 * Matches AEU Project structure
 */

/* Wrapper - Two Column Layout */
.seals-project-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Main Content */
.seals-project-content {
    flex: 1;
    min-width: 0;
}

/* Header */
.seals-project-header {
    margin-bottom: 30px;
}

.seals-project-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #ff8300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.seals-project-title {
    font-size: 36px;
    font-weight: 700;
    color: #2f3a3f;
    margin: 0;
    line-height: 1.2;
}

/* Gallery */
.seals-project-gallery {
    margin-bottom: 30px;
}

.seals-project-gallery-main {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f8f9fa;
}

.seals-project-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.seals-project-gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.seals-project-gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.seals-project-gallery-thumb:hover {
    opacity: 0.9;
}

.seals-project-gallery-thumb.active {
    opacity: 1;
    border-color: #ff8300;
}

.seals-project-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body Content */
.seals-project-body {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.seals-project-body h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2f3a3f;
    margin: 35px 0 15px 0;
}

.seals-project-body h2:first-child {
    margin-top: 0;
}

.seals-project-body p {
    margin-bottom: 15px;
}

.seals-project-body ul,
.seals-project-body ol {
    margin: 15px 0;
    padding-left: 25px;
}

.seals-project-body li {
    margin-bottom: 8px;
}

/* Navigation */
.seals-project-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    gap: 20px;
}

.seals-project-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 45%;
}

.seals-project-nav-prev {
    text-align: left;
}

.seals-project-nav-next {
    text-align: right;
    margin-left: auto;
    flex-direction: row;
    justify-content: flex-end;
}

.seals-project-nav-link:hover {
    background: #ff8300;
}

.seals-project-nav-link:hover .seals-project-nav-arrow,
.seals-project-nav-link:hover .seals-project-nav-label,
.seals-project-nav-link:hover .seals-project-nav-title {
    color: #fff;
}

.seals-project-nav-arrow {
    font-size: 18px;
    color: #ff8300;
    transition: color 0.3s ease;
}

.seals-project-nav-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.seals-project-nav-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.seals-project-nav-title {
    font-size: 15px;
    font-weight: 600;
    color: #2f3a3f;
    transition: color 0.3s ease;
}

/* Sidebar */
.seals-project-sidebar {
    width: 350px;
    min-width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-self: flex-start;
}

.seals-project-sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
}

.admin-bar .seals-project-sidebar-sticky {
    top: 152px;
}

/* Info Box */
.seals-project-info-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e9ecef;
}

.seals-project-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #2f3a3f;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff8300;
}

.seals-project-info-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.seals-project-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.seals-project-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.seals-project-info-item:first-child {
    padding-top: 0;
}

.seals-project-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff8300;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.seals-project-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seals-project-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    font-weight: 600;
}

.seals-project-info-value {
    font-size: 15px;
    color: #2f3a3f;
    font-weight: 500;
}

/* Live Button */
.seals-project-live-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    background: #ff8300;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.seals-project-live-btn:hover {
    background: #e67600;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 131, 0, 0.4);
}

/* Tech Box */
.seals-project-tech-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e9ecef;
}

.seals-project-tech-title {
    font-size: 16px;
    font-weight: 600;
    color: #2f3a3f;
    margin: 0 0 15px 0;
}

.seals-project-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seals-project-tech-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #ff8300;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.seals-project-tech-tag:hover {
    background: #e67600;
    transform: translateY(-2px);
}

/* =========================================
   Style 2 - Clean Lines
   ========================================= */

.seals-project-style_2 .seals-project-info-box-v2 {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e9ecef;
}

/* Title with bullet point */
.seals-project-info-title-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #2f3a3f;
    margin: 0 0 25px 0;
}

.seals-project-info-title-v2::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #ff8300;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Info Items - Clean style */
.seals-project-info-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.seals-project-info-item-v2 {
    padding: 20px 0;
    position: relative;
}

.seals-project-info-item-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff8300 0%, #ffc300 100%);
    border-radius: 2px;
}

.seals-project-info-item-v2:last-child::after {
    display: none;
}

.seals-project-info-item-v2:first-child {
    padding-top: 0;
}

.seals-project-info-label-v2 {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.seals-project-info-value-v2 {
    font-size: 16px;
    font-weight: 600;
    color: #2f3a3f;
    margin: 0;
    line-height: 1.5;
}

/* Social Share */
.seals-project-share {
    padding-top: 25px;
    margin-top: 10px;
}

.seals-project-share-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2f3a3f;
    margin-bottom: 15px;
}

.seals-project-share-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.seals-project-share-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2f3a3f;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.seals-project-share-icon:hover {
    background: #ff8300;
    color: #fff;
    transform: translateY(-3px);
}

/* CTA Button */
.seals-project-cta-btn {
    display: block;
    width: 100%;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.seals-project-cta-outline {
    background: transparent;
    border: 2px solid #ff8300;
    color: #ff8300;
}

.seals-project-cta-outline:hover {
    background: #ff8300;
    color: #fff;
}

.seals-project-cta-filled {
    background: #ff8300;
    border: 2px solid #ff8300;
    color: #fff;
}

.seals-project-cta-filled:hover {
    background: #e67600;
    border-color: #e67600;
    color: #fff;
}

/* Style 2 Mobile */
@media (max-width: 991px) {
    .seals-project-style_2 .seals-project-sidebar {
        flex-direction: column;
    }

    .seals-project-style_2 .seals-project-sidebar > * {
        flex: 1 1 100%;
    }
}

/* Fix Elementor container overflow for sticky */
.elementor-widget-seals_project_single,
.elementor-widget-seals_project_single > .elementor-widget-container {
    overflow: visible !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .seals-project-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .seals-project-sidebar {
        width: 100% !important;
        min-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        flex-direction: row;
        flex-wrap: wrap;
        order: -1;
    }

    .seals-project-sidebar > * {
        flex: 1 1 300px;
    }

    .seals-project-title {
        font-size: 28px;
    }

    .seals-project-navigation {
        flex-direction: column;
    }

    .seals-project-nav-link {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .seals-project-sidebar {
        flex-direction: column;
    }

    .seals-project-sidebar > * {
        flex: 1 1 100%;
    }

    .seals-project-title {
        font-size: 24px;
    }

    .seals-project-gallery-thumb {
        width: 60px;
        height: 45px;
    }
}

/* Print Styles */
@media print {
    .seals-project-wrapper {
        display: block;
    }

    .seals-project-sidebar {
        width: 100%;
        position: relative;
        margin-top: 30px;
    }

    .seals-project-live-btn,
    .seals-project-navigation {
        display: none;
    }
}
