/* ===== GLOBAL ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary:        #003366;
    --primary-mid:    #0C4DA2;
    --primary-light:  #1A6FC4;
    --accent:         #C9A84C;
    --accent-light:   #E5C76B;
    --bg:             #FFFFFF;
    --bg-light:       #F4F6FA;
    --bg-dark:        #0A1628;
    --text:           #1A1A2E;
    --text-muted:     #6B7280;
    --border:         #E5E7EB;
    --shadow-sm:      0 1px 4px rgba(0,51,102,0.07), 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md:      0 4px 20px rgba(0,51,102,0.09), 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg:      0 12px 40px rgba(0,51,102,0.14), 0 4px 16px rgba(0,0,0,0.08);
    --radius-sm:      8px;
    --radius:         12px;
    --radius-lg:      18px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section        { padding: 88px 0; }
.section--light { background: var(--bg-light); }

.section-label {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.72;
}

.section-header           { margin-bottom: 48px; }
.section-header--center   { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
                background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    white-space: nowrap;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.btn--sm {
    padding: 9px 18px;
    font-size: 13px;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.38);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== HEADER / NAV ===== */





/* ===== HERO ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    background: url('/assets/images/hero-australia.jpg') center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        130deg,
        rgba(0, 20, 60, 0.91) 0%,
        rgba(0, 51, 102, 0.86) 50%,
        rgba(12, 77, 162, 0.70) 100%
    );
}

.hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    border: 60px solid rgba(201,168,76,0.07);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.18);
    border: 1px solid rgba(201,168,76,0.45);
    color: var(--accent-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(32px, 5.5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.hero-title .highlight { color: var(--accent); }

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.80);
    line-height: 1.72;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== CTA ===== */
.cta-section {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 460px; height: 460px;
    background: rgba(12,77,162,0.38);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 320px; height: 320px;
    background: rgba(201,168,76,0.09);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-text { max-width: 560px; }

.cta-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.cta-title .accent { color: var(--accent); }

.cta-desc {
    font-size: 15.5px;
    color: rgba(255,255,255,0.70);
    line-height: 1.72;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}



