:root{
    --bg-color: #FAF9F9;
    --light-color: #fff;
    --main-color:#516AC3; 
    --main-color-90: rgb(81 106 195 / 90%);   
    --second-color: #5DEBBD;
    --dark-color: #1E2744;
    --gray-color: #757575;
    --max-width-container: 1200px;
    --primary-font: 'Archivo', sans-serif;
    --secondary-font: 'Lato', sans-serif;    
}

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

body {
    font-family: var( --primary-font );
    line-height: 1.6;
    color: var(--gray-color);
    background-color: var(--bg-color);
    padding-top:110px;
}

h1,h2,h3,h4,h5,h6 {
    font-family:var(--secondary-font);
    color:var(--dark-color);
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width-container);
    margin: auto;
}

.header-navbar-desktop {
    background:#fff;
    border-radius:40px;
    padding:10px 20px;
    display: flex;    
}

.header-navbar-desktop a {
    text-decoration: none;    
    padding:5px 15px;
    border-radius:20px;
    text-transform:uppercase;
    color:var(--dark-color);
    font-size:12px;
    font-family:var(--secondary-font);
    
}
.header-navbar-desktop a.active {
    color:var(--light-color);
    background-color:var(--main-color);
    font-family:var(--secondary-font);
}

.header .menu-trigger-container {
    display: none;
    align-items: center;
}


.logo {
    width:100px;    
}

.logo span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
}

.contact-btn {
    font-family: var(--primary-font);
    background: #4A90E2;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #357ABD;
}

/* Hero Section */
.hero {    
    background-repeat: no-repeat;
    background-position-y:bottom;
    background-size:contain;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;    
    max-width:1500px;
    margin:auto;    
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width:var(--max-width-container);
    margin:auto;
    text-align:right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero h1 {
    font-size: 6rem;
    letter-spacing:-.3rem;
    font-weight: 700;
    line-height: 1;
    color:var(--main-color);
    text-align:right;
    font-family: var(--secondary-font);
    margin:0;
}

.hero-subtitle {    
    font-size:4rem;
    letter-spacing:-.2rem;
    font-weight: 300;
    margin-top:0;
    margin-bottom: 30px;
    color:var(--main-color);
    font-family: var(--secondary-font);
    text-align:right;
    font-style: italic;
}

.hero-description {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    max-width: 800px;
    text-align:right;
}

.hero-cards-section {
    position:relative;
    height:600px;    
}
.hero-banner-mobile {
    display: none;
}
.hero-banner {
    width: 100%;
    position:absolute;
    top:100px;
}

.hero-cards {
    position:absolute;
    top:0;
    left:0;
    width:100%;    
    margin:auto;
    z-index:2;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.hero-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: var(--max-width-container);
    margin:auto;
}

.hero-card {    
    background-color: var(--main-color-90);    
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s, background 0.3s;
}

.hero-card:hover {
    transform: translateY(-5px);
    background-color: var(--main-color);
}
.hero-card .hero-card-icon {
    display: none;
}

.hero-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color:var(--light-color);
}

.hero-card p {
    font-size: 1.2rem;    
    color:var(--light-color);
}



.hero-image {
    margin-top: 40px;
    position: relative;
}


.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Network Section */
.network-section {
    display: flex;
    flex-direction:column;
    justify-content: center;
    background: url(../banners/Banners_Desktop_Mobile_home2.png);
    background-repeat:no-repeat;
    background-size:cover;
    color: white;
    text-align: center;
    position: relative;
    border-radius:3rem;
    margin:4rem auto;
    padding:4rem;
    max-width:var(--max-width-container);
    min-height:500px;
}


.network-content {
    display: flex;;
    position: relative;
    z-index: 2;    
    flex-direction:column;
    align-items:center;
    justify-content: center;
    height:100%;
}

.network-section h2.title {
    font-size: 5rem;
    letter-spacing:-.3rem;
    font-weight: 700;
    color:var(--light-color);
    font-family: var(--secondary-font);
    line-height:1;
    margin:0;
}
.network-section h2.subtitle {
    color:#fff;
    font-style: italic;;
    font-size:3.6rem;
    font-weight:200;
    line-height:1;
    margin-bottom:3rem;    
}


.network-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.directory-btn {
    font-family:var(--primary-font );
    font-size:1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--second-color);
    color: #2C3E50;
    padding: 15px 60px;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.directory-btn:hover {
    background: #45B7B8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
}

/* Immigration Section */
.immigration-section {
    max-width:var(--max-width-container);
    margin:auto;
    margin-bottom:50px;
}

.immigration-section h2 {
    font-size: 3rem;
    letter-spacing:-.2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1rem;
}
.immigration-section a {
    text-decoration: none;;
}
.immigration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.immigration-card {
    overflow: hidden;
}

.immigration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height:320px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {    
    background-image:url('../svg/LJU_Web_Assets_icono_video.svg');
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    opacity:.5;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.1;
}

.card-content p {
    font-family:var(--secondary-font);
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.2;
}
.card-content a.read-more {
    color:var(--dark-color);
    display: flex;
    width: 100%;
    align-items:flex-end;
    flex-direction:column;
    padding:1rem 0;
}
.card-content a.read-more:hover {
    text-decoration:underline;
}

.view-more-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background: var(--main-color);
    color: var(--light-color);
    font-family: var(--primary-font);
    padding: 15px 60px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.partners-section h2 {
    font-size: 3rem;    
    font-weight: 700;
    letter-spacing:-.2rem;
    color: var(--main-color);
    font-family: var(--secondary-font);
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.partner-logo {
    width: 100px;
    height: 100px;    
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s;
    /* background-image: url('../images/partners/logo-partner.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; */
}

.partner-logo:hover {
    transform: scale(1.1);
}
.partner-logo img {
    width: 100%;
    height: auto;
}

/* Contact Section */
.contact-section {
    background: var(--main-color);
    color: white;
    padding: 80px 0;
    scroll-margin-top:88px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width:var(--max-width-container);
    margin:auto;
    vertical-align: top;
}

.contact-text h2 {
    color:#fff;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-text .highlight {
    font-weight: 700;
    display: block;
}

.contact-text p {
    font-size: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    padding: 40px;
    border-radius: 20px;
}

.gfield {
    margin-bottom: 20px;
}

.gfield_label {
    display: none;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;

}

.gfield input,
.gfield textarea {
    width: 100%;
    padding: 15px;
    border: none;
    background: rgba(255,255,255,0.9);
    font-size: 16px;
    transition: all 0.3s;
}

.gfield input:focus,
.gfield textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.gfield textarea {
    resize: vertical;
    min-height: 120px;
}

.gfield_error input {
    border:1px solid red;
}
.gform_validation_errors {
    display: none;
}
.gform_validation_errors ol {
    display: none;
}

.gform_button {
    font-family: var(--primary-font) !important;
    background: var(--second-color) !important;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-color);
    padding: 15px 60px;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    display: block;;
}

.gform_button:hover {
    background: #45B7B8;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color:var(--dark-color);
    background-image: url(../banners/LJU_Footer_Desktop.png);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin:auto;
    max-width:var(--max-width-container);

}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4A90E2;
}
.footer-section ul {
    list-style:none;
}

.footer-section ul#menu-footer-bottom li a {
    font-size:.8rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
    font-size: 1.2rem;
}

.footer-section a:hover {
    color: #4A90E2;
}

.footer-logos {
    display: flex;
    align-items:center;
    justify-content: center;;
    gap:2rem;
    width: 100%;
}
.footer-logos .footer-logo {
    height:80px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: white;
    text-decoration: none;
    transition: all 0.3s;
}


.social-link:hover {
    background: #4A90E2;
    transform: translateY(-2px);
}

.social-icon:hover {
    fill: var(--main-color);
    transform: translateY(-2px);
}

.single-page {
    margin: 50px auto;
    max-width: 800px;
}
.single-page h1 {
    font-size:2rem;
    margin-bottom:2rem;
}
.single-page h2 {
    font-size:1rem;
    margin-bottom:1rem;
}
.single-page h3,
.single-page h4 {
    font-size:1rem;
    margin:1rem 0;
}

@media (max-width: 1200px) {
    .hero-cards-container {
        margin:0 15px;
    }
    .hero-card {
        padding: 20px 10px;
    }
    .hero-card h3 {
        font-size:1.3rem;
    }
    .hero-card p {
        font-size:1rem;        
    }
    .network-section {
        margin-left:15px;
        margin-right:15px;
    }
}

.header__trigger {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {

    .header__trigger {
        display: block;
    }

    .header-navbar-desktop {
        display: none;
    }

    .header .menu-trigger-container {
        display: flex;
        justify-content: start;
    }
    .header .menu-trigger-container button {
        -webkit-appearance: button;
        padding: 0;
        border: none;
        background: none;
        cursor:pointer;
    }
    .header .menu-trigger-container button .icon--menu {
        width:35px;
        fill:var(--color-light);
    }

    .mobile-nav {        
        position: fixed;
        top: 0;
        left: 0;        
        max-width: 100%;
        bottom: 0;
        z-index: 100;
        overflow: auto;
        background-color: var(--dark-color);        
        transition: transform .3s;
        transform: translate(100%, 0);
        width:100vw;
        padding:0;
    }
    .mobile-nav.nav-active {
        transform: translate(0%, 0);
    }
    .mobile-nav .mobile-nav-container{
        padding:20px;
        margin:auto;
    }
    .mobile-nav .mobile-nav-close-container {
        display: flex;
        flex-direction: row;
        margin-bottom: 20px;
        justify-content: space-between;
    }
    .mobile-nav .mobile-nav-logo {
        width: 70px;
        display: block;
    }
    .mobile-nav .mobile-nav-close {
        border-radius: 0;
        padding: 5px;
        width: 35px;
        height: 35px;
        display: block;
        cursor: pointer;
        border:0;
        background:none;
    }
    .mobile-nav .mobile-nav-close svg {
        fill:var(--light-color);
    }
    .mobile-nav .main-menu {
        list-style:none;
    }
    .mobile-nav .main-menu li a {
        display: block;
        text-decoration: none;
        color: #fff;
        font-size: 1.5rem;
        padding: .5rem 0;
        text-align: center;
        text-transform: uppercase;
    }


    .logo {
        width: 70px;
    }
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing:.1rem;
        line-height: 1;
    }
    .hero .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing:.1rem;
    }
    .hero .hero-description {
        font-size: 1.2rem;
    }

    .hero-cards-section {
        height:auto;
    }
    .hero-cards-container {
        gap:.5rem;
    }

    .hero-cards {
        flex-direction: row;
        align-items: center;
        gap:3px;
        padding:0 5px;
    }

    .hero-card {
        width: 33%;
        min-width:auto;
        padding:5px 0;
    }
    .hero-card h3 {
        font-size:.7rem;
    }
    .hero-card .hero-card-icon{
        width:50px;
        display: inline;
    }
    .hero-card p {
        display: none;
    }
    .hero-banner {
        display: none;
    }
    .hero-banner-mobile {
        display: block;        
        width:100%;
    }

    .network-section {
        display: flex;
        margin: 4rem 15px;
        background-position: center;
        border-radius:3rem;
        padding:6rem 15px;
        min-height:400px;
    }

    .network-section h2.title {
        font-size:2.8rem;
        letter-spacing:-.1rem;
    }
    .network-section h2.subtitle {
        font-size:2.8rem;
    }
    .network-section p{
        font-size:1.5rem;
        line-height:1.3;
    }
    .directory-btn {
        font-size:1rem;
    }
    .immigration-section h2 {
        font-size:2.5rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-text h2 {
        font-size:3rem;
        line-height: 1.1;    
    }
    .contact-text p{
        font-size:1.2rem;
    }
    .contact-form {
        padding:0;
    }

    .footer {
        background-image:url('../svg/LJU_Web_Assets_Footer_Mobile.svg');
        background-repeat:no-repeat;
        background-size:contain;
        background-position: bottom;
        padding:6rem 0 9rem 0;
    }


    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align:center;
    }

    .footer-logos{
        justify-content: center;
    }

    .footer-content .social-icons {
        justify-content: center;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 480px) {

    body {
        padding-top: 88px;
    }
    .hero {
        padding:50px 0 0 0;
    }
    .hero-cards-section {
        padding: 50px 0 0px;
        height: auto;        
    }
    .hero-banner-container {
        padding-top:50px;
    }
    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 20px;
    }

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

/* Animations */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}