:root {
    --primary: #0A2A66;
    --secondary: #00AEEF;
    --accent: #F5A623;
    --bg: #F8FAFC;
    --text: #1F2937;
    --text-light: #6B7280;
    --white: #ffffff;
    --border: #E5E7EB;
    --shadow: 0 4px 24px rgba(10,42,102,0.08);
    --shadow-hover: 0 8px 40px rgba(10,42,102,0.16);
    --radius: 12px;
    --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; }
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.3; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: #0d3380; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: #0096cc; transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #e0941a; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; background: rgba(0,174,239,0.1); color: var(--secondary); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--primary); margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

#announcement-bar {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
#announcement-bar a { color: var(--accent); font-weight: 700; margin-left: 6px; }
#announcement-bar a:hover { text-decoration: underline; }

#main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(10,42,102,0.08);
    transition: var(--transition);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo { display: flex; align-items: center; }
.logo-placeholder { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 44px; height: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.3rem; flex-shrink: 0; }
.logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; line-height: 1.3; color: var(--primary); }
.logo-text small { font-size: 0.75rem; color: var(--secondary); font-weight: 600; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 12px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 500; color: var(--text); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--secondary); background: rgba(0,174,239,0.08); }
.nav-links a.nav-cta { background: var(--accent); color: var(--white); padding: 10px 20px; border-radius: 50px; margin-left: 8px; font-weight: 600; }
.nav-links a.nav-cta:hover { background: #e0941a; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

#hero {
    min-height: 92vh;
    background: linear-gradient(135deg, var(--primary) 0%, #0d3380 40%, #1a4a8a 70%, #0e3070 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.4); color: var(--accent); padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; }
.hero-text h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.hero-typing { color: var(--accent); display: block; min-height: 1.4em; }
.hero-cursor { display: inline-block; width: 3px; background: var(--accent); margin-left: 2px; animation: blink 0.8s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-text p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 36px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 16px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span { width: 36px; height: 36px; border-radius: 50%; background: var(--secondary); border: 2px solid var(--white); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.7rem; font-weight: 700; margin-left: -8px; }
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.85rem; opacity: 0.85; }
.hero-trust-text strong { display: block; font-size: 1rem; opacity: 1; }
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 20px 24px; color: var(--white); transition: var(--transition); }
.hero-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
.hero-card-icon { font-size: 1.8rem; margin-bottom: 8px; color: var(--accent); }
.hero-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.hero-card p { font-size: 0.85rem; opacity: 0.8; }
.hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

#stats { background: var(--primary); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 32px 24px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Poppins', sans-serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--accent); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; }
.stat-icon { font-size: 1.5rem; color: var(--secondary); margin-bottom: 12px; }

#accreditation { background: var(--white); }
.accreditation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; }
.accred-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 16px; text-align: center; transition: var(--transition); }
.accred-card:hover { border-color: var(--secondary); transform: translateY(-4px); box-shadow: var(--shadow); }
.accred-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--white); font-size: 1.4rem; }
.accred-card h4 { font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.accred-card p { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }

#universities { background: var(--bg); }
.universities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.university-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: var(--transition); }
.university-card:hover { border-color: var(--secondary); transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.university-logo-placeholder { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--white); font-size: 1.8rem; }
.university-card h3 { font-size: 0.95rem; color: var(--primary); font-weight: 700; margin-bottom: 6px; }
.university-card p { font-size: 0.8rem; color: var(--text-light); }
.university-card .location { font-size: 0.8rem; color: var(--secondary); margin-top: 8px; }

#programmes-preview { background: var(--white); }
.tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.tab-btn { padding: 10px 24px; border-radius: 50px; border: 2px solid var(--border); background: transparent; font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--text); }
.tab-btn.active, .tab-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.course-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.course-card:hover { border-color: var(--secondary); transform: translateY(-4px); box-shadow: var(--shadow); }
.course-tag { display: inline-block; background: rgba(0,174,239,0.1); color: var(--secondary); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.course-card h3 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.course-card p { font-size: 0.875rem; color: var(--text-light); }
.course-card .course-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-light); }

#how-to-apply { background: var(--bg); }
.steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; position: relative; }
.step-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; position: relative; box-shadow: var(--shadow); transition: var(--transition); }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.step-number { width: 52px; height: 52px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 800; margin: 0 auto 20px; }
.step-card h3 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.875rem; color: var(--text-light); }
.step-arrow { display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 1.5rem; }

#success-stories { background: var(--white); }
.stories-slider { overflow: hidden; position: relative; }
.stories-track { display: flex; gap: 24px; transition: transform 0.4s ease; }
.story-card { min-width: 340px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; flex-shrink: 0; }
.story-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), var(--primary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.story-quote { font-size: 0.95rem; color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.story-name { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.story-meta { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }
.story-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 12px; }
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--primary); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; transition: var(--transition); }
.slider-btn:hover { background: var(--primary); color: var(--white); }

#gallery-preview { background: var(--bg); overflow: hidden; }
.gallery-track-wrapper { overflow: hidden; }
.gallery-track { display: flex; gap: 16px; animation: scrollGallery 30s linear infinite; }
.gallery-track:hover { animation-play-state: paused; }
.gallery-thumb { width: 240px; height: 180px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 2rem; cursor: pointer; }
@keyframes scrollGallery { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.gallery-preview-cta { text-align: center; margin-top: 32px; }

#video-section { background: var(--white); }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.video-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-wrapper iframe { width: 100%; height: 220px; display: block; border: none; }
.video-label { background: var(--primary); color: var(--white); padding: 12px 16px; font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 600; }

#visa-preview { background: linear-gradient(135deg, var(--primary) 0%, #0d3380 100%); color: var(--white); }
.visa-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.visa-preview-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.visa-preview-content p { opacity: 0.85; margin-bottom: 32px; font-size: 1.05rem; }
.visa-highlights { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.visa-highlight-item { display: flex; align-items: flex-start; gap: 14px; }
.visa-highlight-item i { color: var(--accent); font-size: 1.1rem; margin-top: 4px; flex-shrink: 0; }
.visa-highlight-item p { font-size: 0.95rem; opacity: 0.9; }
.visa-video-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.3); }
.visa-video-wrapper iframe { width: 100%; height: 280px; display: block; border: none; }

#downloads { background: var(--bg); }
.downloads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.download-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; transition: var(--transition); }
.download-card:hover { border-color: var(--secondary); transform: translateY(-4px); box-shadow: var(--shadow); }
.download-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; }
.download-card h3 { font-size: 1rem; color: var(--primary); font-weight: 700; }
.download-card p { font-size: 0.85rem; color: var(--text-light); }

#banking { background: var(--white); }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.accordion-header { width: 100%; background: var(--bg); border: none; padding: 20px 24px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: var(--primary); transition: var(--transition); }
.accordion-header:hover { background: rgba(0,174,239,0.05); }
.accordion-header i { transition: transform 0.3s ease; color: var(--secondary); }
.accordion-header.open i { transform: rotate(180deg); }
.accordion-body { display: none; padding: 20px 24px; border-top: 1px solid var(--border); background: var(--white); }
.accordion-body.open { display: block; }
.banking-details p { margin-bottom: 8px; font-size: 0.95rem; }
.banking-details strong { color: var(--primary); }

#enquiry-section { background: var(--bg); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.enquiry-info h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: 16px; }
.enquiry-info p { color: var(--text-light); margin-bottom: 28px; font-size: 1.05rem; }
.enquiry-contact-list { display: flex; flex-direction: column; gap: 16px; }
.enquiry-contact-item { display: flex; align-items: center; gap: 14px; }
.enquiry-contact-item .icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.icon-email { background: rgba(245,166,35,0.1); color: var(--accent); }
.icon-whatsapp { background: rgba(37,211,102,0.1); color: #25D366; }
.icon-phone { background: rgba(0,174,239,0.1); color: var(--secondary); }
.enquiry-contact-item .label { font-size: 0.8rem; color: var(--text-light); }
.enquiry-contact-item .value { font-size: 0.95rem; font-weight: 600; color: var(--primary); }
.form-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.875rem; font-weight: 600; color: var(--text); font-family: 'Poppins', sans-serif; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--secondary); background: var(--white); box-shadow: 0 0 0 3px rgba(0,174,239,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success, .form-error { padding: 14px 18px; border-radius: 8px; font-size: 0.9rem; margin-bottom: 20px; display: none; }
.form-success { background: rgba(16,185,129,0.1); color: #065f46; border: 1px solid rgba(16,185,129,0.3); }
.form-error { background: rgba(239,68,68,0.1); color: #991b1b; border: 1px solid rgba(239,68,68,0.3); }

#main-footer { background: var(--primary); color: rgba(255,255,255,0.85); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 48px; }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; opacity: 0.8; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,0.1); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.875rem; opacity: 0.8; transition: var(--transition); }
.footer-col ul a:hover { opacity: 1; color: var(--accent); padding-left: 6px; }
.footer-office { margin-bottom: 16px; }
.footer-office p { font-size: 0.875rem; opacity: 0.8; line-height: 1.8; }
.footer-office i { color: var(--accent); margin-right: 6px; }
.footer-contact-list li { margin-bottom: 12px; }
.footer-contact-list a { font-size: 0.875rem; opacity: 0.8; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-contact-list a:hover { opacity: 1; color: var(--accent); }
.footer-apply-btn { display: inline-block; margin-top: 20px; padding: 12px 28px; font-size: 0.875rem; }
.footer-logo .logo-text { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 0.85rem; opacity: 0.7; }

.floating-buttons { position: fixed; bottom: 32px; right: 28px; display: flex; flex-direction: column; gap: 14px; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); transition: var(--transition); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.float-btn:hover { transform: scale(1.12); }
.float-whatsapp { background: #25D366; animation: pulse-green 2.5s infinite; }
.float-call { background: var(--secondary); animation: pulse-blue 2.5s infinite 0.4s; }
.float-email { background: var(--accent); animation: pulse-orange 2.5s infinite 0.8s; }
@keyframes pulse-green { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.5)} 50%{box-shadow:0 0 0 12px rgba(37,211,102,0)} }
@keyframes pulse-blue { 0%,100%{box-shadow:0 0 0 0 rgba(0,174,239,0.5)} 50%{box-shadow:0 0 0 12px rgba(0,174,239,0)} }
@keyframes pulse-orange { 0%,100%{box-shadow:0 0 0 0 rgba(245,166,35,0.5)} 50%{box-shadow:0 0 0 12px rgba(245,166,35,0)} }

.page-hero { background: linear-gradient(135deg, var(--primary), #0d3380); color: var(--white); padding: 80px 0; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; opacity: 0.85; max-width: 640px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 20px; font-size: 0.875rem; opacity: 0.7; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-photo { height: 200px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 3rem; }
.team-info { padding: 20px; }
.team-info h3 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 4px; }
.team-info p { font-size: 0.85rem; color: var(--secondary); font-weight: 500; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); border-top: 4px solid var(--secondary); transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); border-top-color: var(--accent); }
.value-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 16px; }
.value-card h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; color: var(--text-light); }

.missions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.mission-block h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: 12px; }
.mission-block p { color: var(--text-light); font-size: 1rem; line-height: 1.8; }
.mission-visual { background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius); height: 300px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 5rem; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; padding: 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); position: sticky; top: 72px; z-index: 100; }
.filter-bar select { padding: 10px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 500; color: var(--text); background: var(--bg); cursor: pointer; outline: none; transition: var(--transition); }
.filter-bar select:focus { border-color: var(--secondary); }
.filter-bar .filter-reset { padding: 10px 20px; border-radius: 8px; border: 1.5px solid var(--border); background: transparent; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 0.875rem; color: var(--text-light); transition: var(--transition); }
.filter-bar .filter-reset:hover { border-color: var(--primary); color: var(--primary); }
.programmes-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.gallery-masonry { columns: 4; column-gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; cursor: pointer; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img, .gallery-placeholder { width: 100%; display: block; }
.gallery-placeholder { background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 2rem; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(10,42,102,0.5); opacity: 0; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: -16px; right: -16px; width: 40px; height: 40px; background: var(--white); border-radius: 50%; border: none; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; color: var(--primary); }

.apply-progress { display: flex; justify-content: center; gap: 0; margin-bottom: 48px; }
.apply-step { display: flex; align-items: center; }
.step-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--border); color: var(--text-light); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; position: relative; z-index: 1; transition: var(--transition); }
.step-dot.active { background: var(--primary); color: var(--white); }
.step-dot.done { background: var(--secondary); color: var(--white); }
.step-line { width: 80px; height: 2px; background: var(--border); transition: var(--transition); }
.step-line.done { background: var(--secondary); }
.step-label { position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: 0.72rem; font-weight: 600; color: var(--text-light); font-family: 'Poppins', sans-serif; }
.step-dot.active .step-label { color: var(--primary); }
.apply-step { position: relative; flex-direction: column; }
.apply-step-connector { width: 80px; height: 2px; background: var(--border); align-self: flex-start; margin-top: 20px; }
.apply-form-panel { display: none; }
.apply-form-panel.active { display: block; }
.file-upload-area { border: 2px dashed var(--border); border-radius: var(--radius); padding: 24px; text-align: center; cursor: pointer; transition: var(--transition); }
.file-upload-area:hover { border-color: var(--secondary); background: rgba(0,174,239,0.03); }
.file-upload-area i { font-size: 2rem; color: var(--text-light); margin-bottom: 8px; }
.file-upload-area p { font-size: 0.875rem; color: var(--text-light); }
.file-upload-area .filename { font-size: 0.85rem; color: var(--secondary); font-weight: 600; margin-top: 8px; display: none; }

.visa-content-section { background: var(--bg); }
.visa-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); margin-bottom: 28px; }
.visa-card h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.visa-card h3 i { color: var(--secondary); }
.visa-req-list { display: flex; flex-direction: column; gap: 12px; }
.visa-req-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; background: var(--bg); border-radius: 8px; }
.visa-req-item i { color: var(--secondary); flex-shrink: 0; margin-top: 3px; }
.visa-req-item span { font-size: 0.95rem; color: var(--text); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; }
.office-cards { display: flex; flex-direction: column; gap: 20px; }
.office-card { background: var(--bg); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.office-card h4 { color: var(--primary); font-size: 1rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.office-card h4 i { color: var(--secondary); }
.office-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

.blog-coming-soon { text-align: center; padding: 120px 24px; }
.blog-coming-soon i { font-size: 4rem; color: var(--secondary); margin-bottom: 24px; }
.blog-coming-soon h2 { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.blog-coming-soon p { color: var(--text-light); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero-text { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .enquiry-grid { grid-template-columns: 1fr; }
    .visa-preview-grid { grid-template-columns: 1fr; }
    .missions-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 3; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; box-shadow: var(--shadow); gap: 4px; }
    .nav-links.open { display: flex; }
    .nav-links a.nav-cta { border-radius: 8px; text-align: center; }
    .nav-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 2; }
    .apply-progress { gap: 0; }
    .apply-step-connector { width: 40px; }
    .filter-bar { top: 0; position: relative; }
    .stories-track { gap: 16px; }
    .story-card { min-width: 280px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery-masonry { columns: 1; }
    .hero-text h1 { font-size: 1.8rem; }
}

.booking-section { background: var(--white); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.booking-intro h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: 12px; }
.booking-intro p { color: var(--text-light); margin-bottom: 28px; font-size: 1rem; }
.booking-features { display: flex; flex-direction: column; gap: 14px; }
.booking-feature { display: flex; align-items: flex-start; gap: 14px; }
.booking-feature-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.bfi-virtual { background: rgba(0,174,239,0.1); color: var(--secondary); }
.bfi-person { background: rgba(245,166,35,0.1); color: var(--accent); }
.bfi-clock { background: rgba(10,42,102,0.08); color: var(--primary); }
.booking-feature-text strong { display: block; font-size: 0.9rem; color: var(--primary); font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 2px; }
.booking-feature-text span { font-size: 0.83rem; color: var(--text-light); }

.booking-card { background: var(--bg); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); }
.booking-type-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.type-btn { padding: 14px; border-radius: 10px; border: 2px solid var(--border); background: var(--white); cursor: pointer; text-align: center; transition: var(--transition); }
.type-btn:hover { border-color: var(--secondary); }
.type-btn.active { border-color: var(--primary); background: var(--primary); color: var(--white); }
.type-btn i { display: block; font-size: 1.4rem; margin-bottom: 6px; }
.type-btn span { font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 600; }
.type-btn.active i, .type-btn.active span { color: var(--white); }
.type-btn i { color: var(--secondary); }
.type-btn span { color: var(--text); }

.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-header h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--primary); }
.cal-nav { width: 32px; height: 32px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.85rem; transition: var(--transition); }
.cal-nav:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.cal-day-label { width: calc(100% / 7); text-align: center; font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--text-light); padding: 6px 0; text-transform: uppercase; box-sizing: border-box; }
.cal-day { width: calc(100% / 7); text-align: center; padding: 8px 2px; border-radius: 6px; font-size: 0.85rem; cursor: pointer; transition: var(--transition); border: 1.5px solid transparent; font-family: 'Poppins', sans-serif; font-weight: 500; box-sizing: border-box; }
.cal-day:hover:not(.disabled):not(.empty) { background: rgba(0,174,239,0.1); border-color: var(--secondary); color: var(--secondary); }
.cal-day.selected { background: var(--primary); color: var(--white); border-color: var(--primary); }
.cal-day.today { border-color: var(--secondary); color: var(--secondary); font-weight: 700; }
.cal-day.disabled { color: var(--border); cursor: not-allowed; }
.cal-day.empty { cursor: default; }

.time-slots { margin-top: 20px; }
.time-slots h5 { font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.time-slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-slot { padding: 10px 6px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--white); cursor: pointer; text-align: center; font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--text); transition: var(--transition); }
.time-slot:hover { border-color: var(--secondary); color: var(--secondary); }
.time-slot.selected { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

.booking-summary { margin-top: 20px; padding: 14px 16px; background: rgba(10,42,102,0.05); border-radius: 10px; border-left: 3px solid var(--primary); font-size: 0.875rem; display: none; }
.booking-summary strong { color: var(--primary); font-family: 'Poppins', sans-serif; }

@media (max-width: 768px) {
    .booking-grid { grid-template-columns: 1fr; }
    .time-slots-grid { grid-template-columns: repeat(4, 1fr); }
}

.affiliate-hero { background: linear-gradient(135deg, #0A2A66 0%, #0d3380 50%, #00AEEF 100%); color: var(--white); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.affiliate-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.affiliate-hero .section-label { background: rgba(245,166,35,0.2); color: var(--accent); }
.affiliate-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0; }
.affiliate-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 640px; margin: 0 auto 24px; }
.affiliate-reward-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--white); padding: 14px 28px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; margin-top: 8px; box-shadow: 0 8px 24px rgba(245,166,35,0.4); }
.affiliate-reward-badge i { font-size: 1.3rem; }

.affiliate-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 60px; }
.affiliate-benefit-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow); border-top: 4px solid var(--secondary); transition: var(--transition); }
.affiliate-benefit-card:hover { transform: translateY(-4px); border-top-color: var(--accent); box-shadow: var(--shadow-hover); }
.affiliate-benefit-icon { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; }
.abi-green  { background: rgba(37,211,102,0.1); color: #25D366; }
.abi-blue   { background: rgba(0,174,239,0.1); color: var(--secondary); }
.abi-orange { background: rgba(245,166,35,0.1); color: var(--accent); }
.abi-navy   { background: rgba(10,42,102,0.08); color: var(--primary); }
.affiliate-benefit-card h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.affiliate-benefit-card p { font-size: 0.875rem; color: var(--text-light); }

.affiliate-how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; counter-reset: step-counter; }
.affiliate-how-grid::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: var(--border); z-index: 0; }
.affiliate-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.affiliate-step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 4px solid var(--bg); }
.affiliate-step h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 6px; }
.affiliate-step p { font-size: 0.8rem; color: var(--text-light); }

.affiliate-form-wrap { max-width: 640px; margin: 0 auto; }

.cal-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
}

.cal-day,
.cal-day-label {
    width: auto !important;
}

.download-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.25s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.download-icon {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.download-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.download-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 14px;
}
