/* Modern MECA Main Page Styles */
:root {
    --meca-primary-orange: #F26722;
    --meca-secondary-orange: #F86A14;
    --meca-accent-orange: #F58026;
    --meca-dark-blue: #052048;
    --meca-navy-blue: #04132B;
    --meca-mid-blue: #012D5E;
    --meca-light-gray: #E3E5DF;
    --meca-white: #FFFFFF;
}

/* Reset and Base Styles */
body,
html {
    overflow-x: hidden;
    max-width: 100%;
    scroll-behavior: smooth;
}

.main-section {
    overflow-x: hidden;
    max-width: 100%;
    background: var(--meca-white);
}

/* ========== HERO SECTION ========== */
.academy-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(4, 19, 43, 0.75), rgba(4, 19, 43, 0.75)), url('../../../view/shneider/Images/banner.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 80px;
}


/* Noise texture overlay for premium feel */
.academy-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-conic-gradient(rgba(255, 255, 255, 0.01) 0% 25%, transparent 0% 50%) 0 0 / 3px 3px;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--meca-primary-orange), var(--meca-secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slogan {
    font-family: 'Gilroy', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-slogan .highlight {
    color: #ffffff;
    text-shadow:
        0 0 3px rgb(234, 234, 234),
        0 0 6px rgb(184, 184, 184);

}

.hero-description {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.6s both;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 0;
    animation: fadeInUp 1s ease 0.7s both;
}

.powered-by-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.powered-by-logo {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.powered-by-logo:hover {
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--meca-primary-orange), var(--meca-secondary-orange));
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(242, 103, 34, 0.3), 0 0 60px rgba(242, 103, 34, 0.1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(242, 103, 34, 0.5), 0 0 80px rgba(242, 103, 34, 0.2);
    color: #ffffff;
}

.btn-modern-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-modern-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-arc {
        width: 450px;
        height: 450px;
        top: -25%;
    }

    .hero-arc-inner {
        width: 360px;
        height: 360px;
        top: -18%;
    }

    .btn-modern-primary,
    .btn-modern-secondary {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-arc {
        width: 320px;
        height: 320px;
        top: -15%;
    }

    .hero-arc-inner {
        width: 260px;
        height: 260px;
        top: -10%;
    }

    .powered-by {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* ========== EVENTS SECTION ========== */
.events-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--meca-white) 0%, #f8f9fa 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(242, 103, 34, 0.2);
    border-color: var(--meca-primary-orange);
}

.event-image-wrapper {
    overflow: hidden;
    position: relative;
    /* 16:9 aspect ratio */
    aspect-ratio: 16 / 9;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--meca-primary-orange), var(--meca-secondary-orange));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(242, 103, 34, 0.4);
}

.event-content {
    padding: 35px 30px;
}

.event-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--meca-dark-blue);
    margin-bottom: 15px;
}

.event-description {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.event-feature-tag {
    background: rgba(242, 103, 34, 0.1);
    color: var(--meca-primary-orange);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-event {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--meca-primary-orange), var(--meca-secondary-orange));
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.btn-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 103, 34, 0.4);
    color: white;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 100px 20px;
    background: var(--meca-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--meca-dark-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.2rem;
    color: #666;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--meca-white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(242, 103, 34, 0.15);
    border-color: var(--meca-primary-orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--meca-primary-orange), var(--meca-secondary-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--meca-white);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--meca-dark-blue);
    margin-bottom: 15px;
}

.feature-description {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* ========== HISTORY SECTION ========== */
.history-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--meca-white) 0%, var(--meca-light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.history-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.history-text h3 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--meca-dark-blue);
    margin-bottom: 25px;
}

.history-text p {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.history-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 103, 34, 0.2);
}

.stat-number {
    font-family: 'Gilroy', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--meca-primary-orange), var(--meca-secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    color: var(--meca-dark-blue);
    font-size: 1rem;
    margin-top: 10px;
}

.history-image {
    position: relative;
}

.history-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ========== EXXONMOBIL THANK YOU SECTION ========== */
.thankyou-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--meca-dark-blue) 0%, var(--meca-navy-blue) 100%);
    position: relative;
    overflow: hidden;
}

.thankyou-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(242, 103, 34, 0.1) 0%, transparent 50%);
}

.thankyou-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.thankyou-logo {
    width: 200px;
    margin-bottom: 40px;
    filter: brightness(0) invert(1);
}

.thankyou-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: white;
    margin-bottom: 30px;
}

.thankyou-text {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
}

.signature {
    font-family: 'Gilroy', sans-serif;
    font-style: italic;
    color: var(--meca-primary-orange);
    font-size: 1.2rem;
    margin-top: 40px;
}

/* ========== SPONSOR INFO SECTION ========== */
.sponsor-info-section {
    padding: 100px 20px;
    background: white;
}

.sponsor-info-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sponsor-info-text h3 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--meca-dark-blue);
    margin-bottom: 30px;
}

.sponsor-info-text p {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

.sponsor-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--meca-primary-orange), var(--meca-secondary-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    color: var(--meca-dark-blue);
    font-size: 1rem;
    margin-top: 10px;
}

.sponsor-logo-large {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* Hide old partners section */
section#images {
    display: none !important;
}

/* ========== CAROUSEL ========== */
.carousel-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-modern .carousel-item {
    height: 600px;
    position: relative;
}

.carousel-modern .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 32, 72, 0.8) 100%);
    z-index: 1;
}

.carousel-modern .slider-text {
    position: relative;
    z-index: 2;
}

.carousel-modern h2 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    padding: 100px 20px;
    background: var(--meca-dark-blue);
}

.partners-section .section-title {
    color: var(--meca-white);
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: var(--meca-primary-orange);
}

.partner-card img {
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.partner-card:hover img {
    filter: brightness(1) invert(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {

    .history-content,
    .sponsor-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .thankyou-text {
        font-size: 1.1rem;
    }

    .sponsor-highlights {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-card {
        margin-bottom: 20px;
    }
}

/* ========== LEGACY STYLES ========== */
.coverImg {
    background-image: url('https://ik.imagekit.io/3ptcecjzav/Website_Cover_FgQKus8P6.jpg');
}

@media only screen and (max-width: 450px) {
    .coverImg {
        background-image: url('https://ik.imagekit.io/g4qa04n0dui/WEBSITE_COVER_MOBILE_lpDxcPcog.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1656182656006');
    }
}

@media (min-width: 320px) {
    .recBtn {
        position: absolute;
        top: 60%;
        left: 76%;
        padding: 6px 5px !important;
        font-size: 10px !important;
    }

    .recImgNew {
        background-image: url('https://ik.imagekit.io/ahmedehab/website.jpg?updatedAt=1729366809065');
        position: relative;
        background-size: cover;
        height: 257px !important;
        min-height: 257px !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }
}

@media (min-width: 400px) {
    .recBtn {
        position: absolute;
        top: 60%;
        left: 76%;
        padding: 6px 5px !important;
        font-size: 10px !important;
    }

    .recImgNew {
        background-image: url('https://ik.imagekit.io/ahmedehab/website.jpg?updatedAt=1729366809065');
        position: relative;
        background-size: cover;
        height: 286px !important;
        min-height: 286px !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .recBtn {
        position: absolute;
        top: 60%;
        left: 76%;
        padding: 6px 5px !important;
        font-size: 10px !important;
    }

    .recImgNew {
        background-image: url('https://ik.imagekit.io/ahmedehab/website.jpg?updatedAt=1729366809065');
        position: relative;
        background-size: cover;
        height: 286px !important;
        min-height: 286px !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .recBtn {
        position: absolute;
        top: 60%;
        left: 74%;
        padding: 10px 20px !important;
        font-size: 16px !important;
    }

    .recImgNew {
        background-image: url('https://ik.imagekit.io/ahmedehab/website.jpg?updatedAt=1729366809065');
        position: relative;
        background-size: cover;
        height: 400px !important;
        min-height: 409px !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .recBtn {
        position: absolute;
        top: 60%;
        left: 74%;
        padding: 15px 30px !important;
        font-size: 21px !important;
    }

    .recImgNew {
        background-image: url('https://ik.imagekit.io/ahmedehab/website.jpg?updatedAt=1729366809065');
        position: relative;
        background-size: cover;
        height: 560px !important;
        min-height: 560px !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .recBtn {
        position: absolute;
        top: 60%;
        left: 74%;
        padding: 15px 30px !important;
        font-size: 21px !important;
    }

    .recImgNew {
        background-image: url('https://i.postimg.cc/3JDTtspz/recreuitment.jpg');
        position: relative;
        background-size: cover;
        height: 581px !important;
        min-height: 581px !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }
}

.glow {
    font-size: 80px;
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
    margin-bottom: 50px;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff;
    }

    to {
        text-shadow: 0 0 10px #fff;
    }
}

/* ========== ALERT BANNER ========== */
.modern-alert-banner {
    background: linear-gradient(135deg, #F26722 0%, #F86A14 100%);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(242, 103, 34, 0.3);
    animation: slideDown 0.5s ease-out;
}

.modern-alert-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.alert-content-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.alert-icon-modern {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.alert-icon-modern i {
    font-size: 32px;
    color: white;
}

.alert-text-modern {
    flex: 1;
}

.alert-title-modern {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    margin: 0 0 5px 0;
}

.alert-message-modern {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.alert-action-modern {
    flex-shrink: 0;
}

.btn-alert-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #F26722;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-alert-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #fff;
    color: #F26722;
    text-decoration: none;
}

.btn-alert-modern i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-alert-modern:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .alert-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .alert-icon-modern {
        width: 50px;
        height: 50px;
    }

    .alert-icon-modern i {
        font-size: 26px;
    }

    .alert-title-modern {
        font-size: 1.2rem;
    }

    .alert-message-modern {
        font-size: 0.95rem;
    }

    .btn-alert-modern {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modern-alert-banner {
        padding: 20px 0;
    }

    .alert-title-modern {
        font-size: 1.1rem;
    }

    .alert-message-modern {
        font-size: 0.9rem;
    }
}