:root {
    --atag-blue: #0b3c74;
    --atag-gold: #f0c541;
    --atag-slate: #0d1b2a;
    --atag-light: #f4f7fb;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background-color: var(--atag-light);
    color: var(--atag-slate);
    scroll-behavior: smooth;
}

main {
    overflow: hidden;
}

.navbar {
    background: rgba(13, 27, 42, 0.8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.navbar .nav-link,
.navbar-brand {
    color: #ffffff !important;
}

.topbar {
    background: #061324;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    padding: 0.35rem 0;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.topbar a:hover {
    color: #ffffff;
}

.topbar-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.topbar-list i {
    color: var(--atag-gold);
    margin-right: 0.4rem;
}

.page-navbar {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(6, 19, 36, 0.08);
    padding: 1rem 0;
    position: relative;
    z-index: 1050;
}

.page-navbar .navbar-brand {
    color: var(--atag-slate) !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.page-navbar .navbar-brand i {
    color: var(--atag-gold);
    font-size: 1.5rem;
}

.page-navbar .nav-link {
    color: rgba(13, 27, 42, 0.75) !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease;
}

.page-navbar .nav-link:hover,
.page-navbar .nav-link.active {
    color: var(--atag-blue) !important;
}

.page-navbar .dropdown-hover {
    position: relative;
}

.page-navbar .dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 18px 45px rgba(6, 19, 36, 0.12);
    padding: 0.75rem 0;
    margin-top: 0;
    min-width: 220px;
    z-index: 1060;
}

.page-navbar .dropdown-item {
    padding: 0.55rem 1.5rem;
    color: rgba(13, 27, 42, 0.75);
    font-weight: 500;
}

.page-navbar .dropdown-item:hover,
.page-navbar .dropdown-item.active {
    background: rgba(11, 60, 116, 0.08);
    color: var(--atag-blue);
}

@media (min-width: 992px) {
    .page-navbar .dropdown-hover .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        pointer-events: none;
    }

    .page-navbar .dropdown-hover:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.page-navbar .navbar-toggler {
    border: none;
}

.page-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-home {
    background: rgba(6, 19, 36, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    max-width: 1400px;
    margin: 1rem auto;
    padding: 0.5rem 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.navbar-home .navbar-brand {
    color: #ffffff !important;
    font-size: 1.2rem;
}

.navbar-home .navbar-brand i {
    color: var(--atag-gold);
}

.navbar-home .navbar-nav {
    gap: 0.25rem;
}

.navbar-home .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 0.95rem;
}

.navbar-home .nav-link:hover,
.navbar-home .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

.navbar-home .dropdown-hover {
    position: relative;
}

.navbar-home .dropdown-hover .dropdown-menu {
    display: block;
    position: absolute;
    background: rgba(6, 19, 36, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    top: 100%;
    left: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar-home .dropdown-hover:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-home .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1.25rem;
    border-radius: 0;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-home .dropdown-item:last-child {
    border-bottom: none;
}

.navbar-home .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.nav-search-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.nav-search-icon:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--atag-gold);
}

.btn-nav-cta {
    background: var(--atag-gold) !important;
    color: var(--atag-slate) !important;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(240, 197, 65, 0.25);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(240, 197, 65, 0.35);
}

.nav-phone-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
}

.nav-phone-label {
    font-size: 0.7rem;
}

.nav-phone-number {
    font-size: 0.95rem;
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-offcanvas {
    width: 320px !important;
    background: #ffffff;
}

.mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.25rem 1.5rem;
}

.mobile-nav-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--atag-slate);
    font-weight: 500;
    font-size: 1rem;
    text-align: left;
    transition: background 0.2s ease;
}

.mobile-nav-link:hover {
    background: rgba(11, 60, 116, 0.05);
}

.mobile-nav-link i {
    color: var(--atag-blue);
    transition: transform 0.3s ease;
}

.mobile-nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    background: rgba(11, 60, 116, 0.03);
    padding: 0.5rem 0;
}

.mobile-nav-submenu a {
    display: block;
    padding: 0.75rem 2.5rem;
    color: rgba(13, 27, 42, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-submenu a:hover {
    background: rgba(11, 60, 116, 0.08);
    color: var(--atag-blue);
}

.mobile-nav-gallery {
    padding: 1.5rem;
    margin-top: 1rem;
}

.mobile-nav-gallery h6 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@media (max-width: 991.98px) {
    .navbar-home {
        border-radius: 24px;
        padding: 1rem;
        width: calc(100% - 2rem);
        margin: 0.75rem auto;
    }
}

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-home {
    padding: 9rem 0 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 60, 116, 0.9), rgba(20, 20, 30, 0.9)), url("https://images.unsplash.com/photo-1526378722484-bd91ca387e72?auto=format&fit=crop&w=1400&q=80") center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(240, 197, 65, 0.35), transparent 55%), radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.15), transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.3vw, 1.3rem);
}

.hero-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.25rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.25rem;
}

.btn-hero-cta {
    box-shadow: 0 20px 45px rgba(240, 197, 65, 0.25);
}

.hero-watch {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-watch-button {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.hero-watch-button i {
    font-size: 1.45rem;
}

.hero-watch:hover {
    color: var(--atag-gold);
}

.hero-watch:hover .hero-watch-button {
    transform: translateY(-3px);
    border-color: rgba(240, 197, 65, 0.65);
    background: rgba(240, 197, 65, 0.18);
}

.hero-feature-wrap {
    margin-top: 4rem;
}

.hero-feature-grid {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 26px;
    box-shadow: 0 30px 60px rgba(6, 19, 36, 0.35);
    overflow: hidden;
}

.hero-feature-card {
    height: 100%;
    padding: 2.25rem 2rem;
    background: transparent;
    color: var(--atag-slate);
    text-align: left;
}

.hero-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    background: rgba(11, 60, 116, 0.1);
    color: var(--atag-blue);
    font-size: 1.6rem;
}

.hero-feature-card h3 {
    color: var(--atag-blue);
}

.hero-feature-card p {
    color: rgba(13, 27, 42, 0.75);
}

@media (min-width: 768px) {
    .hero-feature-grid > div:not(:last-child) .hero-feature-card {
        border-right: 1px solid rgba(11, 60, 116, 0.08);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 7rem 0 3rem;
    }

    .hero-feature-card {
        border-bottom: 1px solid rgba(11, 60, 116, 0.08);
        padding: 1.75rem 1.5rem;
    }

    .hero-feature-grid > div:last-child .hero-feature-card {
        border-bottom: none;
    }
}

.btn-atag {
    background: var(--atag-gold);
    color: var(--atag-slate);
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-atag:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(11, 60, 116, 0.25);
    color: var(--atag-slate);
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--atag-gold);
    font-weight: 700;
    font-size: 0.85rem;
}

.section-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.registration-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(11, 60, 116, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 28px 48px rgba(13, 31, 54, 0.12);
}

@media (min-width: 992px) {
    .registration-card {
        flex-direction: row;
    }
}

.registration-sidebar {
    background: #0d1f36;
    color: #ffffff;
    padding: 2.25rem 1.9rem;
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.75rem;
}

.registration-sidebar > .mb-5 {
    margin-bottom: 1.5rem !important;
}

.registration-sidebar-brand {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--atag-gold);
}

.registration-sidebar-step {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.registration-sidebar-copy {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
    font-size: 0.92rem;
}

.registration-steps {
    list-style: none;
    margin: 0;
    padding: 0;
}

.registration-steps li {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.85rem 0 0.85rem 0.2rem;
    opacity: 0.55;
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-height: 72px;
}

.registration-steps li::after {
    content: '';
    position: absolute;
    top: 48px;
    left: 20px;
    width: 2px;
    height: calc(100% - 52px);
    background: rgba(255, 255, 255, 0.16);
}

.registration-steps li:last-child::after {
    display: none;
}

.registration-steps li.active {
    opacity: 1;
    transform: translateX(6px);
}

.registration-steps li.completed {
    opacity: 0.85;
}

.step-index {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    color: #ffffff;
}

.registration-steps li.active .step-index {
    background: var(--atag-gold);
    color: var(--atag-slate);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.registration-steps li.completed .step-index {
    background: rgba(255, 255, 255, 0.18);
    color: var(--atag-gold);
}

.step-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.registration-steps li.active .step-title {
    color: #fddf8e;
}

.registration-steps li.completed .step-title {
    color: rgba(255, 255, 255, 0.9);
}

.step-copy {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.registration-steps li.active .step-copy {
    color: rgba(255, 255, 255, 0.78);
}

.registration-steps li.completed .step-copy {
    color: rgba(255, 255, 255, 0.7);
}

.status-check-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem 1.35rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-check-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.status-check-copy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.status-check-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-check-field {
    display: flex;
    flex-direction: column;
}

.status-check-input {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    color: #ffffff;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.status-check-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.status-check-input:focus {
    outline: none;
    border-color: var(--atag-gold);
    box-shadow: 0 0 0 3px rgba(253, 223, 142, 0.24);
}

.status-check-input--invalid {
    border-color: #ff7b7b;
    box-shadow: 0 0 0 3px rgba(255, 123, 123, 0.28);
}

.status-check-button {
    align-self: flex-start;
    background: var(--atag-gold);
    color: var(--atag-slate);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.45rem 1.4rem;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.status-check-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(253, 223, 142, 0.28);
    background: #f2c751;
    color: var(--atag-slate);
}

.status-check-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.status-check-feedback {
    min-height: 1.25rem;
    font-size: 0.85rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.2s ease;
}

.status-check-feedback--muted {
    color: rgba(255, 255, 255, 0.55);
}

.status-check-feedback--success {
    color: #9ff6c2;
}

.status-check-feedback--pending {
    color: #ffe39a;
}

.status-check-feedback--warning {
    color: #ffd2a8;
}

.status-check-feedback--error {
    color: #ffb1b1;
}

.registration-content {
    flex: 1;
    background: #ffffff;
    padding: 2.25rem 1.9rem;
}

@media (min-width: 1200px) {
    .registration-content {
        padding: 2.75rem 2.6rem;
    }
}

.registration-content-header {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.registration-emoji {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--atag-light);
    border-radius: 16px;
    font-size: 1.5rem;
}

.registration-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .registration-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.registration-actions .btn-registration {
    align-self: flex-end;
}

.btn-registration {
    background: var(--atag-blue);
    color: #ffffff;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 16px 26px rgba(11, 60, 116, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-registration:hover {
    transform: translateY(-2px);
    background: #0a3566;
    box-shadow: 0 22px 32px rgba(11, 60, 116, 0.28);
    color: #ffffff;
}

.btn-registration:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(11, 60, 116, 0.25);
}

.modern-form .form-label {
    font-weight: 600;
    color: rgba(13, 27, 42, 0.78);
    font-size: 0.95rem;
}

.modern-form .form-control,
.modern-form .form-select,
.modern-form textarea {
    border-radius: 12px;
    border: 1px solid rgba(11, 60, 116, 0.16);
    padding: 0.7rem 0.9rem;
    background: #ffffff;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modern-form .form-control:focus,
.modern-form .form-select:focus,
.modern-form textarea:focus {
    border-color: var(--atag-blue);
    box-shadow: 0 0 0 0.2rem rgba(11, 60, 116, 0.12);
}

.modern-form .form-check-lg .form-check-input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
}

.modern-form .form-check-label {
    font-weight: 500;
    color: rgba(13, 27, 42, 0.76);
    font-size: 0.95rem;
}

.modern-form .invalid-feedback {
    font-size: 0.8rem;
}

.modern-form .row {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}

@media (max-width: 991.98px) {
    .registration-sidebar {
        padding: 2rem 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .registration-card {
        border-radius: 20px;
    }

    .registration-content {
        padding: 2rem 1.5rem;
    }

    .modern-form .form-control,
    .modern-form .form-select,
    .modern-form textarea {
        padding: 0.85rem 1rem;
    }
}

.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(11, 60, 116, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(11, 60, 116, 0.12);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.values-grid .value-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 18px 35px rgba(11, 60, 116, 0.08);
}

.value-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    border-radius: 12px;
    background: rgba(11, 60, 116, 0.1);
    color: var(--atag-blue);
    font-size: 1.25rem;
}

.event-card {
    position: relative;
    overflow: hidden;
}

.event-card img {
    height: 210px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.event-card .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(11, 60, 116, 0.9);
}

.project-item {
    background: linear-gradient(135deg, rgba(11, 60, 116, 0.1), rgba(240, 197, 65, 0.1));
    border: 1px solid rgba(11, 60, 116, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
}

.blog-feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 20px 40px rgba(11, 60, 116, 0.08);
}

.media-gallery img {
    border-radius: 16px;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.contact-card {
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(11, 60, 116, 0.95), rgba(13, 27, 42, 0.95));
    color: #ffffff;
    padding: 2.5rem;
}

.footer {
    background: #061324;
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

.page-hero {
    position: relative;
    padding: 6.5rem 0;
    color: #ffffff;
    background: linear-gradient(120deg, rgba(6, 19, 36, 0.85), rgba(11, 60, 116, 0.75)), url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80") center/cover;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(240, 197, 65, 0.2), transparent 55%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 55%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-weight: 700;
    font-size: clamp(2.25rem, 4.2vw, 3.4rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.05rem;
    max-width: 760px;
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.icon-list li i {
    color: var(--atag-blue);
    font-size: 1.25rem;
}

.callout {
    border-radius: 20px;
    background: rgba(240, 197, 65, 0.1);
    border: 1px solid rgba(240, 197, 65, 0.4);
    padding: 2rem;
}

section {
    position: relative;
}

section::after {
    content: "";
    position: absolute;
    inset: auto 5% -60px 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(11, 60, 116, 0.3), transparent);
}

section:last-of-type::after {
    display: none;
}
