:root{
    --primary:#0b1f3a;
    --secondary:#003573;
    --accent:#0088cd;
    --accent-hover:#129adf;

    --text:#1e293b;
    --muted:#64748b;

    --bg:#ffffff;
    --bg-light:#f5f7fb;

    --border:#e2e8f0;

    --radius:18px;

    --shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.section-padding{
    padding:100px 0;
}

.container-custom{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

.btn-primary-custom{
    background:var(--accent);
    border:none;
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.btn-primary-custom:hover{
    background:var(--accent-hover);
    color:#fff;
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.btn-outline-custom:hover{
    background:#fff;
    color:var(--primary);
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:20px;
}

.section-subtitle{
    font-size:18px;
    color:var(--muted);
    max-width:750px;
    line-height:1.8;
    margin: auto;
}

.card-modern{
    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:30px;
}

.bg-light-custom{
    background:var(--bg-light);
}
/* =========================
   HEADER
========================= */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:82px;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(226,232,240,0.8);
    z-index:999;
    transition:all 0.3s ease;
}

.site-header.scrolled{
    height:72px;
    box-shadow:0 10px 30px rgba(15,23,42,0.08);
}

.navbar-custom{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:all 0.3s ease;
}

.site-header.scrolled .navbar-custom{
    height:72px;
}

.brand-wrap{
    display:flex;
    align-items:center;
    min-width:190px;
}

.brand-logo{
    max-height:58px;
    width:auto;
    object-fit:contain;
}

.site-header.scrolled .brand-logo{
    max-height:50px;
}

.brand-fallback{
    width:58px;
    height:58px;
    border-radius:16px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    letter-spacing:1px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:24px;
}

.nav-list{
    list-style:none;
    display:flex;
    align-items:center;
    gap:4px;
    margin:0;
    padding:0;
}

.nav-list li{
    position:relative;
}

.nav-link-custom{
    display:flex;
    align-items:center;
    gap:6px;
    padding:30px 10px;
    font-size:14px;
    font-weight:600;
    color:var(--primary);
    transition:0.3s;
    white-space:nowrap;
}

.nav-link-custom i{
    font-size:10px;
}

.nav-link-custom:hover,
.nav-link-custom.active{
    color:var(--accent);
}

.dropdown-menu-custom{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#fff;
    border-radius:16px;
    padding:12px;
    box-shadow:0 20px 50px rgba(15,23,42,0.14);
    border:1px solid var(--border);
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:all 0.25s ease;
    list-style:none;
    z-index:50;
}

.nav-item-dropdown:hover .dropdown-menu-custom{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu-custom li a{
    display:block;
    padding:11px 14px;
    color:var(--text);
    font-size:14px;
    font-weight:500;
    border-radius:10px;
    transition:0.3s;
}

.dropdown-menu-custom li a:hover{
    background:var(--bg-light);
    color:var(--secondary);
}

.nav-actions{
    display:flex;
    align-items:center;
}

.btn-affiliate{
    background:var(--primary);
    color:#fff;
    padding:13px 22px;
    border-radius:10px;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:0.4px;
    transition:0.3s;
}

.btn-affiliate:hover{
    background:var(--accent);
    color:#fff;
    transform:translateY(-2px);
}

.mobile-toggle{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:var(--primary);
    border-radius:12px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.mobile-toggle span{
    width:22px;
    height:2px;
    background:#fff;
    border-radius:2px;
    transition:0.3s;
}

/* =========================
   RESPONSIVE HEADER
========================= */

@media(max-width:1199px){
    .nav-link-custom{
        font-size:13px;
        padding-left:7px;
        padding-right:7px;
    }

    .nav-menu{
        gap:14px;
    }
}

@media(max-width:991px){
    .site-header{
        height:76px;
    }

    .navbar-custom{
        height:76px;
    }

    .brand-logo{
        max-height:52px;
    }

    .mobile-toggle{
        display:flex;
    }

    .nav-menu{
        position:fixed;
        top:76px;
        right:-100%;
        width:320px;
        max-width:90%;
        height:calc(100vh - 76px);
        background:#fff;
        box-shadow:-20px 0 50px rgba(15,23,42,0.15);
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        padding:24px;
        transition:0.35s ease;
        overflow-y:auto;
    }

    .nav-menu.active{
        right:0;
    }

    .nav-list{
        flex-direction:column;
        align-items:stretch;
        gap:0;
    }

    .nav-link-custom{
        padding:15px 0;
        border-bottom:1px solid var(--border);
        justify-content:space-between;
    }

    .dropdown-menu-custom{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        border:none;
        padding:0 0 8px 12px;
        display:none;
    }

    .nav-item-dropdown:hover .dropdown-menu-custom{
        display:block;
    }

    .nav-actions{
        margin-top:20px;
    }

    .btn-affiliate{
        width:100%;
        text-align:center;
    }
}
/* =========================
   FOOTER
========================= */

.site-footer{
    background:var(--primary);
    color:#fff;
}

.footer-main{
    padding:80px 0 55px;
    background:
        radial-gradient(circle at top left, rgba(58, 138, 212, 0.18), transparent 35%),
        linear-gradient(135deg, #07172c 0%, #0b1f3a 50%, #102f55 100%);
}

.footer-brand p{
    color:rgba(255,255,255,0.75);
    line-height:1.8;
    margin-top:22px;
    max-width:390px;
}

.footer-logo{
    max-height:72px;
    width:auto;
    object-fit:contain;
    background:#fff;
    padding:8px 12px;
    border-radius:14px;
}

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:24px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:12px;
    background:rgba(255,255,255,0.1);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.footer-social a:hover{
    background:var(--accent);
    color:#fff;
    transform:translateY(-3px);
}

.footer-widget h4{
    font-size:18px;
    font-weight:800;
    margin-bottom:24px;
    color:#fff;
}

.footer-widget ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-widget ul li{
    margin-bottom:13px;
}

.footer-widget ul li a{
    color:rgba(255,255,255,0.75);
    transition:0.3s;
}

.footer-widget ul li a:hover{
    color:var(--accent);
    padding-left:4px;
}

.footer-contact ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:rgba(255,255,255,0.75);
    line-height:1.6;
}

.footer-contact ul li i{
    color:var(--accent);
    margin-top:4px;
    min-width:18px;
}

.footer-contact ul li span,
.footer-contact ul li a{
    color:rgba(255,255,255,0.75);
}

.footer-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:16px;
    background:var(--accent);
    color:#fff;
    padding:13px 22px;
    border-radius:12px;
    font-size:14px;
    font-weight:700;
    transition:0.3s;
}

.footer-cta:hover{
    background:#fff;
    color:var(--primary);
    transform:translateY(-2px);
}

.footer-bottom{
    background:#061326;
    padding:18px 0;
}

.footer-bottom-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
}

.footer-bottom-content p{
    margin:0;
    font-size:14px;
    color:rgba(255,255,255,0.68);
}

.footer-bottom-content strong{
    color:var(--accent);
}

@media(max-width:767px){
    .footer-main{
        padding:60px 0 40px;
    }

    .footer-bottom-content{
        flex-direction:column;
        text-align:center;
    }
}

/* =========================
   HERO
========================= */

.hero-section{
    position:relative;
    min-height:100vh;
    padding-top:82px;
    overflow:hidden;
    background:
        radial-gradient(circle at top left, rgba(58, 138, 212,0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(19,59,107,0.18), transparent 36%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 45%, #eef4fb 100%);
}

.hero-bg-shape{
    position:absolute;
    border-radius:999px;
    filter:blur(8px);
    opacity:0.45;
    z-index:0;
}

.hero-shape-one{
    width:420px;
    height:420px;
    background:rgba(58, 138, 212,0.16);
    top:120px;
    left:-160px;
}

.hero-shape-two{
    width:520px;
    height:520px;
    background:rgba(19,59,107,0.13);
    bottom:-180px;
    right:-180px;
}

.hero-section .container-custom{
    position:relative;
    z-index:2;
}

.hero-content{
    padding:80px 0;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(58, 138, 212,0.12);
    color:var(--secondary);
    font-size:14px;
    font-weight:800;
    margin-bottom:24px;
    border:1px solid rgba(58, 138, 212,0.28);
}

.hero-badge::before{
    content:"";
    width:9px;
    height:9px;
    border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 0 6px rgba(58, 138, 212,0.16);
}

.hero-content h1{
    font-size:58px;
    line-height:1.08;
    font-weight:900;
    color:var(--primary);
    letter-spacing:-1.6px;
    margin-bottom:24px;
}

.hero-content p{
    font-size:18px;
    line-height:1.85;
    color:var(--muted);
    max-width:650px;
    margin-bottom:34px;
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:38px;
}

.btn-outline-dark-custom{
    border:2px solid var(--primary);
    color:var(--primary);
    padding:14px 28px;
    border-radius:12px;
    font-weight:700;
    transition:0.3s;
}

.btn-outline-dark-custom:hover{
    background:var(--primary);
    color:#fff;
}

.hero-mini-stats{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}

.hero-mini-stats div{
    padding-right:24px;
    border-right:1px solid var(--border);
}

.hero-mini-stats div:last-child{
    border-right:none;
    padding-right:0;
}

.hero-mini-stats strong{
    display:block;
    font-size:30px;
    font-weight:900;
    color:var(--primary);
}

.hero-mini-stats span{
    display:block;
    font-size:13px;
    color:var(--muted);
    font-weight:600;
}

.hero-visual{
    position:relative;
    min-height:620px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-image-card{
    position:relative;
    width:88%;
    border-radius:34px;
    overflow:hidden;
    box-shadow:0 30px 90px rgba(15,23,42,0.18);
    transform:rotate(1.5deg);
    z-index:1;
}

.hero-image-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(11,31,58,0.04), rgba(11,31,58,0.26));
}

.hero-image-card img{
    width:100%;
    height:560px;
    object-fit:cover;
    display:block;
}

.floating-card{
    position:absolute;
    z-index:4;
    display:flex;
    align-items:center;
    gap:14px;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(12px);
    border:1px solid rgba(226,232,240,0.8);
    box-shadow:0 20px 60px rgba(15,23,42,0.12);
    border-radius:18px;
    padding:16px 18px;
    animation:floatCard 4.5s ease-in-out infinite;
}

.floating-card i{
    width:46px;
    height:46px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#fff;
    font-size:18px;
}

.floating-card strong{
    display:block;
    color:var(--primary);
    font-size:15px;
    font-weight:900;
}

.floating-card span{
    display:block;
    color:var(--muted);
    font-size:12px;
    font-weight:600;
}

.floating-card-top{
    top:340px;
    left:0;
}

.floating-card-bottom{
    bottom:95px;
    right:0;
    animation-delay:1.2s;
}

.hero-orbit{
    position:absolute;
    width:520px;
    height:520px;
    border:1px dashed rgba(19,59,107,0.22);
    border-radius:50%;
    z-index:1;
    animation:spinOrbit 24s linear infinite;
}

.hero-orbit span{
    position:absolute;
    width:16px;
    height:16px;
    border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 0 8px rgba(58, 138, 212,0.16);
}

.hero-orbit span:nth-child(1){
    top:30px;
    left:80px;
}

.hero-orbit span:nth-child(2){
    right:20px;
    top:210px;
}

.hero-orbit span:nth-child(3){
    bottom:58px;
    left:160px;
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-14px);
    }
}

@keyframes spinOrbit{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@media(max-width:1199px){
    .hero-content h1{
        font-size:48px;
    }

    .hero-image-card img{
        height:500px;
    }
}

@media(max-width:991px){
    .hero-section{
        padding-top:76px;
    }

    .hero-content{
        padding:70px 0 30px;
        text-align:center;
    }

    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions,
    .hero-mini-stats{
        justify-content:center;
    }

    .hero-visual{
        min-height:520px;
    }

    .hero-image-card img{
        height:460px;
    }
}

@media(max-width:575px){
    .hero-content h1{
        font-size:36px;
        letter-spacing:-0.8px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-actions a{
        width:100%;
        text-align:center;
    }

    .hero-mini-stats{
        gap:14px;
    }

    .hero-mini-stats div{
        width:100%;
        border-right:none;
        padding-right:0;
    }

    .hero-visual{
        min-height:390px;
    }

    .hero-image-card{
        width:100%;
        border-radius:24px;
    }

    .hero-image-card img{
        height:330px;
    }

    .floating-card{
        display:none;
    }

    .hero-orbit{
        width:320px;
        height:320px;
    }
}

/* =========================
   STATS
========================= */

.stats-section{
    position:relative;
    z-index:5;
    margin-top:-70px;
}

.stats-wrapper{
    background:#fff;
    border-radius:28px;
    box-shadow:0 25px 80px rgba(15,23,42,0.12);
    border:1px solid rgba(226,232,240,0.8);
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    overflow:hidden;
}

.stat-item{
    padding:38px 24px;
    text-align:center;
    border-right:1px solid var(--border);
    position:relative;
}

.stat-item:last-child{
    border-right:none;
}

.stat-item::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:4px;
    background:var(--accent);
    transform:translateX(-50%);
    transition:0.3s;
}

.stat-item:hover::after{
    width:70%;
}

.stat-number{
    display:block;
    font-size:42px;
    font-weight:900;
    color:var(--primary);
    line-height:1;
    margin-bottom:10px;
}

.stat-label{
    display:block;
    color:var(--muted);
    font-size:14px;
    font-weight:700;
}

/* =========================
   WHAT WE DO
========================= */

.section-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--accent);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.4px;
    font-size:13px;
    margin-bottom:14px;
}

.section-kicker::before{
    content:"";
    width:36px;
    height:2px;
    background:var(--accent);
}

.what-section{
    background:#fff;
}

.what-card{
    height:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:34px 30px;
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
}

.what-card::before{
    content:"";
    position:absolute;
    inset:auto -40px -80px auto;
    width:180px;
    height:180px;
    background:rgba(58, 138, 212,0.11);
    border-radius:50%;
    transition:0.35s;
}

.what-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 70px rgba(15,23,42,0.1);
    border-color:rgba(58, 138, 212,0.45);
}

.what-card:hover::before{
    transform:scale(1.25);
}

.what-card.featured{
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
    border-color:transparent;
}

.what-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    font-size:24px;
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.what-card.featured .what-icon{
    background:rgba(255,255,255,0.12);
    color:var(--accent);
}

.what-card h3{
    font-size:21px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:14px;
    position:relative;
    z-index:2;
}

.what-card.featured h3{
    color:#fff;
}

.what-card p{
    color:var(--muted);
    line-height:1.8;
    margin:0;
    position:relative;
    z-index:2;
}

.what-card.featured p{
    color:rgba(255,255,255,0.78);
}

@media(max-width:991px){
    .stats-section{
        margin-top:0;
        padding-top:30px;
    }

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

    .stat-item:nth-child(2){
        border-right:none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2){
        border-bottom:1px solid var(--border);
    }
}

@media(max-width:575px){
    .stats-wrapper{
        grid-template-columns:1fr;
    }

    .stat-item{
        border-right:none;
        border-bottom:1px solid var(--border);
    }

    .stat-item:last-child{
        border-bottom:none;
    }

    .section-title{
        font-size:32px;
    }
}

/* =========================
   SERVICES
========================= */

.services-section{
    position:relative;
    overflow:hidden;
}

.services-section::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(19,59,107,0.06);
    top:-220px;
    right:-180px;
}

.services-section::after{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(58, 138, 212,0.10);
    bottom:-120px;
    left:-120px;
}

.services-section .container-custom{
    position:relative;
    z-index:2;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.service-card{
    min-height:310px;
    background:#fff;
    border-radius:26px;
    border:1px solid rgba(226,232,240,0.95);
    padding:30px;
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(19,59,107,0.05), transparent);
    opacity:0;
    transition:0.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 80px rgba(15,23,42,0.11);
    border-color:rgba(58, 138, 212,0.45);
}

.service-card:hover::before{
    opacity:1;
}

.service-card-main{
    grid-column:span 2;
    background:
        linear-gradient(135deg, rgba(11,31,58,0.92), rgba(19,59,107,0.92)),
        url('../images/service-networking.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
}

.service-card-accent{
    background:
        linear-gradient(135deg, var(--accent-hover),var(--accent));
    color:#fff;
}

.service-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.service-card-main .service-icon,
.service-card-accent .service-icon{
    background:rgba(255,255,255,0.14);
    color:#fff;
}

.service-card h3{
    font-size:21px;
    line-height:1.25;
    font-weight:900;
    color:var(--primary);
    margin-bottom:14px;
    position:relative;
    z-index:2;
}

.service-card-main h3,
.service-card-accent h3{
    color:#fff;
}

.service-card p{
    color:var(--muted);
    line-height:1.75;
    margin:0;
    position:relative;
    z-index:2;
}

.service-card-main p,
.service-card-accent p{
    color:rgba(255,255,255,0.82);
}

.service-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:22px;
    color:#fff;
    font-weight:800;
    position:relative;
    z-index:2;
}

.service-link i{
    transition:0.3s;
}

.service-link:hover{
    color:#fff;
}

.service-link:hover i{
    transform:translateX(5px);
}

@media(max-width:1199px){
    .services-grid{
        grid-template-columns:repeat(3, 1fr);
    }

    .service-card-main{
        grid-column:span 2;
    }
}

@media(max-width:991px){
    .services-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:575px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card-main{
        grid-column:span 1;
    }

    .service-card{
        min-height:auto;
    }
}

/* =========================
   EVENTS
========================= */

.events-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.event-feature-card{
    height:100%;
    border-radius:30px;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:0 24px 70px rgba(15,23,42,0.08);
    transition:0.35s ease;
}

.event-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 32px 90px rgba(15,23,42,0.14);
}

.event-feature-dark{
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
}

.event-image{
    position:relative;
    height:280px;
    overflow:hidden;
}

.event-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.5s ease;
}

.event-feature-card:hover .event-image img{
    transform:scale(1.06);
}

.event-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent, rgba(11,31,58,0.55));
}

.event-image span{
    position:absolute;
    left:24px;
    bottom:24px;
    z-index:2;
    background:var(--accent);
    color:#fff;
    padding:9px 15px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
}

.event-content{
    padding:34px;
}

.event-content h3{
    font-size:28px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:16px;
}

.event-feature-dark .event-content h3{
    color:#fff;
}

.event-content p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:22px;
}

.event-feature-dark .event-content p{
    color:rgba(255,255,255,0.78);
}

.event-content ul{
    list-style:none;
    padding:0;
    margin:0 0 22px;
}

.event-content ul li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
    color:var(--text);
    font-weight:600;
}

.event-feature-dark .event-content ul li{
    color:rgba(255,255,255,0.86);
}

.event-content ul li i{
    color:var(--accent);
}

.event-link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:var(--secondary);
    font-weight:900;
    transition:0.3s;
}

.event-feature-dark .event-link{
    color:var(--accent);
}

.event-link i{
    transition:0.3s;
}

.event-link:hover{
    color:var(--accent);
}

.event-link:hover i{
    transform:translateX(5px);
}

.upcoming-events{
    background:linear-gradient(135deg, #f8fafc, #eef4fb);
    border:1px solid var(--border);
    border-radius:32px;
    padding:34px;
}

.upcoming-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:28px;
}

.upcoming-header h3{
    font-size:32px;
    font-weight:900;
    color:var(--primary);
    margin:0;
}

.upcoming-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.upcoming-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:20px;
    display:grid;
    grid-template-columns:82px 1fr auto;
    align-items:center;
    gap:20px;
    transition:0.3s ease;
}

.upcoming-item:hover{
    transform:translateX(6px);
    border-color:rgba(58, 138, 212,0.55);
    box-shadow:0 18px 50px rgba(15,23,42,0.08);
}

.event-date-box{
    width:72px;
    height:72px;
    border-radius:18px;
    background:var(--primary);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.event-date-box span{
    font-size:28px;
    font-weight:900;
    line-height:1;
}

.event-date-box small{
    font-size:13px;
    font-weight:700;
    color:var(--accent);
    text-transform:uppercase;
}

.upcoming-info h4{
    font-size:18px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:7px;
}

.upcoming-info p{
    margin:0;
    color:var(--muted);
    font-size:14px;
    font-weight:600;
}

.upcoming-info p i{
    color:var(--accent);
    margin-right:6px;
}

.upcoming-type{
    background:rgba(58, 138, 212,0.12);
    color:var(--secondary);
    font-weight:800;
    padding:9px 14px;
    border-radius:999px;
    font-size:13px;
    white-space:nowrap;
}

@media(max-width:767px){
    .upcoming-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .upcoming-item{
        grid-template-columns:1fr;
    }

    .event-date-box{
        width:78px;
    }

    .upcoming-type{
        width:max-content;
    }
}

/* =========================
   BENEFITS
========================= */

.benefits-section{
    position:relative;
    background:
        radial-gradient(circle at top right, rgba(58, 138, 212,0.13), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #eef4fb 100%);
    overflow:hidden;
}

.benefits-wrapper{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:60px;
    align-items:center;
}

.benefits-content h2{
    font-size:46px;
    line-height:1.15;
    font-weight:900;
    color:var(--primary);
    letter-spacing:-1px;
    margin-bottom:22px;
}

.benefits-content > p{
    color:var(--muted);
    font-size:18px;
    line-height:1.85;
    margin-bottom:32px;
}

.benefits-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:34px;
}

.benefit-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:20px;
    box-shadow:0 16px 50px rgba(15,23,42,0.05);
    transition:0.3s;
}

.benefit-item:hover{
    transform:translateX(6px);
    border-color:rgba(58, 138, 212,0.45);
}

.benefit-icon{
    min-width:54px;
    height:54px;
    border-radius:16px;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.benefit-item h3{
    font-size:18px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:6px;
}

.benefit-item p{
    margin:0;
    color:var(--muted);
    line-height:1.7;
}

.benefits-actions{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.benefits-panel{
    position:relative;
}

.benefits-card{
    position:relative;
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius:34px;
    padding:42px;
    color:#fff;
    overflow:hidden;
    box-shadow:0 32px 90px rgba(15,23,42,0.16);
}

.benefits-card::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(58, 138, 212,0.18);
    top:-90px;
    right:-80px;
}

.benefits-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    border:1px dashed rgba(255,255,255,0.25);
    bottom:-70px;
    left:-60px;
}

.benefits-card-label{
    display:inline-flex;
    background:rgba(255,255,255,0.12);
    color:var(--accent);
    padding:9px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:0.8px;
    margin-bottom:26px;
    position:relative;
    z-index:2;
}

.benefits-card ul{
    position:relative;
    z-index:2;
    list-style:none;
    padding:0;
    margin:0;
}

.benefits-card ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:17px;
    color:rgba(255,255,255,0.88);
    line-height:1.6;
    font-weight:600;
}

.benefits-card ul li i{
    color:var(--accent);
    margin-top:4px;
}

.benefits-highlight{
    position:relative;
    z-index:2;
    margin-top:30px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.16);
    border-radius:22px;
    padding:22px;
}

.benefits-highlight strong{
    display:block;
    font-size:20px;
    font-weight:900;
    margin-bottom:8px;
}

.benefits-highlight span{
    display:block;
    color:rgba(255,255,255,0.76);
    line-height:1.7;
}

.benefits-floating{
    position:absolute;
    right:-24px;
    bottom:44px;
    width:170px;
    height:170px;
    border-radius:32px;
    background:var(--accent);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 25px 70px rgba(58, 138, 212,0.35);
    animation:floatCard 4.5s ease-in-out infinite;
}

.benefits-floating strong{
    font-size:44px;
    line-height:1;
    font-weight:900;
}

.benefits-floating span{
    font-size:13px;
    text-align:center;
    font-weight:800;
    max-width:110px;
    line-height:1.4;
}

@media(max-width:991px){
    .benefits-wrapper{
        grid-template-columns:1fr;
    }

    .benefits-content h2{
        font-size:38px;
    }

    .benefits-floating{
        right:16px;
    }
}

@media(max-width:575px){
    .benefits-card{
        padding:30px 24px;
        border-radius:26px;
    }

    .benefits-content h2{
        font-size:32px;
    }

    .benefits-actions a{
        width:100%;
        text-align:center;
    }

    .benefits-floating{
        position:relative;
        right:auto;
        bottom:auto;
        margin:24px auto 0;
    }
}

/* =========================
   PARTNERS
========================= */

.partners-section{
    position:relative;
    background:#fff;
    overflow:hidden;
}

.partners-section::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(19,59,107,0.05);
    top:80px;
    left:-220px;
}

.partners-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 46px;
}

.partners-header .section-kicker{
    justify-content:center;
}

.partners-header .section-kicker::before{
    display:none;
}

.partners-header .section-subtitle{
    margin:0 auto;
}

.partners-strip{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:16px;
    margin-bottom:60px;
}

.partner-logo{
    min-height:96px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    box-shadow:0 14px 40px rgba(15,23,42,0.05);
    transition:0.3s ease;
}

.partner-logo:hover{
    transform:translateY(-6px);
    border-color:rgba(58, 138, 212,0.55);
    box-shadow:0 22px 60px rgba(15,23,42,0.1);
}

.partner-logo span{
    color:var(--muted);
    font-weight:900;
    text-align:center;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:0.8px;
}

.partners-showcase{
    position:relative;
    z-index:2;
}

.partner-highlight-card{
    height:100%;
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius:30px;
    padding:38px;
    color:#fff;
    position:relative;
    overflow:hidden;
    box-shadow:0 28px 80px rgba(15,23,42,0.14);
}

.partner-highlight-card::after{
    content:"";
    position:absolute;
    width:230px;
    height:230px;
    border-radius:50%;
    background:rgba(58, 138, 212,0.18);
    right:-80px;
    bottom:-90px;
}

.partner-highlight-icon{
    width:68px;
    height:68px;
    border-radius:20px;
    background:rgba(255,255,255,0.12);
    color:var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.partner-highlight-card h3{
    font-size:28px;
    line-height:1.25;
    font-weight:900;
    margin-bottom:16px;
    position:relative;
    z-index:2;
}

.partner-highlight-card p{
    color:rgba(255,255,255,0.78);
    line-height:1.8;
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.partner-link{
    position:relative;
    z-index:2;
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--accent);
    font-weight:900;
}

.partner-link:hover{
    color:#fff;
}

.partner-link i{
    transition:0.3s;
}

.partner-link:hover i{
    transform:translateX(5px);
}

.partners-grid{
    height:100%;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

.partner-mini-card{
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:24px;
    padding:30px;
    transition:0.3s ease;
}

.partner-mini-card:hover{
    background:#fff;
    transform:translateY(-6px);
    box-shadow:0 22px 60px rgba(15,23,42,0.09);
    border-color:rgba(58, 138, 212,0.45);
}

.partner-mini-card i{
    width:56px;
    height:56px;
    border-radius:17px;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:20px;
}

.partner-mini-card h4{
    font-size:20px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:10px;
}

.partner-mini-card p{
    color:var(--muted);
    line-height:1.7;
    margin:0;
}
.partner-logo img{
    max-height:58px;
    max-width:140px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:0.78;
    transition:0.3s;
}

.partner-logo:hover img{
    filter:grayscale(0%);
    opacity:1;
}
@media(max-width:991px){
    .partners-strip{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:575px){
    .partners-strip{
        grid-template-columns:repeat(2, 1fr);
    }

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

    .partner-highlight-card{
        padding:30px 24px;
    }
}

/* =========================
   JOBS
========================= */

.jobs-section{
    position:relative;
    overflow:hidden;
}

.jobs-section::before{
    content:"";
    position:absolute;
    width:440px;
    height:440px;
    border-radius:50%;
    background:rgba(58, 138, 212,0.11);
    top:-150px;
    left:-160px;
}

.jobs-section .container-custom{
    position:relative;
    z-index:2;
}

.jobs-stats-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
}

.jobs-stat-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 18px 50px rgba(15,23,42,0.06);
    transition:0.3s;
}

.jobs-stat-card:hover{
    transform:translateY(-6px);
    border-color:rgba(58, 138, 212,0.5);
}

.jobs-stat-card strong{
    display:block;
    font-size:38px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:8px;
}

.jobs-stat-card span{
    color:var(--muted);
    font-size:13px;
    font-weight:800;
}

.jobs-wrapper{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:28px;
    align-items:stretch;
}

.jobs-info-card{
    background:
        linear-gradient(135deg, rgba(11,31,58,0.94), rgba(19,59,107,0.92)),
        url('../images/jobs-bg.jpg');
    background-size:cover;
    background-position:center;
    border-radius:32px;
    padding:40px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.jobs-info-card::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(58, 138, 212,0.18);
    bottom:-100px;
    right:-80px;
}

.jobs-icon{
    width:70px;
    height:70px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.12);
    color:var(--accent);
    font-size:30px;
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.jobs-info-card h3{
    font-size:30px;
    font-weight:900;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.jobs-info-card ul{
    list-style:none;
    padding:0;
    margin:0 0 28px;
    position:relative;
    z-index:2;
}

.jobs-info-card ul li{
    display:flex;
    gap:12px;
    margin-bottom:15px;
    line-height:1.7;
    color:rgba(255,255,255,0.86);
    font-weight:600;
}

.jobs-info-card ul li i{
    color:var(--accent);
    margin-top:5px;
}

.jobs-info-card .btn-primary-custom{
    position:relative;
    z-index:2;
}

.jobs-list-card{
    background:#fff;
    border-radius:32px;
    border:1px solid var(--border);
    padding:34px;
    box-shadow:0 22px 70px rgba(15,23,42,0.08);
}

.jobs-list-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
}

.jobs-list-header span{
    display:block;
    color:var(--accent);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:6px;
}

.jobs-list-header h3{
    font-size:30px;
    font-weight:900;
    color:var(--primary);
    margin:0;
}

.jobs-list-header a{
    color:var(--secondary);
    font-weight:900;
    white-space:nowrap;
}

.job-item{
    display:grid;
    grid-template-columns:64px 1fr;
    gap:18px;
    padding:22px;
    border:1px solid var(--border);
    border-radius:22px;
    margin-bottom:16px;
    transition:0.3s ease;
}

.job-item:hover{
    transform:translateX(6px);
    border-color:rgba(58, 138, 212,0.55);
    box-shadow:0 18px 50px rgba(15,23,42,0.07);
}

.job-company{
    width:64px;
    height:64px;
    border-radius:18px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.job-company span{
    font-size:18px;
    font-weight:900;
}

.job-detail h4{
    color:var(--primary);
    font-size:20px;
    font-weight:900;
    margin-bottom:7px;
}

.job-detail p{
    margin:0 0 12px;
    color:var(--muted);
    font-weight:600;
}

.job-detail p i{
    color:var(--accent);
    margin-right:6px;
}

.job-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.job-tags span{
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    padding:7px 11px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
}

.jobs-cta-mini{
    margin-top:22px;
    background:linear-gradient(135deg, #f8fafc, #eef4fb);
    border:1px solid var(--border);
    border-radius:22px;
    padding:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.jobs-cta-mini strong{
    display:block;
    color:var(--primary);
    font-size:18px;
    font-weight:900;
    margin-bottom:5px;
}

.jobs-cta-mini span{
    color:var(--muted);
    font-size:14px;
}

.jobs-cta-mini a{
    background:var(--primary);
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    font-weight:800;
    white-space:nowrap;
    transition:0.3s;
}

.jobs-cta-mini a:hover{
    background:var(--accent);
    color:#fff;
}

@media(max-width:991px){
    .jobs-stats-grid{
        margin-top:30px;
    }

    .jobs-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){
    .jobs-stats-grid{
        grid-template-columns:1fr;
    }

    .jobs-list-header,
    .jobs-cta-mini{
        flex-direction:column;
        align-items:flex-start;
    }

    .job-item{
        grid-template-columns:1fr;
    }

    .jobs-info-card,
    .jobs-list-card{
        padding:28px 22px;
        border-radius:26px;
    }
}

/* =========================
   NEWS
========================= */

.news-section{
    background:#fff;
}

.news-card{
    height:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 55px rgba(15,23,42,0.06);
    transition:0.35s ease;
}

.news-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 80px rgba(15,23,42,0.12);
    border-color:rgba(58, 138, 212,0.45);
}

.news-image{
    position:relative;
    height:230px;
    overflow:hidden;
}

.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.news-card:hover .news-image img{
    transform:scale(1.06);
}

.news-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent, rgba(11,31,58,0.45));
}

.news-image span{
    position:absolute;
    left:20px;
    bottom:20px;
    z-index:2;
    background:var(--accent);
    color:#fff;
    padding:8px 13px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
}

.news-content{
    padding:28px;
}

.news-content small{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--muted);
    font-size:13px;
    font-weight:700;
    margin-bottom:14px;
}

.news-content small i{
    color:var(--accent);
}

.news-content h3{
    font-size:21px;
    line-height:1.35;
    font-weight:900;
    color:var(--primary);
    margin-bottom:14px;
}

.news-content p{
    color:var(--muted);
    line-height:1.75;
    margin-bottom:20px;
}

.news-content a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--secondary);
    font-weight:900;
}

.news-content a i{
    transition:0.3s;
}

.news-content a:hover{
    color:var(--accent);
}

.news-content a:hover i{
    transform:translateX(5px);
}

/* =========================
   FINAL CTA
========================= */

.final-cta-section{
    padding:70px 0;
    background:#fff;
}

.final-cta-wrapper{
    background:
        radial-gradient(circle at top right, rgba(58, 138, 212,0.22), transparent 34%),
        linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius:36px;
    padding:56px;
    color:#fff;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:34px;
    position:relative;
    overflow:hidden;
    box-shadow:0 30px 90px rgba(15,23,42,0.18);
}

.final-cta-wrapper::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    border:1px dashed rgba(255,255,255,0.22);
    left:-80px;
    bottom:-100px;
}

.final-cta-content{
    position:relative;
    z-index:2;
}

.final-cta-content span{
    display:inline-flex;
    color:var(--accent);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.2px;
    margin-bottom:14px;
}

.final-cta-content h2{
    font-size:38px;
    line-height:1.18;
    font-weight:900;
    max-width:780px;
    margin-bottom:16px;
}

.final-cta-content p{
    color:rgba(255,255,255,0.78);
    line-height:1.8;
    max-width:720px;
    margin:0;
}

.final-cta-actions{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    gap:14px;
    min-width:220px;
}

/* =========================
   CONTACT
========================= */

.contact-section{
    background:
        linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eef4fb 100%);
}

.contact-wrapper{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:56px;
    align-items:center;
}

.contact-info h2{
    font-size:44px;
    line-height:1.15;
    font-weight:900;
    color:var(--primary);
    letter-spacing:-1px;
    margin-bottom:20px;
}

.contact-info > p{
    color:var(--muted);
    font-size:18px;
    line-height:1.85;
    margin-bottom:32px;
}

.contact-items{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:20px;
    box-shadow:0 16px 50px rgba(15,23,42,0.05);
}

.contact-item i{
    min-width:52px;
    height:52px;
    border-radius:16px;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-item strong{
    display:block;
    color:var(--primary);
    font-size:16px;
    font-weight:900;
    margin-bottom:5px;
}

.contact-item span,
.contact-item a{
    color:var(--muted);
    font-weight:600;
}

.contact-form-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:32px;
    padding:40px;
    box-shadow:0 28px 85px rgba(15,23,42,0.1);
}

.contact-form-card h3{
    font-size:30px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:26px;
}

.form-group-custom{
    margin-bottom:18px;
}

.form-group-custom label{
    display:block;
    color:var(--primary);
    font-size:14px;
    font-weight:800;
    margin-bottom:8px;
}

.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea{
    width:100%;
    border:1px solid var(--border);
    border-radius:14px;
    padding:14px 16px;
    color:var(--text);
    background:#f8fafc;
    outline:none;
    transition:0.3s;
}

.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus{
    border-color:var(--accent);
    background:#fff;
    box-shadow:0 0 0 4px rgba(58, 138, 212,0.12);
}

.form-group-custom textarea{
    resize:none;
}

/* =========================
   RESPONSIVE FINAL SECTIONS
========================= */

@media(max-width:991px){
    .final-cta-wrapper{
        grid-template-columns:1fr;
    }

    .final-cta-actions{
        flex-direction:row;
        flex-wrap:wrap;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:575px){
    .final-cta-wrapper{
        padding:36px 24px;
        border-radius:28px;
    }

    .final-cta-content h2,
    .contact-info h2{
        font-size:32px;
    }

    .final-cta-actions{
        flex-direction:column;
    }

    .final-cta-actions a{
        width:100%;
        text-align:center;
    }

    .contact-form-card{
        padding:28px 22px;
        border-radius:26px;
    }
}

/* =========================
   INNER PAGES
========================= */

.inner-hero{
    padding:160px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(58, 138, 212,0.18), transparent 34%),
        linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
    position:relative;
    overflow:hidden;
}

.inner-hero h1{
    font-size:56px;
    font-weight:900;
    line-height:1.1;
    max-width:850px;
    margin-bottom:20px;
}

.inner-hero p{
    font-size:19px;
    line-height:1.8;
    color:rgba(255,255,255,0.78);
    max-width:780px;
}

.inner-hero .section-kicker{
    color:var(--accent);
}

.about-image{
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 30px 90px rgba(15,23,42,0.14);
}

.about-image img{
    width:100%;
    height:520px;
    object-fit:cover;
}

.mission-card{
    height:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    padding:42px;
    box-shadow:0 22px 70px rgba(15,23,42,0.07);
}

.mission-card.dark{
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
}

.mission-icon{
    width:70px;
    height:70px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    font-size:30px;
    margin-bottom:24px;
}

.mission-card.dark .mission-icon{
    background:rgba(255,255,255,0.12);
    color:var(--accent);
}

.mission-card h3{
    font-size:30px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:18px;
}

.mission-card.dark h3{
    color:#fff;
}

.mission-card p{
    color:var(--muted);
    line-height:1.85;
    margin:0;
}

.mission-card.dark p{
    color:rgba(255,255,255,0.78);
}

.section-kicker.center{
    justify-content:center;
}

.section-kicker.center::before{
    display:none;
}

.leader-card{
    height:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 22px 70px rgba(15,23,42,0.08);
}

.leader-photo{
    height:320px;
    background:#eef4fb;
    overflow:hidden;
}

.leader-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.leader-content{
    padding:34px;
}

.leader-content > span{
    display:inline-flex;
    background:rgba(58, 138, 212,0.13);
    color:var(--secondary);
    padding:8px 13px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    margin-bottom:14px;
}

.leader-content h3{
    font-size:28px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:16px;
}

.leader-quote{
    color:var(--muted);
    font-style:italic;
    line-height:1.8;
    border-left:4px solid var(--accent);
    padding-left:16px;
    margin-bottom:22px;
}

.leader-content ul{
    list-style:none;
    padding:0;
    margin:0;
}

.leader-content ul li{
    display:flex;
    gap:10px;
    color:var(--muted);
    line-height:1.6;
    margin-bottom:10px;
    font-weight:600;
}

.leader-content ul li i{
    color:var(--accent);
    margin-top:4px;
}

.directorio-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.directorio-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:30px;
    text-align:center;
    box-shadow:0 18px 55px rgba(15,23,42,0.06);
    transition:0.3s;
}

.directorio-card:hover{
    transform:translateY(-7px);
    border-color:rgba(58, 138, 212,0.5);
}

.directorio-avatar{
    width: 185px;
    height: 150px;
    margin: 0 auto 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
}

.directorio-card h3{
    font-size:20px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:8px;
}

.directorio-card span{
    display:block;
    color:var(--accent);
    font-weight:800;
    margin-bottom:14px;
}

.directorio-card a{
    color:var(--muted);
    font-size:14px;
    font-weight:600;
    word-break:break-word;
}

.directorio-card a i{
    color:var(--secondary);
    margin-right:6px;
}

@media(max-width:991px){
    .inner-hero h1{
        font-size:42px;
    }

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

@media(max-width:575px){
    .inner-hero{
        padding:135px 0 70px;
    }

    .inner-hero h1{
        font-size:34px;
    }

    .about-image img{
        height:340px;
    }

    .mission-card,
    .leader-content{
        padding:28px 22px;
    }

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

/* =========================
   SERVICES PAGE
========================= */

.services-page-section{
    background:#fff;
}

.services-page-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.services-page-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:32px;
    min-height:330px;
    box-shadow:0 18px 55px rgba(15,23,42,0.06);
    transition:0.35s ease;
}

.services-page-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,166,58,0.5);
    box-shadow:0 28px 80px rgba(15,23,42,0.12);
}

.services-page-icon{
    width:66px;
    height:66px;
    border-radius:20px;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:24px;
}

.services-page-card h3{
    font-size:21px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:14px;
}

.services-page-card p{
    color:var(--muted);
    line-height:1.75;
    margin-bottom:22px;
}

.services-page-card a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--secondary);
    font-weight:900;
}

.services-page-card a:hover{
    color:var(--accent);
}

.services-page-card a i{
    transition:0.3s;
}

.services-page-card a:hover i{
    transform:translateX(5px);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.process-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:32px;
    position:relative;
    overflow:hidden;
    transition:0.3s;
}

.process-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 70px rgba(15,23,42,0.09);
}

.process-card span{
    display:block;
    font-size:46px;
    font-weight:900;
    color:rgba(212,166,58,0.28);
    line-height:1;
    margin-bottom:20px;
}

.process-card h3{
    font-size:22px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:12px;
}

.process-card p{
    color:var(--muted);
    line-height:1.7;
    margin:0;
}

@media(max-width:1199px){
    .services-page-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:991px){
    .services-page-grid,
    .process-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:575px){
    .services-page-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .services-page-card{
        min-height:auto;
    }
}

/* =========================
   PARTNERS PAGE
========================= */

.partners-page-section{
    background:#fff;
}

.partners-page-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.partner-company-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:32px 24px;
    text-align:center;
    box-shadow:0 18px 55px rgba(15,23,42,0.06);
    transition:0.35s;
}

.partner-company-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,166,58,0.5);
    box-shadow:0 28px 80px rgba(15,23,42,0.12);
}

.partner-company-logo{
    width:76px;
    height:76px;
    margin:0 auto 20px;
    border-radius:22px;
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:900;
}

.partner-company-card h3{
    font-size:20px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:8px;
}

.partner-company-card span{
    display:inline-flex;
    background:rgba(212,166,58,0.13);
    color:var(--secondary);
    padding:7px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
}

.membership-section{
    position:relative;
    overflow:hidden;
}

.membership-wrapper{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:56px;
    align-items:center;
}

.membership-content h2{
    font-size:44px;
    line-height:1.15;
    font-weight:900;
    color:var(--primary);
    margin-bottom:20px;
}

.membership-content > p{
    color:var(--muted);
    font-size:18px;
    line-height:1.85;
    margin-bottom:32px;
}

.membership-benefits{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
}

.membership-benefit{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:22px;
    display:flex;
    gap:16px;
    transition:0.3s;
}

.membership-benefit:hover{
    transform:translateY(-6px);
    border-color:rgba(212,166,58,0.5);
    box-shadow:0 18px 55px rgba(15,23,42,0.08);
}

.membership-benefit i{
    min-width:50px;
    height:50px;
    border-radius:16px;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.membership-benefit h3{
    font-size:17px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:7px;
}

.membership-benefit p{
    color:var(--muted);
    line-height:1.65;
    margin:0;
    font-size:14px;
}

.membership-card{
    background:
        radial-gradient(circle at top right, rgba(212,166,58,0.22), transparent 35%),
        linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
    border-radius:34px;
    padding:42px;
    box-shadow:0 30px 90px rgba(15,23,42,0.16);
    position:relative;
    overflow:hidden;
}

.membership-card > span{
    display:inline-flex;
    background:rgba(255,255,255,0.12);
    color:var(--accent);
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:22px;
}

.membership-card h3{
    font-size:34px;
    line-height:1.18;
    font-weight:900;
    margin-bottom:16px;
}

.membership-card p{
    color:rgba(255,255,255,0.78);
    line-height:1.8;
    margin-bottom:24px;
}

.membership-card ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.membership-card ul li{
    display:flex;
    gap:10px;
    color:rgba(255,255,255,0.86);
    font-weight:600;
    margin-bottom:13px;
}

.membership-card ul li i{
    color:var(--accent);
    margin-top:4px;
}

.partners-cta-section{
    padding:70px 0;
    background:#fff;
}

.partners-cta-box{
    background:linear-gradient(135deg, #f8fafc, #eef4fb);
    border:1px solid var(--border);
    border-radius:34px;
    padding:52px;
    text-align:center;
}

.partners-cta-box h2{
    font-size:40px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:16px;
}

.partners-cta-box p{
    color:var(--muted);
    line-height:1.8;
    max-width:750px;
    margin:0 auto 28px;
}

@media(max-width:1199px){
    .partners-page-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:991px){
    .partners-page-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .membership-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:575px){
    .partners-page-grid,
    .membership-benefits{
        grid-template-columns:1fr;
    }

    .membership-card,
    .partners-cta-box{
        padding:30px 22px;
        border-radius:26px;
    }

    .membership-content h2,
    .partners-cta-box h2{
        font-size:32px;
    }
}

/* =========================
   EVENTS PAGE
========================= */

.events-page-section{
    background:#fff;
}

.event-page-card{
    height:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 24px 75px rgba(15,23,42,0.08);
    transition:0.35s ease;
}

.event-page-card:hover{
    transform:translateY(-8px);
    box-shadow:0 34px 95px rgba(15,23,42,0.14);
}

.event-page-card.dark{
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
}

.event-page-image{
    position:relative;
    height:310px;
    overflow:hidden;
}

.event-page-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.event-page-card:hover .event-page-image img{
    transform:scale(1.06);
}

.event-page-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent, rgba(11,31,58,0.62));
}

.event-page-image span{
    position:absolute;
    left:26px;
    bottom:24px;
    z-index:2;
    background:var(--accent);
    color:#fff;
    padding:9px 15px;
    border-radius:999px;
    font-weight:900;
    font-size:13px;
}

.event-page-content{
    padding:38px;
}

.event-page-content h2{
    font-size:34px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:18px;
}

.event-page-card.dark .event-page-content h2{
    color:#fff;
}

.event-page-content > p{
    color:var(--muted);
    line-height:1.85;
    margin-bottom:26px;
}

.event-page-card.dark .event-page-content > p{
    color:rgba(255,255,255,0.78);
}

.event-page-features{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:28px;
}

.event-page-features div{
    display:grid;
    grid-template-columns:46px 1fr;
    column-gap:14px;
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:18px;
    padding:16px;
}

.event-page-card.dark .event-page-features div{
    background:rgba(255,255,255,0.08);
    border-color:rgba(255,255,255,0.12);
}

.event-page-features i{
    grid-row:span 2;
    width:46px;
    height:46px;
    border-radius:14px;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
}

.event-page-card.dark .event-page-features i{
    background:rgba(255,255,255,0.12);
    color:var(--accent);
}

.event-page-features strong{
    color:var(--primary);
    font-weight:900;
    margin-bottom:4px;
}

.event-page-card.dark .event-page-features strong{
    color:#fff;
}

.event-page-features span{
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
}

.event-page-card.dark .event-page-features span{
    color:rgba(255,255,255,0.72);
}

.event-types-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.event-type-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:32px;
    box-shadow:0 18px 55px rgba(15,23,42,0.06);
    transition:0.3s;
}

.event-type-card:hover{
    transform:translateY(-7px);
    border-color:rgba(212,166,58,0.5);
}

.event-type-card i{
    width:64px;
    height:64px;
    border-radius:20px;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:24px;
}

.event-type-card h3{
    font-size:21px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:14px;
}

.event-type-card p{
    color:var(--muted);
    line-height:1.75;
    margin:0;
}

.agenda-section{
    background:#fff;
}

.agenda-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.agenda-item{
    display:grid;
    grid-template-columns:90px 1fr auto;
    gap:22px;
    align-items:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:24px;
    box-shadow:0 18px 55px rgba(15,23,42,0.05);
    transition:0.3s;
}

.agenda-item:hover{
    transform:translateX(6px);
    border-color:rgba(212,166,58,0.55);
    box-shadow:0 24px 70px rgba(15,23,42,0.09);
}

.agenda-date{
    width:80px;
    height:80px;
    border-radius:22px;
    background:var(--primary);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.agenda-date span{
    font-size:32px;
    font-weight:900;
    line-height:1;
}

.agenda-date small{
    color:var(--accent);
    text-transform:uppercase;
    font-weight:900;
}

.agenda-category{
    display:inline-flex;
    background:rgba(212,166,58,0.13);
    color:var(--secondary);
    padding:7px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    margin-bottom:9px;
}

.agenda-content h3{
    font-size:21px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:8px;
}

.agenda-content p{
    margin:0;
    color:var(--muted);
    font-weight:600;
}

.agenda-content p i{
    color:var(--accent);
    margin-right:6px;
}

.agenda-button{
    background:var(--primary);
    color:#fff;
    padding:13px 18px;
    border-radius:12px;
    font-weight:800;
    white-space:nowrap;
    transition:0.3s;
}

.agenda-button:hover{
    background:var(--accent);
    color:#fff;
}

@media(max-width:1199px){
    .event-types-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:767px){
    .event-page-content{
        padding:28px 22px;
    }

    .event-types-grid{
        grid-template-columns:1fr;
    }

    .agenda-item{
        grid-template-columns:1fr;
    }

    .agenda-button{
        width:max-content;
    }
}

/* =========================
   NEWS PAGE
========================= */

.news-page-section{
    background:#fff;
}

.news-page-filter{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:46px;
}

.news-page-filter a{
    background:#f8fafc;
    border:1px solid var(--border);
    color:var(--secondary);
    padding:10px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    transition:0.3s;
}

.news-page-filter a:hover,
.news-page-filter a.active{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}

.news-page-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

.news-page-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 55px rgba(15,23,42,0.06);
    transition:0.35s;
}

.news-page-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,166,58,0.5);
    box-shadow:0 28px 80px rgba(15,23,42,0.12);
}

.news-page-image{
    height:240px;
    position:relative;
    overflow:hidden;
}

.news-page-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.news-page-card:hover .news-page-image img{
    transform:scale(1.06);
}

.news-page-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent, rgba(11,31,58,0.55));
}

.news-page-image span{
    position:absolute;
    left:20px;
    bottom:20px;
    z-index:2;
    background:var(--accent);
    color:#fff;
    padding:8px 13px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
}

.news-page-content{
    padding:28px;
}

.news-page-content small{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--muted);
    font-size:13px;
    font-weight:700;
    margin-bottom:14px;
}

.news-page-content small i{
    color:var(--accent);
}

.news-page-content h2{
    font-size:22px;
    line-height:1.35;
    font-weight:900;
    color:var(--primary);
    margin-bottom:14px;
}

.news-page-content p{
    color:var(--muted);
    line-height:1.75;
    margin-bottom:20px;
}

.news-page-content a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--secondary);
    font-weight:900;
}

.news-page-content a:hover{
    color:var(--accent);
}

.news-page-content a i{
    transition:0.3s;
}

.news-page-content a:hover i{
    transform:translateX(5px);
}

/* =========================
   ARTICLE DETAIL
========================= */

.article-hero{
    padding:160px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(212,166,58,0.18), transparent 34%),
        linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
}

.article-hero-content{
    max-width:900px;
}

.article-hero-content > span{
    display:inline-flex;
    background:rgba(255,255,255,0.12);
    color:var(--accent);
    padding:9px 15px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:20px;
}

.article-hero h1{
    font-size:54px;
    line-height:1.12;
    font-weight:900;
    margin-bottom:20px;
}

.article-hero p{
    color:rgba(255,255,255,0.78);
    font-size:19px;
    line-height:1.8;
    margin-bottom:24px;
}

.article-meta{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.article-meta small{
    color:rgba(255,255,255,0.75);
    font-weight:700;
}

.article-meta small i{
    color:var(--accent);
    margin-right:6px;
}

.article-section{
    background:#f8fafc;
}

.article-layout{
    display:grid;
    grid-template-columns:1fr 340px;
    gap:34px;
    align-items:start;
}

.article-content-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 22px 70px rgba(15,23,42,0.08);
}

.article-content-card > img{
    width:100%;
    height:430px;
    object-fit:cover;
}

.article-body{
    padding:42px;
}

.article-body p{
    color:var(--muted);
    font-size:17px;
    line-height:1.9;
    margin-bottom:22px;
}

.article-body h2{
    color:var(--primary);
    font-size:32px;
    font-weight:900;
    margin:34px 0 18px;
}

.article-body blockquote{
    background:linear-gradient(135deg, #f8fafc, #eef4fb);
    border-left:5px solid var(--accent);
    padding:26px;
    border-radius:18px;
    color:var(--primary);
    font-size:21px;
    line-height:1.6;
    font-weight:800;
    margin:32px 0;
}

.article-sidebar{
    position:sticky;
    top:100px;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.sidebar-card,
.sidebar-cta{
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:28px;
    box-shadow:0 18px 55px rgba(15,23,42,0.06);
}

.sidebar-card h3,
.sidebar-cta h3{
    font-size:24px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:20px;
}

.sidebar-card a{
    display:block;
    padding:16px 0;
    border-bottom:1px solid var(--border);
}

.sidebar-card a:last-child{
    border-bottom:none;
}

.sidebar-card strong{
    display:block;
    color:var(--primary);
    line-height:1.45;
    margin-bottom:7px;
}

.sidebar-card span{
    color:var(--accent);
    font-size:13px;
    font-weight:900;
}

.sidebar-cta{
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
}

.sidebar-cta h3{
    color:#fff;
}

.sidebar-cta p{
    color:rgba(255,255,255,0.78);
    line-height:1.7;
}

.sidebar-cta a{
    display:inline-flex;
    background:var(--accent);
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    font-weight:800;
}

@media(max-width:991px){
    .news-page-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .article-layout{
        grid-template-columns:1fr;
    }

    .article-sidebar{
        position:relative;
        top:auto;
    }

    .article-hero h1{
        font-size:42px;
    }
}

@media(max-width:575px){
    .news-page-grid{
        grid-template-columns:1fr;
    }

    .article-hero{
        padding:135px 0 70px;
    }

    .article-hero h1{
        font-size:34px;
    }

    .article-body{
        padding:28px 22px;
    }

    .article-content-card > img{
        height:280px;
    }
}

.news-page-content h2 a{
    color:var(--primary);
}

.news-page-content h2 a:hover{
    color:var(--accent);
}

.news-play-icon{
    position:absolute;
    top:50%;
    left:50%;
    width:64px;
    height:64px;
    border-radius:50%;
    background:rgba(212,166,58,0.92);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:translate(-50%, -50%);
    z-index:3;
    font-size:20px;
}

.news-media-placeholder{
    height:100%;
    min-height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    color:var(--accent);
    font-size:54px;
}

.news-pagination{
    margin-top:46px;
    display:flex;
    justify-content:center;
}

.empty-news-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:60px 30px;
    text-align:center;
    box-shadow:0 18px 55px rgba(15,23,42,0.06);
}

.empty-news-box i{
    font-size:54px;
    color:var(--accent);
    margin-bottom:20px;
}

.empty-news-box h3{
    font-size:28px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:10px;
}

.empty-news-box p{
    color:var(--muted);
    margin:0;
}

.article-media img{
    width:100%;
    height:430px;
    object-fit:cover;
    display:block;
}

.article-slider-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
    padding:18px;
}

.article-slider-grid img{
    height:260px;
    border-radius:18px;
}

.article-video-box{
    position:relative;
    width:100%;
    aspect-ratio:16 / 9;
    background:#000;
}

.article-video-box iframe,
.article-video-box .player{
    width:100%;
    height:100%;
    border:0;
}

.article-audio-box{
    padding:28px;
    background:#f8fafc;
}

.article-quote-box{
    padding:50px;
    background:
        radial-gradient(circle at top right, rgba(212,166,58,0.18), transparent 34%),
        linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
}

.article-quote-box blockquote{
    font-size:28px;
    line-height:1.55;
    font-weight:800;
    margin-bottom:20px;
}

.article-quote-box span{
    color:var(--accent);
    font-weight:900;
}

.article-navigation{
    border-top:1px solid var(--border);
    display:grid;
    grid-template-columns:repeat(2, 1fr);
}

.article-nav-item{
    display:flex;
    align-items:center;
    gap:16px;
    padding:24px;
    color:var(--primary);
    transition:0.3s;
}

.article-nav-item:hover{
    background:#f8fafc;
    color:var(--accent);
}

.article-nav-item.next{
    justify-content:flex-end;
    text-align:right;
    border-left:1px solid var(--border);
}

.article-nav-item img{
    width:76px;
    height:76px;
    border-radius:18px;
    object-fit:cover;
}

.article-nav-item span{
    display:block;
    color:var(--accent);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:5px;
}

.article-nav-item strong{
    display:block;
    font-size:15px;
    line-height:1.35;
}

.article-share{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.article-share a{
    width:44px;
    height:44px;
    border-radius:13px;
    background:rgba(19,59,107,0.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.article-share a:hover{
    background:var(--accent);
    color:#fff;
    transform:translateY(-3px);
}

.article-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.article-tags a{
    background:#f8fafc;
    border:1px solid var(--border);
    color:var(--secondary);
    padding:8px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
    transition:0.3s;
}

.article-tags a:hover{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}

@media(max-width:767px){
    .article-navigation{
        grid-template-columns:1fr;
    }

    .article-nav-item.next{
        border-left:none;
        border-top:1px solid var(--border);
        justify-content:flex-start;
        text-align:left;
    }

    .article-media img{
        height:280px;
    }

    .article-slider-grid{
        grid-template-columns:1fr;
    }

    .article-quote-box{
        padding:32px 24px;
    }

    .article-quote-box blockquote{
        font-size:22px;
    }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-map-section{
    padding:0 0 90px;
    background:linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eef4fb 100%);
}

.contact-map-card{
    border-radius:32px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:0 26px 80px rgba(15,23,42,0.1);
    background:#fff;
}

.map-placeholder{
    min-height:360px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:
        radial-gradient(circle at center, rgba(212,166,58,0.14), transparent 34%),
        linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
    padding:40px 24px;
}

.map-placeholder i{
    font-size:54px;
    color:var(--accent);
    margin-bottom:20px;
}

.map-placeholder h3{
    font-size:32px;
    font-weight:900;
    margin-bottom:10px;
}

.map-placeholder p{
    color:rgba(255,255,255,0.78);
    margin:0;
}

/* =========================
   FORMBUILDER CONTACT FORM
========================= */
.contact-form-card{
    position:relative;
}
.contact-form-card form{
    margin:0;
}

.contact-form-card .form-process{
    display:none;
}

.contact-form-card .row{
    margin-left:-8px;
    margin-right:-8px;
}

.contact-form-card .row > [class*="col-"]{
    padding-left:8px;
    padding-right:8px;
}

.contact-form-card .form-group{
    margin-bottom:18px;
}

.contact-form-card label{
    display:block;
    color:var(--primary);
    font-size:14px;
    font-weight:800;
    margin-bottom:8px;
}

.contact-form-card .ev-required{
    color:var(--accent);
    font-weight:900;
    margin-left:3px;
}

.contact-form-card .form-control{
    width:100%;
    min-height:52px;
    border:1px solid var(--border);
    border-radius:14px;
    background:#f8fafc;
    color:var(--text);
    padding:14px 16px;
    font-size:15px;
    font-weight:500;
    box-shadow:none;
    outline:none;
    transition:all 0.3s ease;
}

.contact-form-card textarea.form-control{
    min-height:145px;
    resize:none;
    line-height:1.7;
}

.contact-form-card select.form-control{
    cursor:pointer;
    appearance:auto;
}

.contact-form-card .form-control::placeholder{
    color:#94a3b8;
}

.contact-form-card .form-control:focus{
    border-color:var(--accent);
    background:#fff;
    box-shadow:0 0 0 4px rgba(0,131,200,0.13);
}

.contact-form-card .form-control.required{
    border-left:4px solid rgba(0,131,200,0.65);
}

.contact-form-card .form-control.required:focus{
    border-left-color:var(--accent);
}

.contact-form-card button[type="submit"],
.contact-form-card .button{
    width:100%;
    min-height:54px;
    border:none;
    border-radius:14px !important;
    background:linear-gradient(135deg, var(--accent), var(--secondary));
    color:#fff;
    font-size:15px;
    font-weight:900;
    letter-spacing:0.4px;
    text-transform:uppercase;
    box-shadow:0 16px 38px rgb(58 145 212 / 25%);
    transition:all 0.3s ease;
}

.contact-form-card button[type="submit"]:hover,
.contact-form-card .button:hover{
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 20px 50px rgba(15,23,42,0.18);
}

.contact-form-card button[type="submit"]:active,
.contact-form-card .button:active{
    transform:translateY(0);
}

/* Spinner del FormBuilder, por si se activa en modo AJAX */
.contact-form-card .form-process{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(8px);
    z-index:10;
    border-radius:32px;
    align-items:center;
    justify-content:center;
}

.contact-form-card .css3-spinner{
    width:48px;
    height:48px;
}

.contact-form-card .css3-spinner-scaler{
    width:48px;
    height:48px;
    border-radius:50%;
    border:4px solid rgba(19,59,107,0.15);
    border-top-color:var(--accent);
    animation:camaraSpin 0.8s linear infinite;
}

@keyframes camaraSpin{
    to{
        transform:rotate(360deg);
    }
}

/* Mensajes de validación o respuesta */
.contact-form-card .form-error,
.contact-form-card .error,
.contact-form-card .invalid-feedback{
    display:block;
    margin-top:7px;
    color:#b91c1c;
    font-size:13px;
    font-weight:700;
}

.contact-form-card .form-success,
.contact-form-card .success{
    background:rgba(34,197,94,0.10);
    border:1px solid rgba(34,197,94,0.25);
    color:#166534;
    padding:14px 16px;
    border-radius:14px;
    font-weight:700;
    margin-bottom:18px;
}

/* Responsive */
@media(max-width:575px){
    .contact-form-card .form-control{
        min-height:50px;
        font-size:14px;
    }

    .contact-form-card textarea.form-control{
        min-height:130px;
    }

    .contact-form-card button[type="submit"],
    .contact-form-card .button{
        min-height:52px;
        font-size:14px;
    }
}
/* =========================
   EVENT DETAIL
========================= */

.event-detail-section{
    background:#f8fafc;
}

.event-detail-layout{
    display:grid;
    grid-template-columns:1fr 340px;
    gap:34px;
    align-items:start;
}

.event-detail-main{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.event-detail-cover{
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 24px 75px rgba(15,23,42,0.12);
}

.event-detail-cover img{
    width:100%;
    height:430px;
    object-fit:cover;
    display:block;
}

.event-info-card,
.event-side-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:34px;
    box-shadow:0 18px 55px rgba(15,23,42,0.06);
}

.event-info-card h2,
.event-side-card h3{
    color:var(--primary);
    font-weight:900;
    margin-bottom:22px;
}

.event-info-card h2{
    font-size:32px;
}

.event-side-card h3{
    font-size:23px;
}

.event-info-card p,
.event-content-html{
    color:var(--muted);
    line-height:1.85;
}

.event-agenda-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.event-agenda-item{
    display:grid;
    grid-template-columns:110px 1fr;
    gap:20px;
    padding:22px;
    border:1px solid var(--border);
    border-radius:22px;
    background:#f8fafc;
}

.event-agenda-time{
    width:90px;
    height:90px;
    border-radius:22px;
    background:var(--primary);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.event-agenda-time strong{
    font-size:20px;
    font-weight:900;
}

.event-agenda-time span{
    color:var(--accent);
    font-size:13px;
    font-weight:800;
}

.event-agenda-content > span{
    display:inline-flex;
    background:rgba(212,166,58,0.13);
    color:var(--secondary);
    padding:7px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    margin-bottom:9px;
}

.event-agenda-content h3{
    color:var(--primary);
    font-size:22px;
    font-weight:900;
    margin-bottom:8px;
}

.event-agenda-content small{
    display:block;
    color:var(--muted);
    font-weight:700;
    margin-top:10px;
}

.event-agenda-content small i{
    color:var(--accent);
    margin-right:6px;
}

.agenda-speakers{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:16px;
}

.agenda-speaker{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:10px;
}

.agenda-speaker img{
    width:44px;
    height:44px;
    border-radius:50%;
    object-fit:cover;
}

.agenda-speaker strong{
    display:block;
    color:var(--primary);
    font-size:13px;
    font-weight:900;
}

.agenda-speaker span{
    color:var(--muted);
    font-size:12px;
}

.event-speakers-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
}

.event-speaker-card{
    text-align:center;
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:24px;
    padding:26px 20px;
    transition:0.3s;
}

.event-speaker-card:hover{
    transform:translateY(-6px);
    border-color:rgba(212,166,58,0.5);
}

.event-speaker-card img{
    width:110px;
    height:110px;
    border-radius:28px;
    object-fit:cover;
    margin-bottom:18px;
}

.event-speaker-card h3{
    font-size:19px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:6px;
}

.event-speaker-card span{
    display:block;
    color:var(--accent);
    font-weight:900;
    margin-bottom:4px;
}

.event-speaker-card small{
    display:block;
    color:var(--muted);
    font-weight:700;
    margin-bottom:12px;
}

.event-speaker-card p{
    font-size:14px;
    line-height:1.7;
}

.speaker-links{
    display:flex;
    justify-content:center;
    gap:8px;
}

.speaker-links a{
    width:36px;
    height:36px;
    border-radius:11px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.speaker-links a:hover{
    background:var(--accent);
    color:#fff;
}

.event-sponsors-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.event-sponsor-card{
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:22px;
    padding:24px;
    text-align:center;
    transition:0.3s;
}

.event-sponsor-card:hover{
    transform:translateY(-6px);
    border-color:rgba(212,166,58,0.5);
    background:#fff;
}

.event-sponsor-card img{
    max-width:120px;
    height:70px;
    object-fit:contain;
    margin-bottom:16px;
}

.event-sponsor-card h3{
    color:var(--primary);
    font-size:17px;
    font-weight:900;
    margin-bottom:6px;
}

.event-sponsor-card span{
    color:var(--accent);
    font-size:13px;
    font-weight:900;
}

.event-detail-sidebar{
    position:sticky;
    top:100px;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.event-side-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.event-side-card ul li{
    display:flex;
    gap:12px;
    color:var(--muted);
    font-weight:700;
    line-height:1.6;
    margin-bottom:16px;
}

.event-side-card ul li i{
    color:var(--accent);
    margin-top:4px;
}

.event-anchor-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.event-anchor-list a{
    background:#f8fafc;
    border:1px solid var(--border);
    color:var(--secondary);
    padding:12px 14px;
    border-radius:14px;
    font-weight:800;
}

.event-anchor-list a:hover{
    background:var(--primary);
    color:#fff;
}

.event-subtitle{
    font-weight:700;
    color:var(--secondary) !important;
}

@media(max-width:991px){
    .event-detail-layout{
        grid-template-columns:1fr;
    }

    .event-detail-sidebar{
        position:relative;
        top:auto;
    }

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

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

@media(max-width:575px){
    .event-detail-cover img{
        height:280px;
    }

    .event-info-card,
    .event-side-card{
        padding:26px 20px;
    }

    .event-agenda-item{
        grid-template-columns:1fr;
    }

    .event-speakers-grid,
    .event-sponsors-grid{
        grid-template-columns:1fr;
    }
}

#chatbot-btn { color: #ffffff; background: #49d7ff; }
#chatbot-btn:hover{ color: #49d7ff; border: 2px solid #49d7ff; }
.chat-widget-button{ background-color: #49d7ff; }
.chat-widget-button:hover { background-color: #49d7ff; }
.chat-widget-button .chat-widget-button-icon{ color: #ffffff; }
.chat-widget-button .chat-widget-button-text{ color: #ffffff; }
.chat-widget-conversation .chat-widget-speaker.right .chat-widget-speaker-message{ background-color: #49d7ff; color: #ffffff; }

