@import url(
'https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap'
);

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:76px;
}

:root{
    --primary:#0B2C6A;
    --primary-dark:#071D47;
    --secondary:#F4A300;
    --secondary-dark:#D88F00;
    --text:#334155;
    --muted:#64748B;
    --soft:#F6F8FC;
    --white:#FFFFFF;
    --border:#E5EAF2;
    --success:#15803D;
    --error:#DC2626;
    --shadow:0 10px 28px rgba(11,44,106,.08);
    --shadow-hover:0 16px 35px rgba(11,44,106,.14);
    --transition:.3s ease;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--white);
    color:var(--text);
    line-height:1.65;
    overflow-x:hidden;
    padding-top:72px;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea{
    font:inherit;
}

button{
    cursor:pointer;
}

.container{
    width:min(92%,1200px);
    margin-inline:auto;
}

.narrow{
    max-width:900px;
}

.section{
    padding:52px 0;
}

.section-white{
    background:var(--white);
}

.section-soft{
    background:var(--soft);
}

.section-heading{
    max-width:820px;
    margin:0 auto 28px;
    text-align:center;
}

.section-label,
.partner-label{
    color:var(--secondary);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

h1,
h2,
h3{
    color:var(--primary);
    line-height:1.25;
}

h1{
    font-size:clamp(38px,5vw,58px);
    font-weight:800;
}

h2{
    font-size:clamp(28px,3.4vw,40px);
    font-weight:700;
    margin-top:6px;
}

h3{
    font-size:20px;
    font-weight:700;
}

p{
    font-size:16px;
    color:var(--muted);
}

.section-intro{
    max-width:820px;
    margin:10px auto 0;
    text-align:center;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:12px 26px;
    border:2px solid transparent;
    border-radius:999px;
    font-size:15px;
    font-weight:600;
    transition:var(--transition);
}

.btn-primary{
    background:var(--secondary);
    color:var(--white);
    box-shadow:0 8px 20px rgba(244,163,0,.22);
}

.btn-primary:hover{
    background:var(--secondary-dark);
    transform:translateY(-2px);
}

.btn-outline{
    border-color:rgba(255,255,255,.85);
    color:var(--white);
    background:transparent;
}

.btn-outline:hover{
    background:var(--white);
    color:var(--primary);
    transform:translateY(-2px);
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,.98);
    box-shadow:0 2px 14px rgba(15,23,42,.08);
    transition:var(--transition);
}

.header-inner{
    min-height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
    min-width:180px;
}

.logo img{
    width:auto;
    max-width:220px;
    height:64px;
    object-fit:contain;
}

.logo-fallback{
    display:none;
    max-width:220px;
    color:var(--primary);
    font-size:18px;
    font-weight:700;
    line-height:1.2;
}

nav{
    display:flex;
    align-items:center;
    gap:18px;
}

nav a{
    position:relative;
    color:var(--primary);
    font-size:14px;
    font-weight:600;
    transition:var(--transition);
}

nav a:not(.apply-btn)::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:var(--transition);
}

nav a:hover,
nav a.active{
    color:var(--secondary);
}

nav a:hover::after,
nav a.active::after{
    width:100%;
}

.apply-btn{
    padding:10px 18px;
    border-radius:999px;
    color:var(--white) !important;
    background:var(--secondary);
}

.menu-toggle{
    display:none;
    width:42px;
    height:42px;
    border:0;
    background:transparent;
    color:var(--primary);
    font-size:25px;
}

.hero{
    position:relative;
    min-height:72vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:88px 0 72px;
    color:var(--white);

    background-image:
    url("./images/ireland-banner.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(5,24,58,.88) 0%,
        rgba(11,44,106,.76) 48%,
        rgba(11,44,106,.42) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    text-align:left;
}

.hero h1{
    color:var(--white);
    margin-bottom:18px;
    letter-spacing:-1px;
}

.hero-description{
    max-width:680px;
    color:rgba(255,255,255,.94);
    font-size:18px;
    line-height:1.75;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}

.hero-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:12px 24px;
    margin-top:28px;
    color:rgba(255,255,255,.95);
    font-size:14px;
    font-weight:500;
}

.hero-highlights span{
    display:flex;
    align-items:center;
    gap:8px;
}

.hero-highlights i{
    color:#FFD36A;
}

.cards{
    display:grid;
    gap:18px;
}

.cards-three{
    grid-template-columns:repeat(3,1fr);
}

.cards-four{
    grid-template-columns:repeat(4,1fr);
}

.card{
    height:100%;
    padding:24px;
    text-align:center;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:14px;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-hover);
}

.card h3{
    margin-bottom:8px;
}

.card p{
    font-size:14px;
}

.icon{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    margin:0 auto 16px;
    border-radius:50%;
    background:rgba(244,163,0,.12);
    color:var(--secondary);
}

.icon i{
    font-size:24px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.service-item{
    display:flex;
    align-items:center;
    gap:13px;
    min-height:72px;
    padding:18px 20px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:12px;
    box-shadow:var(--shadow);
    color:var(--primary);
    font-size:15px;
    font-weight:600;
}

.service-item i{
    width:36px;
    color:var(--secondary);
    font-size:22px;
    text-align:center;
}

.university-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.university-item{
    min-height:105px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:18px;
    text-align:center;
    color:var(--primary);
    font-size:15px;
    font-weight:600;
    background:var(--soft);
    border:1px solid var(--border);
    border-radius:12px;
}

.university-item i{
    color:var(--secondary);
    font-size:24px;
}

.partner-section{
    padding:45px 0;
    text-align:center;
    background:
    linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );
}

.partner-section h2{
    color:var(--white);
    margin:6px 0 12px;
}

.partner-section p{
    color:rgba(255,255,255,.86);
    max-width:780px;
    margin:auto;
}

.partner-label{
    color:#FFD36A !important;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:
    minmax(0,1.45fr)
    minmax(280px,.75fr);
    gap:24px;
    margin-top:28px;
}

.contact-form,
.contact-info{
    border:1px solid var(--border);
    border-radius:14px;
    box-shadow:var(--shadow);
}

.contact-form{
    padding:26px;
    background:var(--white);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:13px 14px;
    color:var(--text);
    background:#FBFCFE;
    border:1px solid #DCE2EA;
    border-radius:9px;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--secondary);
    box-shadow:
    0 0 0 3px rgba(244,163,0,.12);
}

.contact-form textarea{
    resize:vertical;
    min-height:105px;
}

.contact-form .btn{
    align-self:flex-start;
    border:0;
}

.contact-form .btn:disabled{
    opacity:.7;
    cursor:not-allowed;
}

.form-status{
    min-height:20px;
    font-size:13px;
    font-weight:500;
}

.form-status.success{
    color:var(--success);
}

.form-status.error{
    color:var(--error);
}

.contact-info{
    padding:26px;
    background:var(--soft);
}

.contact-info h3{
    margin-bottom:18px;
}

.contact-link{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 0;
    color:var(--primary);
    font-size:14px;
    font-weight:600;
    border-bottom:1px solid var(--border);
}

.contact-link i{
    width:25px;
    color:var(--secondary);
    font-size:18px;
}

.whatsapp-link i{
    color:#25D366;
    font-size:21px;
}

.contact-note{
    margin-top:18px;
    font-size:14px;
}

.social-links{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:16px;
}

.social-links a{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:var(--white);
    background:var(--primary);
    font-size:18px;
    transition:var(--transition);
}

.social-links a:hover{
    background:var(--secondary);
    transform:translateY(-2px);
}

footer{
    padding:30px 0 22px;
    text-align:center;
    color:var(--white);
    background:#071A3B;
}

footer h3{
    color:var(--white);
    font-size:24px;
}

footer p{
    color:#C9D2E3;
    font-size:13px;
    margin-top:7px;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px 18px;
    margin:10px 0;
}

.footer-links a{
    color:var(--white);
    font-size:13px;
}

.copyright{
    margin-top:14px;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.12);
}

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:900;
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:var(--white);
    background:#25D366;
    box-shadow:0 10px 24px rgba(0,0,0,.22);
    font-size:28px;
}

.fade-up{
    opacity:0;
    transform:translateY(22px);
    transition:
    opacity .65s ease,
    transform .65s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:1050px){

    nav{
        gap:12px;
    }

    nav a{
        font-size:13px;
    }

    .cards-three{
        grid-template-columns:repeat(2,1fr);
    }

    .cards-four,
    .university-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:820px){

    body{
        padding-top:68px;
    }

    .header-inner{
        min-height:68px;
    }

    .logo img{
        height:58px;
        max-width:190px;
    }

    .menu-toggle{
        display:grid;
        place-items:center;
    }

    nav{
        display:none;
        position:absolute;
        top:68px;
        left:0;
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:10px 18px 18px;
        background:var(--white);
        box-shadow:
        0 14px 24px rgba(15,23,42,.12);
    }

    nav.show{
        display:flex;
    }

    nav a{
        width:100%;
        padding:12px 10px;
        text-align:center;
        border-bottom:1px solid var(--border);
    }

    nav a::after{
        display:none;
    }

    .hero{
        min-height:66vh;
        padding:72px 0 56px;
    }

    .hero-overlay{
        background:rgba(5,24,58,.72);
    }

    .hero-content{
        text-align:center;
    }

    .hero-description{
        margin-inline:auto;
    }

    .hero-buttons,
    .hero-highlights{
        justify-content:center;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .section{
        padding:38px 0;
    }

    h1{
        font-size:36px;
    }

    h2{
        font-size:28px;
    }

    .hero{
        min-height:auto;
        padding:56px 0 46px;
    }

    .hero h1 br{
        display:none;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .hero-highlights{
        display:grid;
        gap:9px;
    }

    .cards-three,
    .cards-four,
    .service-grid,
    .university-grid{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form,
    .contact-info{
        padding:20px;
    }

    .contact-form .btn{
        width:100%;
    }

}
.form-status {
    display: none;
    margin-top: 16px;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.form-status:not(:empty) {
    display: block;
}

.form-status.sending {
    color: #174ea6;
    background: #eaf2ff;
    border: 1px solid #b8d1ff;
}

.form-status.success {
    color: #166534;
    background: #ecfdf3;
    border: 1px solid #86efac;
}

.form-status.error {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.contact-form button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
