/* ============================================================
   NOBLE COLLEGE OF EDUCATION — style.css (shared)
   Used by: index.html, contact.html, admin.html
============================================================ */

/* ============================  RESET & BASE  ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: #1a1a2e; overflow-x: hidden; }
img { display: block; width: 100%; }
a { text-decoration: none; }

/* ============================  CSS VARIABLES  ============================ */
:root {
  --red: #cc0000;
  --red-dark: #aa0000;
  --navy: #111111;
  --text: #333;
  --light-text: #666;
}

/* ============================  HEADER  ============================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid #eee;
  padding: 0 5%; height: 90px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 54px; width: auto; display: block !important; object-fit: contain; max-width: 220px; }
nav { display: flex; gap: 36px; align-items: center; }
nav a { color: #222; font-size: 0.95rem; font-weight: 400; letter-spacing: 0.3px; position: relative; transition: color 0.2s; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--red); transition: width 0.3s; }
nav a:hover { color: var(--red); }
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--red); }
.btn-apply {
  background: var(--red); color: #fff; border: none;
  padding: 14px 30px; border-radius: 50px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.2s; white-space: nowrap; display: inline-block;
}
.btn-apply:hover { background: var(--red-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 26px; height: 2px; background: #1a1a2e; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; background: #fff; border-top: 1px solid #eee; padding: 20px 5%; gap: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.mobile-nav a { color: #222; font-size: 1rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid #f0f0f0; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .btn-apply { text-align: center; border-radius: 50px; margin-top: 6px; }

/* ============================  SHARED UTILITIES  ============================ */
.orange { color: var(--red); }
.section-bar { width: 36px; height: 3px; background: var(--red); margin-bottom: 22px; }
.btn-outline-orange { display: inline-block; border: 1.5px solid var(--red); color: var(--red); padding: 13px 36px; font-size: 0.9rem; font-weight: 600; transition: all 0.2s; }
.btn-outline-orange:hover { background: var(--red); color: #fff; }
.btn-black { display: inline-block; background: #111; color: #fff; padding: 16px 48px; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px; transition: background 0.2s; }
.btn-black:hover { background: #333; }

/* ============================  SHARED FORM STYLES  ============================ */
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: #444; letter-spacing: 0.5px; margin-bottom: 8px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ddd; border-radius: 8px; padding: 13px 16px;
  font-size: 0.92rem; font-family: 'Lato', sans-serif; color: #111;
  background: #fafafa; transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.08); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.btn-submit {
  width: 100%; padding: 16px; background: #111; color: #fff; border: none;
  border-radius: 8px; font-size: 0.95rem; font-weight: 700; font-family: 'Lato', sans-serif;
  cursor: pointer; transition: background 0.2s; letter-spacing: 0.5px;
}
.btn-submit:hover { background: var(--red); }
.form-success { display: none; margin-top: 16px; padding: 14px 20px; background: #f0fff4; border: 1px solid #b2dfcc; border-radius: 8px; font-size: 0.88rem; color: #1a6640; }

/* ============================  FOOTER  ============================ */
.site-footer { background: #f9c8c8; padding: 70px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid #e8b0b0; }
.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo-img { height: 50px; width: auto; display: block !important; object-fit: contain; max-width: 180px; }
.footer-address { color: #333; font-size: 0.88rem; line-height: 1.7; margin: 18px 0; }
.footer-contact-line { color: #333; font-size: 0.85rem; margin-bottom: 5px; }
.footer-contact-line b { color: #111; margin-right: 8px; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: #666; font-weight: 700; margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a { color: #333; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.accred-label { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 4px; }
.accred-code { font-size: 1.4rem; font-weight: 700; color: #111; margin-bottom: 20px; }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 0.82rem; color: #666; }

/* ============================  HERO  ============================ */
.hero { position: relative; min-height: calc(100vh - 90px); background: linear-gradient(120deg, #cc0000 0%, #990000 40%, #550000 70%, #1a0000 100%); display: flex; align-items: center; overflow: hidden; padding: 60px 5%; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(80,0,0,0.7) 100%), url('images/campus.jpg') center/cover no-repeat; opacity: 0.25; }
.hero-content { position: relative; z-index: 2; max-width: 580px; flex: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; padding: 8px 18px; color: #ccc; font-size: 0.78rem; letter-spacing: 1px; margin-bottom: 30px; backdrop-filter: blur(4px); background: rgba(255,255,255,0.05); }
.hero-badge .badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1.15; color: #fff; margin-bottom: 10px; font-weight: 700; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.75; margin: 24px 0 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: #111; color: #fff; padding: 15px 28px; border-radius: 4px; font-weight: 700; font-size: 0.95rem; transition: background 0.2s, transform 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: #333; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; padding: 14px 28px; border-radius: 4px; border: 1.5px solid rgba(255,255,255,0.7); font-weight: 600; font-size: 0.95rem; transition: all 0.2s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.hero-visual { position: relative; z-index: 2; flex: 0 0 460px; display: flex; align-items: center; justify-content: center; margin-left: auto; }
.hero-oval-wrap { position: relative; width: 340px; height: 460px; }
.hero-img-oval { position: absolute; inset: 18px; border-radius: 50%; overflow: hidden; background: #222; }
.hero-img-oval img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-oval-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; z-index: 2; }
.scroll-arrow { width: 16px; height: 16px; border-right: 1.5px solid rgba(255,255,255,0.4); border-bottom: 1.5px solid rgba(255,255,255,0.4); transform: rotate(45deg); animation: bounceDown 1.5s ease infinite; }
@keyframes bounceDown { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }

/* ============================  WELCOME  ============================ */
.welcome { padding: 80px 5%; display: flex; align-items: center; gap: 60px; background: #fff; position: relative; overflow: hidden; }
.welcome-box { display: contents; }
.welcome-text-wrap { flex: 1; padding: 50px 40px; position: relative; z-index: 3; border: 1px solid #e8e8e8; background: #fff; }
.welcome-text-wrap::before { display: none; }
.welcome-text-inner { position: relative; width: 100%; }
.welcome-text-inner::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 3px; background: var(--red); }
.welcome-text-wrap h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--navy); margin-top: 22px; margin-bottom: 4px; line-height: 1.2; }
.welcome-text-wrap h2 .orange { color: var(--red); }
.welcome-text-wrap p { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-top: 24px; }
.welcome-image-wrap { flex: 1; position: relative; overflow: visible; height: 520px; margin-left: -104px; }
.welcome-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.img-overlay { position: absolute; inset: 0; background: rgba(160,0,0,0.45); pointer-events: none; z-index: 2; }
.welcome-image-wrap::after { content: ''; position: absolute; bottom: -25px; right: -25px; width: 80px; height: 80px; border-right: 4px solid var(--red); border-bottom: 4px solid var(--red); pointer-events: none; z-index: 4; }
.welcome-image-wrap::before { content: ''; position: absolute; top: -25px; left: -25px; width: 80px; height: 80px; border-left: 4px solid #bbb; border-top: 4px solid #bbb; pointer-events: none; z-index: 4; }

/* ============================  LEARN IN MELBOURNE  ============================ */
.learn-melb { padding: 100px 5%; background: #fafafa; display: flex; align-items: center; gap: 80px; }
.learn-melb-img { flex: 1; position: relative; min-height: 520px; }
.learn-melb-img::before { content: ''; position: absolute; top: -12px; left: -12px; width: 80px; height: 80px; border-left: 3px solid #ddd; border-top: 3px solid #ddd; z-index: 0; }
.learn-melb-img img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.learn-melb-text { flex: 1; }
.learn-melb-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--navy); line-height: 1.2; margin-bottom: 4px; }
.learn-melb-text h2 .orange { color: var(--red); }
.learn-melb-text p { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-top: 24px; }

/* ============================  COURSES  ============================ */
.courses-section { padding: 100px 5%; background: #fff; }
.courses-header { text-align: center; margin-bottom: 60px; }
.courses-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); }
.courses-header h2 .orange { color: var(--red); }
.courses-header p { font-size: 0.95rem; color: var(--light-text); max-width: 680px; margin: 16px auto 0; line-height: 1.7; }
.courses-subheading { font-family: 'Playfair Display', serif; font-size: 1.5rem; text-align: center; margin-bottom: 40px; color: var(--navy); }
.courses-subheading .orange { color: var(--red); }
.courses-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.courses-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.course-card { background: #fff; display: flex; flex-direction: column; border: 1px solid #e4e4e4; border-radius: 10px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s; cursor: pointer; position: relative; }
.course-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.13); border-color: #d0d0d0; z-index: 2; }
.course-card.active-card { border-color: var(--red); box-shadow: 0 8px 30px rgba(204,0,0,0.1); }
.course-img { width: 100%; object-fit: cover; flex-shrink: 0; display: block; }
.course-body { padding: 28px 28px 20px; flex: 1; display: flex; flex-direction: column; }
.course-body h3 { font-family: 'Lato', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.course-card.active-card .course-body h3 { color: var(--red); }
.course-body p { font-size: 0.88rem; color: var(--light-text); line-height: 1.75; flex: 1; }
.course-learn { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #eee; padding: 18px 28px; font-size: 0.72rem; letter-spacing: 2px; font-weight: 700; color: var(--text); text-transform: uppercase; }
.learn-arrow { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid #ddd; display: flex; align-items: center; justify-content: center; transition: all 0.25s; flex-shrink: 0; }
.course-card.active-card .learn-arrow, .course-card:hover .learn-arrow { background: var(--red); border-color: var(--red); }
.course-card.active-card .learn-arrow svg, .course-card:hover .learn-arrow svg { stroke: #fff; }
.learn-arrow svg { width: 14px; height: 14px; stroke: #aaa; fill: none; stroke-width: 2.5; }
.courses-section-divider { margin-top: 80px; }

/* ============================  WHY CHOOSE  ============================ */
.why-choose { background: #0a0a0a; padding: 100px 5%; position: relative; overflow: hidden; }
.why-choose::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 8% 92%, rgba(160,0,0,0.22) 0%, transparent 45%); }
.why-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #fff; text-align: center; margin-bottom: 14px; position: relative; z-index: 2; }
.why-heading .orange { color: var(--red); }
.why-heading-underline { width: 70px; height: 2px; background: var(--red); margin: 0 auto 56px; position: relative; z-index: 2; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; z-index: 2; }
.why-card { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 14px; padding: 26px 22px 24px; position: relative; cursor: pointer; transition: all 0.35s ease; overflow: hidden; }
.why-card::before, .why-card::after { content: ''; position: absolute; left: 50%; width: 0%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent); transform: translateX(-50%); transition: width .45s ease; }
.why-card::before { top: 0; }
.why-card::after { bottom: 0; }
.why-card:hover::before, .why-card:hover::after, .why-card.active::before, .why-card.active::after { width: 100%; }
.why-card:hover, .why-card.active { background: #222; border-color: #333; transform: translateY(-6px); box-shadow: 0 18px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(204,0,0,0.25); }
.why-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.why-icon-wrap { width: 42px; height: 42px; border-radius: 50%; background: #2a2a2a; display: flex; align-items: center; justify-content: center; transition: all 0.35s ease; flex-shrink: 0; }
.why-card:hover .why-icon-wrap, .why-card.active .why-icon-wrap { background: var(--red); transform: scale(1.08); box-shadow: 0 0 12px rgba(204,0,0,0.6); }
.why-icon-wrap svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; }
.why-num { font-size: 4rem; font-weight: 900; font-family: 'Lato', sans-serif; color: rgba(255,255,255,0.06); line-height: 1; letter-spacing: -2px; transition: color 0.35s ease; }
.why-card:hover .why-num, .why-card.active .why-num { color: rgba(255,255,255,0.15); }
.why-card h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.45); font-size: 0.82rem; line-height: 1.65; transition: color 0.3s ease; }
.why-card:hover p, .why-card.active p { color: rgba(255,255,255,0.7); }

/* ============================  STUDY IN MELBOURNE  ============================ */
.study-melb { position: relative; padding: 120px 5%; text-align: center; overflow: hidden; }
.study-melb::before { content: ''; position: absolute; inset: 0; background: url('images/melbourne.jpg') center/cover no-repeat; opacity: 0.18; }
.study-melb-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.study-melb h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 20px; }
.study-melb h2 .orange { color: var(--red); }
.study-melb-line { width: 60px; height: 2px; background: var(--red); margin: 0 auto 30px; }
.study-melb p { font-size: 1rem; color: var(--navy); line-height: 1.8; margin-bottom: 18px; }

/* ============================  HOW TO APPLY  ============================ */
.how-apply { padding: 100px 5%; background: #fff; }
.how-apply-inner { display: flex; gap: 80px; align-items: flex-start; max-width: 1100px; margin: 0 auto; }
.how-left { flex: 0 0 300px; position: sticky; top: 110px; }
.how-left .section-label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 700; display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.how-left .section-label::before { content: ''; display: block; width: 30px; height: 2px; background: var(--red); }
.how-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem); color: #111; line-height: 1.15; margin-bottom: 8px; }
.how-left h2 .orange { color: var(--red); }
.how-left p { font-size: 0.9rem; color: var(--light-text); line-height: 1.7; margin-top: 18px; margin-bottom: 28px; }
.how-steps { flex: 1; padding-top: 4px; }
.step-item { display: flex; align-items: flex-start; position: relative; }
.step-left-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 60px; }
.step-num { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid #ccc; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: #333; letter-spacing: 0.5px; background: #fff; z-index: 1; }
.step-line { width: 1px; background: #ddd; flex: 1; min-height: 60px; }
.step-item:last-child .step-line { display: none; }
.step-content { flex: 1; padding: 8px 0 50px 24px; }
.step-item:last-child .step-content { padding-bottom: 0; }
.step-content h4 { font-size: 1.05rem; font-weight: 700; color: #111; margin-bottom: 8px; }
.step-content p { font-size: 0.88rem; color: var(--light-text); line-height: 1.65; }

/* ============================  CTA BANNER  ============================ */
.cta-banner { position: relative; padding: 60px 4%; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(10,5,5,0.88), rgba(10,5,5,0.88)), url('images/career.jpg') center/cover no-repeat; }
.cta-inner { position: relative; z-index: 2; border: 2.5px solid var(--red); padding: 70px 50px; text-align: center; }
.cta-tag { display: inline-block; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; padding: 7px 18px; margin-bottom: 28px; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 6px; line-height: 1.2; }
.cta-inner h2 .orange { color: var(--red); }
.cta-inner p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 640px; margin: 18px auto 36px; line-height: 1.75; }
.btn-white { display: inline-block; background: #fff; color: #111; padding: 16px 40px; font-weight: 700; font-size: 0.78rem; letter-spacing: 1.8px; text-transform: uppercase; transition: all 0.2s; }
.btn-white:hover { background: var(--red); color: #fff; }

/* ============================  CONTACT SECTION (index)  ============================ */
.contact-section { padding: 100px 5%; background: #fafafa; display: flex; gap: 0; align-items: stretch; }
.contact-img-wrap { flex: 0 0 38%; min-height: 420px; position: relative; }
.contact-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.contact-info-card { flex: 1; background: #fff; padding: 60px 60px 60px 70px; box-shadow: 0 4px 30px rgba(0,0,0,0.07); display: flex; flex-direction: column; justify-content: center; }
.contact-info-card h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 14px; }
.contact-info-card > p { font-size: 0.95rem; color: var(--light-text); line-height: 1.6; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 22px; }
.contact-icon-box { width: 38px; height: 38px; border: 1.5px solid var(--red); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-box svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 1.8; }
.contact-item p { font-size: 0.9rem; color: var(--text); line-height: 1.5; padding-top: 6px; }

/* ============================  CONTACT PAGE  ============================ */
.contact-hero { position: relative; padding: 100px 5%; text-align: center; overflow: hidden; min-height: 380px; display: flex; align-items: center; justify-content: center; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(180,0,0,0.82) 0%, rgba(80,0,0,0.88) 50%, rgba(10,0,0,0.92) 100%), url('images/campus.jpg') center/cover no-repeat; }
.contact-hero-inner { position: relative; z-index: 2; max-width: 860px; }
.contact-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: rgba(255,255,255,0.85); font-weight: 400; margin-bottom: 16px; }
.contact-hero h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 28px; }
.contact-hero p { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.75; max-width: 740px; margin: 0 auto; }
.contact-info-section { padding: 80px 5%; background: #fff; display: flex; align-items: stretch; min-height: 520px; overflow: hidden; }
.contact-info-left { flex: 0 0 52%; padding: 60px 5% 60px 6%; display: flex; align-items: center; }
.contact-info-box { border: 1px solid #ddd; padding: 50px 44px; position: relative; width: 100%; }
.contact-info-box::before { content: ''; position: absolute; top: 36px; left: 44px; width: 36px; height: 3px; background: var(--red); }
.contact-info-box h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-top: 28px; margin-bottom: 10px; }
.contact-info-box > p { font-size: 0.9rem; color: var(--light-text); line-height: 1.6; margin-bottom: 36px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.cinfo-icon { width: 34px; height: 34px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.cinfo-icon svg { width: 22px; height: 22px; fill: #111; }
.cinfo-text { flex: 1; }
.cinfo-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--light-text); font-weight: 700; margin-bottom: 4px; }
.cinfo-value { font-size: 1rem; color: #111; font-weight: 500; line-height: 1.5; }
.cinfo-value a { color: var(--red); text-decoration: underline; }
.contact-info-right { flex: 1; position: relative; overflow: hidden; }
.contact-info-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.contact-info-right::after { content: ''; position: absolute; bottom: -14px; right: -14px; width: 54px; height: 54px; border-right: 4px solid var(--red); border-bottom: 4px solid var(--red); z-index: 3; }
.contact-info-right::before { content: ''; position: absolute; top: -14px; left: -14px; width: 54px; height: 54px; border-left: 4px solid #bbb; border-top: 4px solid #bbb; z-index: 3; }
.campus-section { padding: 80px 5%; background: #fafafa; text-align: center; }
.campus-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 18px; }
.campus-section > p { font-size: 0.95rem; color: var(--light-text); max-width: 780px; margin: 0 auto 48px; line-height: 1.75; }
.map-wrap { position: relative; border-radius: 12px; overflow: hidden; max-width: 1100px; margin: 0 auto; box-shadow: 0 8px 40px rgba(0,0,0,0.12); }
.map-wrap iframe { width: 100%; height: 460px; border: 0; display: block; }
.map-address-badge { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); background: #fff; border-radius: 50px; padding: 14px 28px; display: flex; align-items: center; gap: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); white-space: nowrap; z-index: 4; }
.map-address-badge svg { width: 18px; height: 18px; fill: var(--red); flex-shrink: 0; }
.map-address-badge span { font-size: 0.88rem; font-weight: 600; color: #111; }
.map-address-badge small { font-size: 0.72rem; color: var(--light-text); letter-spacing: 1px; text-transform: uppercase; display: block; }
.help-section { position: relative; padding: 80px 5%; background: linear-gradient(110deg, #0a0a0a 0%, #1a0000 40%, #cc0000 100%); display: flex; align-items: center; justify-content: center; gap: 60px; overflow: hidden; min-height: 400px; }
.help-left { flex: 1; max-width: 480px; }
.help-left h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: rgba(255,255,255,0.5); font-weight: 400; margin-bottom: 8px; }
.help-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 5rem); color: rgba(255,255,255,0.12); font-weight: 900; line-height: 1; margin-bottom: 28px; }
.help-left p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; }
.help-right { flex: 1; background: #fff; border-radius: 12px; padding: 36px 36px 28px; max-width: 520px; align-self: center; }
.help-contact-item { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid #f0f0f0; }
.help-contact-item:last-of-type { border-bottom: none; }
.help-contact-icon { width: 38px; height: 38px; border-radius: 8px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.help-contact-icon svg { width: 18px; height: 18px; fill: #111; }
.help-contact-label { font-size: 0.7rem; letter-spacing: 1.5px; color: var(--light-text); text-transform: uppercase; margin-bottom: 3px; }
.help-contact-value { font-size: 0.95rem; font-weight: 600; color: #111; }
.help-provider { margin-top: 24px; padding-top: 20px; border-top: 1px solid #eee; }
.help-provider h4 { font-size: 0.85rem; font-weight: 700; color: #111; margin-bottom: 8px; }
.help-provider p { font-size: 0.85rem; color: var(--light-text); line-height: 1.8; }
.enquiry-section { padding: 80px 5%; background: #fff; text-align: center; }
.enquiry-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--red); margin-bottom: 14px; }
.enquiry-section > p { font-size: 0.95rem; color: var(--light-text); max-width: 680px; margin: 0 auto 48px; line-height: 1.7; }
.enquiry-wrap { max-width: 1100px; margin: 0 auto; display: flex; border: 1px solid #e0e0e0; border-radius: 14px; overflow: hidden; position: relative; box-shadow: 0 4px 30px rgba(0,0,0,0.07); }
.enquiry-wrap::before { content: ''; position: absolute; top: -14px; left: -14px; width: 50px; height: 50px; border-left: 4px solid var(--red); border-top: 4px solid var(--red); z-index: 3; }
.enquiry-wrap::after { content: ''; position: absolute; bottom: -14px; right: -14px; width: 50px; height: 50px; border-right: 4px solid var(--red); border-bottom: 4px solid var(--red); z-index: 3; }
.enquiry-left { flex: 0 0 38%; background: #fafafa; border-right: 1px solid #e8e8e8; padding: 50px 40px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; position: relative; }
.enquiry-left::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 60px; background: var(--red); }
.enquiry-left h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; }
.enquiry-left p { font-size: 0.88rem; color: var(--light-text); line-height: 1.7; margin-bottom: 36px; }
.enquiry-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.enquiry-info-icon { width: 36px; height: 36px; border-radius: 8px; background: #fff; border: 1px solid #e8e8e8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.enquiry-info-icon svg { width: 16px; height: 16px; fill: var(--red); }
.enquiry-info-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--light-text); margin-bottom: 2px; }
.enquiry-info-value { font-size: 0.88rem; font-weight: 600; color: #111; }
.enquiry-right { flex: 1; padding: 50px 44px; background: #fff; text-align: left; }
.speak-section { padding: 80px 5%; background: #fafafa; text-align: center; }
.speak-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); margin-bottom: 16px; }
.speak-section h2 .orange { color: var(--red); }
.speak-section p { font-size: 0.95rem; color: var(--light-text); max-width: 760px; margin: 0 auto 40px; line-height: 1.75; }
.speak-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================  RESPONSIVE  ============================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { flex: 0 0 300px; }
  .help-section { flex-direction: column; gap: 40px; }
  .help-left { max-width: 100%; }
  .help-right { max-width: 100%; width: 100%; }
}
@media (max-width: 900px) {
  nav, .btn-apply { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }
  .hero { flex-direction: column; text-align: center; padding: 60px 6%; }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero p { margin: 16px auto 28px; }
  .hero-visual { margin: 40px auto 0; flex: none; }
  .welcome { flex-direction: column; padding: 60px 6%; gap: 40px; }
  .welcome-text-wrap { width: 100%; }
  .welcome-image-wrap { height: 320px; width: 100%; margin-left: 0; }
  .learn-melb { flex-direction: column; gap: 40px; padding: 60px 6%; }
  .learn-melb-img { min-height: 300px; width: 100%; }
  .courses-grid-3 { grid-template-columns: 1fr; }
  .courses-grid-2 { grid-template-columns: 1fr; }
  .how-apply { padding: 60px 6%; }
  .how-apply-inner { flex-direction: column; gap: 40px; }
  .how-left { flex: none; position: static; }
  .contact-section { flex-direction: column; }
  .contact-img-wrap { flex: none; min-height: 260px; }
  .contact-info-card { padding: 40px 30px; }
  .contact-info-section { flex-direction: column; min-height: auto; }
  .contact-info-left { flex: none; width: 100%; padding: 50px 6%; }
  .contact-info-right { width: 100%; height: 320px; flex: none; }
  .enquiry-wrap { flex-direction: column; }
  .enquiry-left { flex: none; width: 100%; border-right: none; border-bottom: 1px solid #e8e8e8; }
  .form-row { grid-template-columns: 1fr; }
  .speak-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 40px 20px; }
  .courses-section { padding: 60px 4%; }
  .hero h1 { font-size: 2.2rem; }
  .enquiry-right { padding: 36px 24px; }
  .map-address-badge { white-space: normal; text-align: center; }
}
