/* ============================================
   MCNAMARA TRADE & FREIGHT - STATIC SITE CSS
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #050505;
    color: #F3F4F6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Clash Display', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

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

::selection {
    background: rgba(37, 99, 235, 0.3);
    color: #F3F4F6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #27272A; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2563EB; }

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .container { padding: 0 48px; }
}

/* Section */
.section {
    padding: 96px 0;
    position: relative;
}

@media (min-width: 768px) {
    .section { padding: 128px 0; }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #050505;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: fadeInUp 0.6s ease forwards;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: #27272A;
    border-radius: 1px;
    overflow: hidden;
    margin-top: 24px;
}

.loading-bar-fill {
    height: 100%;
    background: #2563EB;
    animation: loadingProgress 2s ease-in-out forwards;
}

.loading-text {
    margin-top: 16px;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #6B7280;
    font-family: 'JetBrains Mono', monospace;
    opacity: 0;
    animation: fadeIn 0.5s ease 0.4s forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    40% { width: 60%; }
    80% { width: 90%; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    to { opacity: 0.5; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(to right, #c8cdd3, #d4d8de, #b8c8dc);
    border-bottom: 1px solid rgba(156, 163, 175, 0.2);
    transition: all 0.5s ease;
}

.header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(156, 163, 175, 0.3);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

@media (min-width: 1024px) {
    .header-inner { height: 80px; padding: 0 48px; }
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: filter 0.4s ease;
}

.header-logo:hover {
    filter: drop-shadow(0 0 12px rgba(37, 99, 235, 0.6));
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    display: none;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: #111827;
}

@media (min-width: 640px) {
    .logo-text { display: block; }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .desktop-nav { display: flex; }
}

.nav-link {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #374151;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #111827;
}

.header-cta {
    display: none;
    padding: 10px 24px;
    background: #2563EB;
    color: white;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #1D4ED8;
}

@media (min-width: 1024px) {
    .header-cta { display: block; }
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: #1F2937;
    cursor: pointer;
    padding: 4px;
}

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

.mobile-nav {
    display: none;
    padding: 0 24px 24px;
    background: linear-gradient(to right, #c8cdd3, #d4d8de, #b8c8dc);
    border-bottom: 1px solid rgba(156, 163, 175, 0.3);
}

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

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #374151;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover { color: #111827; }

.mobile-cta {
    display: block;
    margin-top: 16px;
    padding: 12px 24px;
    background: #2563EB;
    color: white;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.5) 40%, rgba(5,5,5,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    text-align: left;
}

@media (min-width: 1024px) {
    .hero-content { padding: 0 48px; }
}

.hero-headline {
    font-size: 2.25rem;
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    max-width: 900px;
    margin-bottom: 32px;
}

@media (min-width: 640px) { .hero-headline { font-size: 3rem; } }
@media (min-width: 768px) { .hero-headline { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-headline { font-size: 4.5rem; } }

.text-light { color: #F3F4F6; }
.text-blue { color: #2563EB; }

.hero-sub {
    font-size: 1rem;
    color: #9CA3AF;
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 40px;
}

@media (min-width: 768px) { .hero-sub { font-size: 1.125rem; } }

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #2563EB;
    color: white;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1D4ED8;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #D1D5DB;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #6B7280;
    font-family: 'JetBrains Mono', monospace;
}

.scroll-arrow {
    color: #6B7280;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Overline */
.overline {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    color: #2563EB;
    margin-bottom: 16px;
}

/* Section Header */
.section-header { margin-bottom: 64px; }
.section-header-center { text-align: center; }

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #F3F4F6;
    margin-bottom: 16px;
}

@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.section-sub {
    font-size: 1rem;
    color: #6B7280;
    max-width: 512px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: #2563EB;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: #050505; }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    position: relative;
    overflow: hidden;
    background: #0A0A0A;
    padding: 32px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

@media (min-width: 768px) { .service-card { padding: 40px; } }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563EB, transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before { left: 100%; }

.service-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-card-bg { opacity: 0.08; }

.service-card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F3F4F6;
    margin: 24px 0 16px;
}

@media (min-width: 640px) { .service-title { font-size: 1.5rem; } }

.service-desc {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tag {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #6B7280;
}

/* ============================================
   GLOBAL REACH
   ============================================ */
.global-section { background: #050505; }

.global-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .global-grid { grid-template-columns: 2fr 3fr; gap: 64px; }
}

.global-desc {
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 32px;
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.region-dot {
    width: 8px;
    height: 8px;
    background: #2563EB;
}

.region-item span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9CA3AF;
    font-family: 'JetBrains Mono', monospace;
}

.global-map {
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0A0A0A;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) { .global-map { height: 450px; } }

.world-map-svg {
    width: 100%;
    height: 100%;
}

.map-label {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    fill: #9CA3AF;
    font-weight: 400;
}

.map-label-primary {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    fill: #E5E7EB;
    font-weight: 600;
}

.pulse-ring {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; r: 12; }
    50% { opacity: 0.1; r: 18; }
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-section { background: #0A0A0A; }

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }

.industry-card {
    background: #0A0A0A;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563EB;
    transition: width 0.4s ease;
}

.industry-card:hover::after { width: 100%; }
.industry-card:hover { border-color: rgba(255, 255, 255, 0.12); }

.industry-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #F3F4F6;
    margin: 20px 0 12px;
}

.industry-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* ============================================
   TRUST & SAFETY
   ============================================ */
.trust-section { background: #050505; overflow: hidden; }

.trust-bg-texture {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/34718931/pexels-photo-34718931.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
}

.trust-content { position: relative; }

.trust-stats { margin-bottom: 80px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 48px; }
}

.stat-number {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    color: #F3F4F6;
}

.stat-suffix {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    color: #F3F4F6;
}

@media (max-width: 768px) {
    .stat-number, .stat-suffix { font-size: 2rem; }
}

.stat-label {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6B7280;
    font-family: 'JetBrains Mono', monospace;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}

@media (min-width: 640px) { .badges-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-badge {
    display: flex;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.trust-badge:hover { border-color: rgba(37, 99, 235, 0.3); }

.trust-badge svg { flex-shrink: 0; margin-top: 2px; }

.badge-title {
    font-size: 14px;
    font-weight: 600;
    color: #E5E7EB;
    margin-bottom: 4px;
}

.badge-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section { background: #0A0A0A; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 5fr 7fr; gap: 80px; }
}

.about-text {
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fact-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    color: #2563EB;
    margin-bottom: 8px;
}

.fact-value {
    font-size: 14px;
    color: #D1D5DB;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: #050505; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 96px; }
}

.contact-desc {
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item svg { flex-shrink: 0; margin-top: 2px; }

.contact-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    color: #6B7280;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 14px;
    color: #D1D5DB;
    line-height: 1.6;
}

.contact-email {
    font-size: 14px;
    color: #D1D5DB;
    transition: color 0.3s ease;
}

.contact-email:hover { color: #60A5FA; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    color: #6B7280;
}

.form-group input,
.form-group textarea {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #E5E7EB;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input { height: 48px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #4B5563; }

.form-group input:focus,
.form-group textarea:focus { border-color: rgba(37, 99, 235, 0.5); }

.form-group textarea { resize: none; }

.btn-submit { width: fit-content; }

.form-success {
    padding: 16px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.1);
    color: #60A5FA;
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0;
    background: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img { width: 32px; height: 32px; object-fit: contain; }

.footer-logo-text {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: #D1D5DB;
}

.footer-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 280px;
}

.footer-nav-title {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    color: #6B7280;
    margin-bottom: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #6B7280;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: #E5E7EB; }

.footer-address-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-address-content svg { flex-shrink: 0; margin-top: 2px; }

.footer-address-content p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p {
    font-size: 12px;
    color: #4B5563;
}

.footer-tag {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.2em;
}

/* ============================================
   FLOATING BUTTON
   ============================================ */
.floating-quote-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2563EB;
    color: white;
    padding: 14px 24px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.floating-quote-btn:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
}

@media (max-width: 768px) {
    .floating-quote-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
