/* ! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --color3: #0dcaf0;
    --color4: #198754;
    --white: white;
    --light: #f8f9fa;
    --dark: #212529;
}

body,
html {
    min-height: 100vh;
}

/* Reset and Base Styles */
.logo img {
    height: 2em;
}

.element-box h1 {
    margin-left: -1.4rem;
}

.element-box {
    font-size: 1.2em;
    grid-area: 1 / 1;
    align-self: start;
    top: 0;
    background: #d9d9d9;
    padding: 3rem;
    box-shadow: var(--shadow-card);

    /* ensure it sits above background layers but below hero content if needed */
    z-index: 5;
    color: #000000;
    margin: 0 10%;
    max-width: 80%;
}

.footer-menu {
    display: none;
}

@media (min-width: 1024px) {
    .element-box {
        left: 10%;
        width: 40em;
    }
}

@media (min-width: 1400px) {
    .footer-menu {
        display: block;
    }

    .footer-menu ul {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
    }

    .footer-menu ul a {
        text-transform: uppercase;
    }
}

li.spacer {
    font-size: 2rem;
    margin-top: -0.8rem;
}

.post-block a {
    color: #87a2bd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.flags {
    font-size: 20px;
    line-height: 20px;
}

.flags a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
        "Ubuntu", "Cantarell", sans-serif;
    line-height: 1.6;
    color: hsl(210, 20%, 15%);
    background-color: hsl(0, 0%, 100%);
}

/* CSS Variables - Design System */
:root {
    /* Core Brand Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(210, 20%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(210, 20%, 15%);

    /* Brand Primary - Deep Blue */
    --primary: hsl(0, 0%, 16%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-dark: hsl(217, 91%, 45%);
    --primary-light: hsl(217, 91%, 75%);

    /* Secondary - Warm Gray */
    --secondary: hsl(210, 10%, 96%);
    --secondary-foreground: hsl(210, 20%, 25%);

    /* Accent - Vibrant Coral */
    --accent: hsl(12, 92%, 65%);
    --accent-foreground: hsl(0, 0%, 100%);
    --muted: hsl(210, 10%, 96%);
    --muted-foreground: hsl(210, 15%, 55%);
    --border: hsl(210, 15%, 90%);

    /* Gradients */
    --hero-gradient: linear-gradient(135deg,
            hsl(217, 91%, 60%),
            hsl(12, 92%, 65%));
    --section-gradient: linear-gradient(180deg,
            hsl(210, 10%, 98%),
            hsl(0, 0%, 100%));
    --loading-bg: linear-gradient(135deg,
            hsl(217, 91%, 60%),
            hsl(217, 91%, 45%));

    /* Shadows */
    --shadow-elegant: 0 20px 40px -12px hsl(217, 91%, 60%, 0.15);
    --shadow-card: 0 4px 20px -4px hsl(210, 20%, 15%, 0.08);

    /* Transitions */
    --transition: all 0.3s ease;
    --fade-duration: 0.8s;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity var(--fade-duration) ease-out,
        visibility var(--fade-duration) ease-out;
    max-width: 100%;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #022436;
    opacity: 1;
    height: 100vh;
    width: 100%;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0);
    transition:
        opacity var(--fade-duration) ease-out,
        background var(--fade-duration) ease-out;
}

.loading-overlay.visible {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
}

.loading-text {
    position: relative;
    z-index: 10;
    text-align: right;

    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity var(--fade-duration) ease-out,
        transform var(--fade-duration) ease-out;

    color: var(--foreground);
    padding: 0 1.5rem;
}

.loading-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.loading-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.loading-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    opacity: 0.9;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

/* Main Content */
.main-content {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}

.main-content.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Header */
.header {
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.header-content {
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    display: flex;
    padding: 3rem 1.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    text-transform: uppercase;
}

.desktop-nav a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.header-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    width: 100%;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition);
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-locale {
    display: block;
}

.desktop-locale {
    display: none;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem;
    border-top: 1px solid var(--border);
    animation: fadeInDown 0.3s ease-out;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-cta {
    margin-top: 1rem;
    align-self: flex-start;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-hero {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-elegant);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    display: grid;
    min-height: 100vh;
}

.hero-bg.services {
    background: url("ship.avif");
    background-position: center top;
    background-size: cover;
}

.hero-bg .services {
    background: url("assets/ship.avif");
}

.hero-bg {
    grid-area: 1/1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/assets/storm-small-0c22b8f3.avif");
    opacity: 0.9;
    background-position: center top;
    background-size: cover;
    background-attachment: scroll;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape-1 {
    position: absolute;
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 4s infinite;
}

.hero-shape-2 {
    position: absolute;
    bottom: -10rem;
    left: -10rem;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 4s infinite 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    animation: slideUp 0.6s ease-out;
}

.hero-badge {
    margin-bottom: 2rem;
}

.hero-badge span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(to right, white, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 9999px;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Content Section */
.content-section {
    display: grid;
    row-gap: 2em;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-content {
    animation: slideUp 0.6s ease-out;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.feature-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.about-card-wrapper {
    animation: slideUp 0.6s ease-out 0.2s both;
}

.about-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--card-foreground);
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--muted-foreground);
}

/* Features Section */
.features-section {
    margin-top: 5rem;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out both;
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg,
            rgba(74, 144, 226, 0.1),
            rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--card-foreground);
    margin-bottom: 1rem;
}

.feature-card-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary);
    color: #d9d9d9;
    padding: 2rem;
}

.footer-content {
    display: flex;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    align-content: center;
    grid-area: 1 / 4 / 2 / 5;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo svg,
.footer-logo svg * {
    fill: #d9d9d9 !important;
    color: #d9d9d9 !important;
}

.footer-logo img {
    max-height: 3rem;
    display: block;
    object-fit: contain;
}

.footer-description {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    text-align: center;
    text-justify: auto;
}

.social-links span {
    display: flex;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #d9d9d9;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d9d9d9;
    opacity: 0.9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    text-decoration: none;
    transition:
        color 0.18s ease,
        text-decoration 0.18s ease;
}

.contact-info a:hover,
.contact-info a:focus,
.contact-info a:active {
    color: var(--primary-foreground);
    text-decoration: underline;
    outline: none;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-foreground);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(-50%, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(-50%, -30px, 0);
    }

    70% {
        transform: translate3d(-50%, -15px, 0);
    }

    90% {
        transform: translate3d(-50%, -4px, 0);
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 1024px) {
    .footer-bottom {
        margin-top: 1rem;
    }

    .post-content {
        padding: 0 1rem;
    }
}

@media (min-width: 768px) {
    .mobile-locale {
        display: none;
    }

    .desktop-locale {
        display: block;
    }

    .desktop-nav {
        display: flex;
    }

    .header-cta {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        display: flex;
    }
}

.flags+a::before,
.flags a::before {
    display: none;
}

.footer-menu .desktop-nav .flags {
    display: none;
}

.loading-title img {
    max-width: 100%;
    height: auto;
    width: auto;
}

.post-block {
    display: flex;
    background-color: #d9d9d9;
    position: relative;
    overflow: hidden;
}

.post-reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.post-image {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.post-content h2, .post-overlay h2 {
    text-transform: uppercase;
}

.post-content,
.post-overlay {
    flex: 0 0 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background-color: rgba(217, 217, 217, 0.95);
    transition: transform 0.4s ease-in-out;
}

/* Default positions - content visible, overlay hidden off-screen */
.post-block:not(.post-reverse) .post-content,
.post-block:not(.post-reverse) .post-overlay {
    right: 0;
}

.post-block:not(.post-reverse) .post-content {
    transform: translateX(0);
}

.post-block:not(.post-reverse) .post-overlay {
    transform: translateX(100%);
}

.post-reverse .post-content,
.post-reverse .post-overlay {
    left: 0;
}

.post-reverse .post-content {
    transform: translateX(0);
}

.post-reverse .post-overlay {
    transform: translateX(-100%);
}

/* Active state - content slides out, overlay slides in */
.post-block.active:not(.post-reverse) .post-content {
    transform: translateX(100%);
}

.post-block.active:not(.post-reverse) .post-overlay {
    transform: translateX(0);
}

.post-block.active.post-reverse .post-content {
    transform: translateX(-100%);
}

.post-block.active.post-reverse .post-overlay {
    transform: translateX(0);
}

.image-hidden {
    display: none;
}

nav.desktop-nav a.current {
    color: #87a2bd;
    font-weight: bold;
    font-size: 1.3em;
}

nav.desktop-nav a.current::before {
    font-size: 1em;
}

nav.desktop-nav a::before {
    font-weight: bold;
    font-size: 1.3em;
    color: black;
}

nav.desktop-nav a:not(:first-child)::before {
    content: "|";
    padding-right: 2em;
}

.contact-form {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

.contact-form-subtitle {
    color: #64748b;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-form input {
    width: 100%;
    border: 1px solid #e5e7eb;
    padding: 0.85rem 1rem;
    color: #334155;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.01);
    transition: border-color 0.2s;
}

.contact-form input:focus {
    border-color: #2563eb;
}

.contact-form input:blur {
    border-color: #e5e7eb;
}

.contact-form textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    padding: 1rem;
    color: #334155;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.01);
    resize: vertical;
    transition: border-color 0.2s;
}

.contact-form-textarea:focus {
    border-color: #2563eb;
}

.contact-form-textarea:blur {
    border-color: #e5e7eb;
}

.contact-form-submit {
    text-align: left;
}

.contact-us {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.contact-us div ul {
    list-style-type: none;
}

.contact-us img {
    width: 100%;
    padding-top: 1rem;
}

.contact-us .contact-info {
    margin-top: 2rem;
}

.black,
.contact-us a {
    color: black;
}

.alert {
    background-color: var(--card);
    box-shadow: var(--shadow-card);
    padding: 2rem;
    border-radius: 0.5rem;
}

.alert-success {
    background-color: rgba(0, 128, 0, 0.45);
}
