/* --- Support & Projects Panel Section --- */
.support-panel-section {
    position: relative;
    padding: 3rem 0;
}

.video-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.video-bg-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.3);
}

.support-panel-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.desktop-support-layout {
    display: none;
}

.mobile-support-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* Interactive Support Panel */
.support-solutions-container, .mobile-support-solutions-container {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
}

.contact-details-view {
    position: absolute;
    inset: 2rem;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.support-solutions-list h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hidden {
    display: none !important;
    transform: translateY(-20px) scale(0.95);
    pointer-events: none;
}

.support-solutions-list.hidden {
    opacity: 0;
    display: block !important;
}

.mobile-marquee-gallery-container {
    width: 100%;
}

/* Support Cards */
.support-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    background-color: white;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

    .support-card:hover {
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
        transform: scale(1.02);
        border-color: #0078c8;
    }

.support-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.support-card-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(0, 120, 200, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .support-card-icon-wrapper svg {
        width: 1.25rem;
        height: 1.25rem;
        color: #0078c8;
    }

.support-card h4 {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.chevron-right {
    color: #d1d5db;
    transition: color 0.2s;
    width: 1.25rem;
    height: 1.25rem;
}

.support-card:hover .chevron-right {
    color: #0078c8;
}

/* Details View & Accordion */
.contact-back-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.back-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .back-btn:hover {
        background-color: #f3f4f6;
    }

    .back-btn svg {
        width: 1.25rem;
        height: 1.25rem;
        color: #4b5563;
    }

.contact-details-content {
    max-height: 280px;
    overflow-y: auto;
    display: flex;
    gap: .75rem;
    flex-direction: column;
}

    .contact-details-content .btn {
        width: 100%;
    }

.contact-details-content  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* 8px */

  /* Sizing */
    height: 2.5rem; /* 40px */
    width: 100%;
    padding-left: 1rem; /* 16px */
    padding-right: 1rem; /* 16px */
  
  /* Typography */
    white-space: nowrap;
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    color: #ffffff;

  /* Appearance & Background */
    border-radius: 0.375rem; /* 6px */
    background-color: var(--daikin-blue);
    border: none;
  
  /* Transitions */
    transition-property: color, background-color, border-color, box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.contact-details-content .btn-outline {/* Flex & Alignment */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* 8px */

  /* Sizing */
    height: 2.5rem; /* 40px */
    width: 100%;
    padding-left: 1rem; /* 16px */
    padding-right: 1rem; /* 16px */

  /* Typography */
    white-space: nowrap;
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    color: var(--daikin-blue);

  /* Appearance & Background */
    border-radius: 0.375rem; /* 6px */
    background-color: var(--background-color);
    border: 1px solid var(--daikin-blue);
  
  /* Transitions */
    transition-property: color, background-color, border-color, box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.contact-details-content .btn-outline:hover {
    background-color: var(--light-blue-hover);
}

    .contact-details-content .btn-outline {
        border: 1px solid #0078c8;
    }

.collapsible-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
}

    .collapsible-trigger .chevron-right {
        transition: transform 0.3s;
    }

    .collapsible-trigger.open .chevron-right {
        transform: rotate(90deg);
    }

.collapsible-content {
    padding: 0.25rem 0.25rem 0.75rem 0.25rem;
    display: none;
}

    .collapsible-content.open {
        display: block;
    }

.contact-person-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    padding: 0.75rem;
    margin-top: 0.75rem;
}

    .contact-person-card h5 {
        font-size: 0.875rem;
        font-weight: 600;
        margin: 0;
    }

    .contact-person-card p {
        font-size: 0.75rem;
        color: #4b5563;
        margin: 0.1rem 0 0.5rem 0;
    }

.contact-info-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #4b5563;
}

    .contact-info-line svg {
        width: 0.75rem;
        height: 0.75rem;
        color: #d1d5db;
    }

    .contact-info-line a {
        color: #0078c8;
        text-decoration: none;
    }

        .contact-info-line a:hover {
            text-decoration: underline;
        }

/* Marquee Gallery */
@keyframes slide-right {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-gallery-container {
    width: 66.66%;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-marquee-gallery-container h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.marquee-wrapper, .marquee-gallery-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.marquee-content {
    display: flex;
    align-items: center;
    width: max-content;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: slide-right 120s linear infinite;
}

.marquee-card {
    flex-shrink: 0;
    width: 16rem;
    height: 16rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-card-img-wrapper {
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
}

.marquee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.marquee-card:hover img {
    transform: scale(1.05);
}

.marquee-card-info {
    background-color: white;
    padding: 1rem;
}

    .marquee-card-info h4 {
        font-weight: 700;
        font-size: 0.875rem;
        margin: 0;
    }

    .marquee-card-info p {
        font-size: 0.75rem;
        color: #4b5563;
        margin: 0;
    }

.mobile-marquee-gallery-container .marquee-wrapper {
    height: auto;
    padding: 1.5rem;
}

.mobile-marquee-gallery-container .marquee-card {
    /* width: 13rem; */
    height: 100%;
}

/* Responsive Media Query */
@media (min-width: 1024px) {
    .desktop-support-layout {
        display: flex;
        gap: 2rem;
        align-items: center;
        min-height: 400px;
    }

    .mobile-support-layout {
        display: none;
    }
}
