/* UQOMM SPECIFIC STYLES - INDUSTRIAL ORANGE THEME */

:root {
    --uqomm-orange: #E74502;
    --uqomm-glow: rgba(231, 69, 2, 0.25);
    /* Set Master Variables for this page */
    --brand-primary: var(--uqomm-orange);
    --brand-glow: var(--uqomm-glow);
}

/* Branding Overrides */
.ambient-light {
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%) !important;
}

.mena a.btn-contact {
    background-color: var(--brand-primary) !important;
}

.mena a.btn-contact:hover {
    background-color: #c93b02 !important;
    box-shadow: 0 0 15px rgba(231, 69, 2, 0.4) !important;
}

footer {
    background: radial-gradient(100% 50% at 50% 0%, var(--brand-glow) 0%, rgba(11, 12, 14, 0) 100%) !important;
}

.card-feature-orange .card-badge {
    background: var(--brand-primary);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-feature-orange h3 {
    background: linear-gradient(to bottom right, #FFFFFF 30%, var(--brand-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-section {
    border-color: rgba(231, 69, 2, 0.3) !important;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(231, 69, 2, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(231, 69, 2, 0.15) 0%, transparent 40%) !important;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-primary) !important;
}

/* Page Specific Brand adjustments */
.uqomm-hero-bg {
    background: radial-gradient(circle at 50% 50%, rgba(231, 69, 2, 0.1) 0%, #0B0C0E 100%);
}

.tech-visual img {
    filter: drop-shadow(0 0 30px var(--brand-primary));
}

/* System Architecture Container */
.architecture-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    filter: drop-shadow(0 0 50px var(--brand-glow));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.architecture-container:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary);
}

.architecture-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Sectors Grid */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.sector-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 69, 2, 0.15);
}

.sector-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sector-card:hover .sector-image img {
    transform: scale(1.08);
}

.sector-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.sector-content h4 {
    font-size: 2.2rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.sector-content p {
    font-size: 1.5rem;
    color: #A1A1AA;
    line-height: 1.6;
    margin: 0;
}

/* Feature List Inside Bento Cards */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-icon {
    color: var(--brand-primary);
    font-weight: bold;
}

/* Active glowing border for Bento Cards */
.bento-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 0 30px var(--brand-glow);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
}

/* Bento Grid Custom Styling */
#innovacion .bento-card.span-4::after {
    background: linear-gradient(to top, rgba(11, 12, 14, 0.95) 0%, rgba(11, 12, 14, 0.5) 50%, transparent 100%) !important;
}

#innovacion .bento-card.span-4 .card-image-container svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#innovacion .bento-card.span-4 .card-image-container img {
    object-fit: contain;
    padding: 20px;
}

/* Bento Grid Wide Cards Styling for SVG Ring */
#innovacion .bento-card.span-8 .card-image-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

#innovacion .bento-card.span-8 .card-image-container svg {
    width: 55%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive adjustment for Mobile view */
@media (max-width: 900px) {
    #innovacion .bento-card.span-8 .card-image-container svg {
        width: 100%;
    }
}
