/* --- FONTS DEFINTIONS --- */
@font-face {
    font-family: 'FF DIN';
    src: local('FF DIN Medium'), 
         local('FFDIN-Medium'), 
         url('fonts/ff-din-medium.ttf') format('truetype');
    font-weight: 500; /* Medium is typically 500, but use 400 if it's your primary regular weight */
    font-style: normal;
}

@font-face {
    font-family: 'FF DIN';
    src: local('FF DIN Bold'), 
         local('FFDIN-Bold'), 
         url('fonts/ff-din-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* --- SYSTEM RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #1a5270;      /* Accessible Teal Green meeting WCAG contrast thresholds */
    --accent-blue: #1a5270;       /* Deep high contrast blue */
    --neutral-grey: #4a4a4a;      /* Accessible grey text tone */
    --light-grey-bg: #f5f7f8;     /* Layout partition backgrounds */
    --border-color: #d8dee0;
}

body {
    font-family: 'FF DIN', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--primary-teal);
    outline-offset: 2px;
}

/* --- ICON HANDLING ASSETS --- */
.ui-icon-inline {
    width: 18px;
    height: auto;
    vertical-align: middle;
    display: inline-block;
    margin-right: 4px;
}

.ui-icon-btn {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.ui-icon-tab {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    vertical-align: middle;
}

.ui-icon-list {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    vertical-align: middle;
}

.ui-icon-social {
    width: 28px;
    height: 28px;
    display: block;
}

/* --- HEADER CONTAINER --- */
.main-header {
    background-color: #ffffff;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    height: 48px;
    display: block;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lang-selector {
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- HERO BLOCK --- */
.hero-section {
    background-size: cover;
    background-position: center right;
    min-height: 480px;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 40px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.breadcrumbs {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: block;
    margin-bottom: 15px;
}

.hero-section h1 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 35px;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-hero {
    background-color: #ffffff;
    color: #1a5270;
    padding: 16px 30px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-hero:hover {
    background-color: #eaf2f6;
}

/* --- NAVIGATION GRID TABS --- */
.info-tabs-section {
    background-color: var(--light-grey-bg);
    padding: 40px 20px;
    text-align: center;
}

.info-tabs-section h2 {
    font-size: 22px;
    color: var(--accent-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

.info-tab {
    background-color: #ffffff;
    color: var(--accent-blue);
    padding: 22px 20px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0px;
    border-left: 4px solid var(--primary-teal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-tab:hover {
    background-color: #eaf2f6;
}

/* --- AT A GLANCE PREVIEW --- */
.quick-links-section {
    padding: 70px 20px;
    background-color: #ffffff;
}

.quick-links-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.quick-links-image img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    display: block;
}

.section-subtitle {
    font-size: 13px;
    color: var(--neutral-grey);
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.quick-links-content h2 {
    font-size: 30px;
    color: var(--accent-blue);
    margin-bottom: 30px;
    font-weight: 700;
}

.services-list {
    list-style: none;
}

.services-list li {
    border-bottom: 1px solid var(--border-color);
}

.services-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5px;
    font-weight: 700;
    font-size: 15px;
    color: var(--accent-blue);
}

.services-list a:hover {
    color: var(--primary-teal);
}

/* --- CONTENT INNER PAGES --- */
.content-hero {
    background-size: cover;
    background-position: center;
    height: 260px;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 0 40px;
}

.content-hero h1 {
    font-size: 36px;
    font-weight: 700;
}

.sub-navigation {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 18px 20px;
}

.sub-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sub-nav-container a {
    font-size: 14px;
    color: var(--primary-teal);
    font-weight: 700;
}

.sub-nav-container a:hover {
    text-decoration: underline;
}

.main-content-area {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.alert-box {
    background-color: var(--light-grey-bg);
    border-top: 6px solid var(--accent-blue);
    padding: 40px;
    border-radius: 0 0 4px 4px;
}

.alert-box h2 {
    font-size: 22px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.alert-box p {
    font-size: 16px;
    color: #2b2b2b;
    line-height: 1.7;
}

/* --- SYSTEM FOOTER --- */
.main-footer {
    background-color: var(--accent-blue);
    color: #ffffff;
    padding: 60px 20px 40px 20px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-logo {
    height: 60px;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 6px;
}

.contact-link {
    margin-top: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-divider {
    border: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.25);
    margin: 45px auto;
    max-width: 1200px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    color: #e0e0e0;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* --- ACCESSIBLE OVERLAY DRAWER --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dimmed background behind the menu box */
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start; /* Aligns the box to the top right area */
    padding-top: 20px;
    padding-right: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-panel {
    width: 100%;
    max-width: 580px; /* Matched to the proportion in the photo */
    background-color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(0);
    border-top: 4px solid var(--accent-blue); /* The distinct thick top blue border line */
}

.menu-header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.close-menu {
    background: none;
    border: none;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

/* Subtle custom X graphic for the close button text if your HTML doesn't have one */


.menu-nav ul {
    list-style: none;
}

.menu-nav li {
    border-bottom: 1px solid var(--accent-blue); /* Dark blue separator lines between all items */
}

.dropdown-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5px;
    font-family: inherit;
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* All items in uppercase like the screen capture */
    cursor: pointer;
}

/* Pure CSS clean chevron down arrow style to replace standard text arrows */
.arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--accent-blue);
    border-bottom: 2px solid var(--accent-blue);
    transform: rotate(45deg);
    margin-right: 8px;
    transition: transform 0.2s ease;
}

/* Flips chevron if dropdown menu item is opened */
.dropdown-menu.open + .dropdown-trigger .arrow,
.dropdown-trigger[aria-expanded="true"] .arrow {
    transform: rotate(-135deg);
}

.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height 0.2s ease-out;
}

.dropdown-menu.open {
    max-height: 400px;
    padding: 10px 15px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 5px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

/* --- MOBILE RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 850px) {
    .quick-links-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .hero-section h1 {
        font-size: 32px;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
    }
    .header-container {
        padding: 12px 15px;
    }
    .logo {
        height: 38px;
    }
}