
/*  VARIABLES */
:root {
    --alu-color-primary: #d25501;
    --alu-color-secondary: #005288;
    --alu-color-danger: #a40704;
    --alu-color-bg-light: #ffffff;
    --alu-color-bg-dark: #141824;
    --alu-color-bg-gray: #fbfbfc;
    --alu-color-text-light: #e7e9ee;
    --alu-color-text-muted: #96a0b5;
    --alu-color-text-dark: #b3aeae;
    --alu-color-text-darker: #787878;
    --alu-max-width: 1200px;
    --alu-border-radius: 18px;
    --alu-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --alu-hero-bg-url: url('/images/home-bg-new.webp');
    --alu-cta-bg: url('/images/homepages/hero2.webp');

}

/* CONTAINER */
.alu-container {
    margin: 0 auto;
    padding: 5px 20px;
    max-width: var(--alu-max-width);
}


.alu-hero {
    padding: 54px 0 24px;
}

/* BUTTONS */
.alu-btn {
    display: inline-block;
    padding: 0.8em 1.6em;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    background-color: #ee780e;
    z-index: 2;
}

.alu-btn:hover {
    background-color: #1e90ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.alu-mehr-content {
    display: none;
    margin-top: .1rem;
    color: #9c9c9c;
}

.alu-mehr-content.is-open {
    display: block;
}

.alu-mehr-toggle {
    background: none;
    color: #fff;
    border: 0;
    cursor: pointer;
    padding: 0;
}

/* Primary button - orange color */
.alu-btn--primary {
    background-color: #ee780e;
}

.alu-btn--primary:hover {
    background-color: #5d6d77;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Secondary button - blue color */
.alu-btn--secondary {
    background-color: #1e90ff;
}

.alu-btn--secondary:hover {
    background-color: #5d6d77;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.alu-button-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.alu-button-group .alu-btn {
    margin: 0;
}

/* TYPOGRAPHY */
.alu-heading-1 {
    font-size: clamp(24px, 2vw, 35px) !important;
    line-height: 1.1;
    margin: 12px 0 24px;
    color: var(--alu-color-bg-dark);
}

.alu-heading-1.alu-heading--light {
    color: var(--alu-color-text-light);
}

.alu-heading-2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    margin: 0 0 12px;
    color: var(--alu-color-bg-dark);
}

.alu-heading-2.alu-heading--light {
    color: var(--alu-color-text-light);
}

.alu-heading-3 {
    font-size: 20px;
    margin: 0 0 8px 0;
    color: #fff;
}

.alu-lead {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--alu-color-text-darker);
}

.alu-text--muted {
    color: var(--alu-color-text-muted);
}

.alu-text--light {
    color: var(--alu-color-bg-light);
}

.alu-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    z-index: 5;
}

/* KICKER */
.alu-kicker {
    margin-bottom: 3em;
    display: inline-block;
    border: 1px solid rgba(253, 103, 3, 0.4);
    border-radius: 10px;
    color: var(--alu-color-primary);
    padding: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    background-color: rgba(245, 101, 6, 0.12);
}

/* GRID LAYOUTS */
.alu-grid-2col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.alu-grid-2col--equal {
    grid-template-columns: 1fr 1fr;

}

.alu-grid-gap {
    gap: 50px;
}

.space-wrap {
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .alu-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* CONTENT BOXES */
.alu-content-box {
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.alu-content-box--dark {
    background-color: rgba(0, 0, 0, 0.9);
}

.alu-content-box--light {
    background-color: #fff;
}

/* MEDIA CONTAINERS */
.alu-media-container {
    align-self: center;
    border-radius: var(--alu-border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.alu-media-container--image {
    transform: translateX(-10%);
    height: 75%;
    width: auto;
}

.alu-media-container--video {
    align-self: center;
    height: 75%;
    width: auto;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
}

.alu-media-container img {
    height: 100%;
    display: block;
    width: 100%;
    object-fit: cover;
}

.alu-video-embed {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.alu-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.alu-video-bot {
    height: 70%;
}

/* FEATURE ITEMS  */
.alu-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 18px 0;
}

.alu-feature-item {
    display: flex;
    gap: 12px;
    color: #fff;
    align-items: flex-start;
    padding: 12px 14px;
    background: rgba(250, 155, 52, 0.1);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.alu-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: rgba(223, 117, 11, 0.694);
}

.alu-feature-item--light {
    background: rgba(0, 0, 0, 0.03);
    border: 1px dashed rgba(0, 0, 0, 0.12);
    color: var(--alu-color-bg-dark);
}

.alu-feature-item--light:hover {
    background-color: rgba(210, 85, 1, 0.15);
}

/* Hero fade-in animation  */
.alu-hero-full .alu-feature-item {
    opacity: 0;
    transition: opacity 600ms ease;
}

.alu-hero-full .alu-feature-item:nth-child(1) {
    transition-delay: 0s;
}

.alu-hero-full .alu-feature-item:nth-child(2) {
    transition-delay: 0.5s;
}

.alu-hero-full .alu-feature-item:nth-child(3) {
    transition-delay: 1s;
}

.alu-hero-full .alu-feature-item:nth-child(4) {
    transition-delay: 1.5s;
}

.alu-hero-full .alu-feature-item:nth-child(5) {
    transition-delay: 2s;
}

.alu-hero-full .alu-feature-item:nth-child(6) {
    transition-delay: 2.5s;
}

.alu-hero-full.alu-is-in-view .alu-feature-item {
    opacity: 1;
}

/* INFO LIST */
.alu-info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.alu-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px dashed rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    color: var(--alu-color-bg-dark);
    margin: 12px 0;
    transition: all 0.3s ease;
}

.alu-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: rgba(210, 85, 1, 0.15);
}

/* SECTIONS */
.alu-section {
    padding: 50px 0;
}

.alu-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.alu-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.alu-section-cta {
    margin-top: 40px;
    text-align: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* HERO SECTION */
.alu-hero-full {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--alu-hero-bg-url);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 0;
}

.alu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
}

/* badges  animation */
.alu-hero-full .alu-feature-item:nth-child(1) {
    transition-delay: 0s;
}
.alu-hero-full .alu-feature-item:nth-child(2) {
    transition-delay: 0.5s;
}
.alu-hero-full .alu-feature-item:nth-child(3) {
    transition-delay: 1s;
}
.alu-hero-full .alu-feature-item:nth-child(4) {
    transition-delay: 1.5s;
}
.alu-hero-full .alu-feature-item:nth-child(5) {
    transition-delay: 2s;
}
.alu-hero-full .alu-feature-item:nth-child(6) {
    transition-delay: 2.5s;
}

.alu-hero-full.alu-is-in-view .alu-feature-item {
    opacity: 1;
}

/* SPACE SECTION */
.alu-space-section {
    background-color: var(--alu-color-bg-gray);
    overflow: hidden;
    margin: 0 auto;
    padding: 54px 20px 24px;
}

.alu-space .alu-content-box {
    opacity: 0;
    transform: translate3d(-160vw, 0, 0);
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms ease;
    will-change: transform, opacity;
}

.alu-space .alu-media-container {
    opacity: 0;
    transform: translate3d(160vw, 30px, 0);
    transition: transform 950ms cubic-bezier(0.22, 1, 0.36, 1), opacity 950ms ease;
    transition-delay: 700ms;
    will-change: transform, opacity;
}

.alu-space.alu-is-in-view .alu-content-box {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.alu-space.alu-is-in-view .alu-media-container {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
}


.alu-space .alu-feature-item--light {
    cursor: pointer;
    transition: all 0.3s ease;
}

.alu-space .alu-feature-item--light:hover {
    transform: translateX(5px);
    background-color: rgba(210, 85, 1, 0.2);
}

.alu-space .alu-media-container img {
    will-change: transform, opacity;
    border-radius: 14px;
}

.alu-space h2[data-image] {
    cursor: pointer;
    transition: color 0.3s ease;
}

.alu-space h2[data-image]:hover {
    color: var(--alu-color-primary);
}


/* PROBLEM SECTION */
.alu-problem-section {
    background: #ffffff;
}

.alu-problem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            120% 80% at 0% 0%,
            rgba(210, 85, 1, 0.06),
            transparent 60%
    ),
    radial-gradient(
            120% 80% at 100% 100%,
            rgba(0, 82, 136, 0.06),
            transparent 60%
    );
}

.alu-problem-grid {
    padding: 30px 0 100px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.alu-problem-card {
    position: relative;
}

.alu-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--alu-shadow);
    height: 420px;
    transform: scale(0.92);
    transform-origin: center center;
    will-change: transform;
}

.alu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.alu-image-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 60%;
    padding: 18px 22px;
    color: #fff;
    border-radius: 12px;
    line-height: 1.5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.alu-image-caption--left {
    left: 20px;
}

.alu-image-caption--right {
    right: 20px;
}

.alu-image-caption--danger {
    background: rgba(164, 7, 4, 0.6);
}

.alu-image-caption--primary {
    background: rgba(0, 82, 136, 0.6);
}

.alu-caption-list {
    margin: 0;
    padding-left: 18px;
}

.alu-caption-list li {
    margin: 6px 0;
}

@media (max-width: 900px) {
    .alu-problem-grid {
        grid-template-columns: 1fr;
    }

    .alu-image-container {
        height: 360px;
        transform: scale(0.95);
    }

    .alu-image-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        top: auto;
        transform: none;
        max-width: none;
    }
}

/* SOLUTION SECTION */
.alu-solution-section {
    background: var(--alu-color-bg-gray);
}

/* GALLERY SECTION */

.alu-gallery-section {
    padding: 0;
}

.alu-gallery-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.alu-gallery-item {
    width: 33.333%;
    height: 400px;
    overflow: hidden;
    display: flex;
}

.alu-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.alu-gallery-item img:hover {
    transform: scale(1.2);
}

/* PLAN SECTION */
.alu-plan {
    position: relative;
    background-color: var(--alu-color-bg-gray);
}

.alu-plan::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            120% 80% at 0% 0%,
            rgba(210, 85, 1, 0.06),
            transparent 60%
    ),
    radial-gradient(
            120% 80% at 100% 100%,
            rgba(0, 82, 136, 0.06),
            transparent 60%
    );
}

.alu-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.alu-plan-step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    opacity: 0;
    transition: opacity 800ms ease;
}


.alu-step-1 {
    transition-delay: 0s;
}

.alu-step-2 {
    transition-delay: 1s;
}

.alu-step-3 {
    transition-delay: 2s;
}

.alu-plan.alu-is-in-view .alu-plan-step {
    opacity: 1;
}

.alu-plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #005288 0%, #0073b7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.alu-plan-icon svg {
    width: 40px;
    height: 40px;
}

.alu-plan-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 82, 136, 0.1);
    line-height: 1;
}

.alu-plan-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--alu-color-bg-dark);
    margin: 0 0 12px;
}

.alu-plan-description {
    color: var(--alu-color-text-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

@media (max-width: 768px) {
    .alu-plan-grid {
        grid-template-columns: 1fr;
    }
}

/* CONSEQUENCES SECTION */
.alu-consequences-section {
    background-color: #fff;
}

.alu-consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.alu-consequence-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    padding: 24px 22px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.alu-consequence-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            120% 80% at 0% 0%,
            rgba(210, 85, 1, 0.06),
            transparent 60%
    ),
    radial-gradient(
            120% 80% at 100% 100%,
            rgba(0, 82, 136, 0.06),
            transparent 60%
    );
    pointer-events: none;
    border-radius: 12px;
}

.alu-consequence-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.alu-consequence-title {
    margin: 6px 0;
    font-weight: 700;
    color: var(--alu-color-bg-dark);
    font-size: 20px;
}

.alu-consequence-text {
    margin: 0 0 12px;
    color: var(--alu-color-text-dark);
    line-height: 1.65;
}

/* BENEFITS SECTION */
.alu-benefits-section {
    background-color: var(--alu-color-bg-gray);
}

.alu-benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            120% 80% at 0% 0%,
            rgba(210, 85, 1, 0.06),
            transparent 60%
    ),
    radial-gradient(
            120% 80% at 100% 100%,
            rgba(0, 82, 136, 0.06),
            transparent 60%
    );
}

.alu-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.alu-metric-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    padding: 20px;
    text-align: center;
}

.alu-metric-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--alu-color-bg-dark);
    line-height: 1;
}

.alu-metric-label {
    margin-top: 8px;
    color: var(--alu-color-text-dark);
    font-size: 15px;
}

.alu-benefit-grid {
    padding-top: 4em;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.alu-benefit-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.alu-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.alu-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--alu-color-primary), #ff8c3a);
}

.alu-benefit-icon svg {
    width: 28px;
    height: 28px;
}

.alu-benefit-title {
    margin: 4px 0 6px;
    color: var(--alu-color-bg-dark);
    font-size: 20px;
    font-weight: 700;
}

.alu-benefit-text {
    margin: 0;
    color: var(--alu-color-text-dark);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .alu-metric-value {
        font-size: 34px;
    }
}


@media (max-width: 992px){
    .alu-benefit-grid{
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }
}


@media (max-width: 576px){
    .alu-benefit-grid{
        grid-template-columns: 1fr;
    }
}

/* PARTNERS SECTION */
.alu-partners-section {
    background-color: #fff;
}

.partners-container {
    padding: 0 20px;
}

.partners-content .carousel .logos-slide {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-content .carousel .logos-slide:hover {
    filter: grayscale(0%);
}

.alu-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    opacity: 0.8;
    margin-top: 24px;
}

.alu-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-content {
    border: none;
    box-shadow: none;
}

.partners-text-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* CONTACT SECTION */
.alu-contact-section {
    background-color: var(--alu-color-bg-gray);
    position: relative;
    color: #fff;
    overflow: hidden;
}

.alu-contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    var( --alu-cta-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.alu-contact-section .alu-container,
.alu-contact-section .alu-content-box {
    position: relative;
    z-index: 1;
}

.alu-contact-section .alu-content-box {
    background: transparent;
    border: none;
    box-shadow: none;
}


@media (max-width: 900px) {
    .alu-hero-full {
        padding-top: 100px;
    }
    .alu-space.alu-is-in-view .alu-media-container {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    .alu-metrics-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
    .alu-grid-gap {
        gap: 0;
    }
}

@media (max-width: 768px) {
    .alu-button-group {
        flex-direction: column;
    }
    .alu-video-embed {
        aspect-ratio: 4/3;
    }

    .alu-gallery-item {
        width: 50%;
    }
}

@media (max-width: 640px) {
    .alu-gallery-item {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 560px) {
    .alu-metrics-grid {
        grid-template-columns: 1fr;
    }
}

.alu-is-in-view {
    visibility: visible;
}

