/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --accent-color: #10b981;
    --dark-bg: #1f2937;
    --darker-bg: #111827;
    --light-bg: #f9fafb;
    --text-dark: #111827;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --reveal-duration: 720ms;
    --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --reveal-distance: 24px;
    --reveal-scale: 0.965;
    --reveal-delay: 0ms;
    --reveal-child-delay: 90ms;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Responsive Images & Embeds */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

/* Scroll Reveal System */
[data-animate] {
    --reveal-translate-x: 0px;
    --reveal-translate-y: 0px;
    opacity: 0;
    transform: translate3d(var(--reveal-translate-x), var(--reveal-translate-y), 0) scale(var(--reveal-scale));
    transition:
        opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
        transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
    will-change: opacity, transform;
}

[data-animate="fade-in"] {
    --reveal-translate-y: 0px;
    --reveal-scale: 1;
}

[data-animate="fade-up"] {
    --reveal-translate-y: var(--reveal-distance);
    --reveal-scale: 1;
}

[data-animate="slide-left"] {
    --reveal-translate-x: var(--reveal-distance);
    --reveal-scale: 1;
}

[data-animate="slide-right"] {
    --reveal-translate-x: calc(var(--reveal-distance) * -1);
    --reveal-scale: 1;
}

[data-animate="scale-in"] {
    --reveal-translate-y: 12px;
}

[data-animate].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

[data-stagger-children] > * {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity var(--reveal-duration) var(--reveal-ease),
        transform var(--reveal-duration) var(--reveal-ease);
    transition-delay: calc(var(--reveal-delay) + (var(--reveal-child-delay) * var(--reveal-index, 0)));
}

[data-stagger-children].is-revealed > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-animate].reveal-reduced-motion,
[data-animate].reveal-reduced-motion > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-animate],
    [data-stagger-children] > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

iframe {
    border: 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Prevent horizontal scroll on small screens */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Announcement Banner */
.announcement-banner-link {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    text-decoration: none;
    color: white;
    display: block;
    cursor: pointer;
    animation: slideDown 0.4s ease-out;
    overflow: hidden;
}

.announcement-banner {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
    padding: 0.45rem 1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent
    );
    transition: left 0.6s ease;
}

.announcement-banner-link:hover .announcement-banner {
    background: linear-gradient(135deg, #3a7af0 0%, #7c4df0 50%, #e5479d 100%);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.34);
    filter: saturate(1.04) brightness(1.02);
}

.announcement-banner-link:hover .announcement-banner::before {
    left: 100%;
}

.announcement-banner-link:active .announcement-banner {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    filter: saturate(1.02) brightness(0.99);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-banner-link.hidden {
    animation: slideUp 0.3s ease-out forwards;
    pointer-events: none;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner-link:hover .live-indicator {
    background: rgba(255, 255, 255, 0.22);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner-link:hover .live-dot {
    animation: pulseFast 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    background: #dc2626;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
    }
}

@keyframes pulseFast {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
}

.live-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner-link:hover .live-text {
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.announcement-message {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner-link:hover .announcement-message {
    transform: scale(1.02);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.announcement-message strong {
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner-link:hover .announcement-message strong {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.banner-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: absolute;
    right: 1rem;
    backdrop-filter: blur(10px);
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.banner-close:active {
    transform: scale(0.95);
}

/* Adjust header position when banner is visible */
.header {
    background-color: var(--darker-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
}

body:has(.announcement-banner-link:not(.hidden)) .header {
    top: 43px;
}

body:has(.announcement-banner-link:not(.hidden)) .hero {
    margin-top: 43px;
}

body:has(.announcement-banner-link:not(.hidden)) /* Header & Navigation */

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
    min-width: 0;
}

.logo a {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo a:hover .logo-image {
    transform: rotate(-3deg) scale(2.415);
}

.logo-image {
    position: relative;
    top: 10px;
    height: 60px;
    width: auto;
    margin-right: 50px;
    object-fit: contain;
    transform: scale(2.3);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo h1 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.logo a:hover h1 {
    color: #fbbf24;
    text-shadow: 2px 2px 8px rgba(251, 191, 36, 0.4);
}

.logo .tagline {
    color: var(--text-white);
    font-size: 0.75rem;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.logo a:hover .tagline {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.15rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-left: 1rem;
    min-width: 0;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-new-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.14rem 0.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #111827;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #fbbf24);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-link-pill:hover,
.nav-link-pill.active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    flex: 0 0 auto;
    position: relative;
}

.language-switcher-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    font-size: 1.28rem;
    line-height: 1;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.language-switcher-trigger:hover,
.language-switcher-trigger:focus {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(251, 191, 36, 0.55);
    outline: none;
    transform: translateY(-1px);
}

.language-switcher-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, 44px);
    gap: 0.45rem;
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.96);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
    z-index: 1100;
    animation: languageMenuIn 0.18s ease;
}

.language-switcher-menu[hidden] {
    display: none;
}

.language-switcher-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-size: 1.32rem;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.language-switcher-option:hover,
.language-switcher-option:focus,
.language-switcher-option[aria-selected="true"] {
    background: rgba(251, 191, 36, 0.18);
    border-color: rgba(251, 191, 36, 0.55);
    outline: none;
    transform: translateY(-1px);
}

@keyframes languageMenuIn {
    from {
        opacity: 0;
        transform: translateY(-4px) scale(0.98);
    }

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

#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget,
iframe.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

@media (max-width: 1180px) {
    .logo h1 {
        font-size: 1.6rem;
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    .nav-link-pill {
        padding: 0.45rem 0.7rem;
    }
}

@media (max-width: 1024px) {
    .nav-wrapper {
        gap: 1rem;
    }

    .nav-menu {
        margin-left: 0;
    }

    .markets-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .logo-image {
        height: 52px;
        margin-right: 44px;
    }

    .logo h1 {
        font-size: 1.45rem;
    }

    .logo .tagline {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .nav-menu {
        gap: 0.55rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .nav-link-pill {
        padding: 0.4rem 0.58rem;
        gap: 0.35rem;
    }

    .nav-new-badge {
        font-size: 0.58rem;
    }

    .stats-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: url('images/main_page_background.jpg') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.dual-path-hero {
    min-height: 100vh;
    padding: 6rem 0 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.46), rgba(30, 41, 59, 0.58)),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: auto, 100px 100px;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.36) 0%,
        rgba(59, 130, 246, 0.18) 50%,
        rgba(15, 23, 42, 0.34) 100%
    );
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--text-white);
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.dual-path-kicker {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    color: #fde68a;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.42rem 0.92rem;
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}


.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.02rem;
    margin-bottom: 1.1rem;
    opacity: 0.98;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 0, 0, 0.5);
    color: #f0f0f0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f97316, var(--secondary-dark));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Award Recognition Section */
.stats-bar-section {
    position: relative;
    margin-top: 0;
    z-index: 3;
    padding: 1.75rem 0 1rem;
    background: #f8fafc;
}

.stats-bar-shell {
    max-width: 1160px;
}

.stats-bar-intro {
    text-align: center;
    margin-bottom: 1.35rem;
}

.stats-bar-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.stats-bar-item {
    background: rgba(255, 255, 255, 0.96);
    padding: 1.2rem 1.1rem;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    min-height: 100%;
}

.stats-bar-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stats-bar-item span {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.award-recognition {
    background: linear-gradient(180deg, 
        #1e3a8a 0%, 
        #1e40af 30%, 
        #2563eb 60%,
        #f8fafc 100%
    );
    padding: 5rem 0 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.award-recognition-compact {
    padding: 3rem 0 3.75rem 0;
}

.award-recognition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.award-recognition::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255, 215, 0, 0.04) 60px,
        rgba(255, 215, 0, 0.04) 120px
    );
    animation: shine-slide 20s linear infinite;
    pointer-events: none;
}

@keyframes shine-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.award-recognition-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
}

.award-recognition-compact .award-recognition-content {
    gap: 2.25rem;
}

.award-recognition-compact .awards-display {
    gap: 1.5rem;
}

.award-recognition-compact .award-recognition-image {
    max-height: 150px;
    width: auto;
}

.award-recognition-compact .award-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.award-recognition-compact .award-description {
    max-width: 520px;
}

.awards-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.award-badge-wrapper {
    position: relative;
    transition: all 0.4s ease;
}

.award-badge-wrapper:hover {
    transform: translateY(-10px);
}

.award-recognition-image {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.5));
    animation: gentle-float 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

.award-badge-wrapper:nth-child(2) .award-recognition-image {
    animation-delay: 0.5s;
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.award-badge-wrapper:hover .award-recognition-image {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 20px 50px rgba(255, 215, 0, 0.7));
}

.award-text {
    text-align: left;
    max-width: 500px;
    flex-shrink: 0;
    min-width: 400px;
}

.award-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.75rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.award-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* What We Offer Section */
.what-we-offer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff5f5 50%, #f0fff4 100%);
    position: relative;
    overflow: hidden;
}

.what-we-offer .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.what-we-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(46, 204, 113, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.what-we-offer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(52, 152, 219, 0.02) 60px, rgba(52, 152, 219, 0.02) 120px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(231, 76, 60, 0.02) 60px, rgba(231, 76, 60, 0.02) 120px);
    pointer-events: none;
    animation: backgroundShift 60s linear infinite;
}

@keyframes backgroundShift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.what-we-offer .container {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: -1rem;
    margin-bottom: 3rem;
    font-weight: 500;
    opacity: 0.9;
}

.offer-section {
    margin-bottom: 4.75rem;
}

.offer-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: left;
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
}

.offer-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-heading.animated::before {
    height: 80%;
}

/* Product Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(52, 152, 219, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-icon img {
    width: 56px;
    height: 56px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: none;
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(5deg);
}

.category-card:hover .category-icon img {
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.4));
}

.category-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
}

.category-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Target Markets Grid */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.market-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.market-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.02), rgba(52, 152, 219, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.market-card:hover::before {
    transform: scaleY(1);
}

.market-card:hover::after {
    opacity: 1;
}

.market-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.market-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.market-icon img {
    width: 48px;
    height: 48px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: none;
}

.market-card:hover .market-icon {
    transform: scale(1.12) rotate(-5deg);
}

.market-card:hover .market-icon img {
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
}

.market-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
}

.market-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Industries Section */
.industries-section {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(52, 152, 219, 0.08) 50%, rgba(46, 204, 113, 0.08) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.industry-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e74c3c, #3498db);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.industry-tag:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.industry-tag:hover::before {
    opacity: 1;
}

/* Offer Highlight Section */
.offer-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.offer-highlight:hover::before {
    opacity: 1;
}

.offer-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.highlight-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    transition: transform 0.4s ease;
}

.stat:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.feature-icon img {
    width: 56px;
    height: 56px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: none;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card:hover .feature-icon img {
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.4));
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    color: var(--text-light);
}

/* Auctions Section */
.auctions {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
}

.auctions .section-title,
.auctions .section-subtitle {
    color: white;
}

.auction-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Important Info Section */
.important-info {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
    border-left-width: 6px;
}

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

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.info-card:hover h3 {
    color: var(--secondary-color);
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card li:hover {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.info-card a:hover {
    color: var(--secondary-color);
}

/* Policies Section */
.policies {
    padding: 5rem 0;
    background: white;
}

.policy-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: var(--light-bg);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #e5e7eb;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 1.5rem;
}

.accordion-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.accordion-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.recaptcha-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.recaptcha-notice a {
    color: var(--primary-color);
    text-decoration: none;
}

.recaptcha-notice a:hover {
    text-decoration: underline;
}

/* Visit Us Section */
.visit-us-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.visit-us-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.visit-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.location-info {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.location-info h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.location-info .address,
.location-info .email-contact,
.location-info .phone-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.location-info .icon {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.location-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.location-info a:hover {
    color: var(--secondary-color);
}

/* Business Hours */
.business-hours {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.business-hours h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hour-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.hour-item.closed {
    opacity: 0.6;
}

.hour-item .day {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 50px;
}

.hour-item .time {
    color: var(--text-light);
    font-weight: 500;
}

.hour-item.closed .time {
    color: var(--danger);
    font-weight: 600;
}

/* Google Maps */
.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.map-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-info-card h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.map-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.map-container-inline {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 550px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 550px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 550px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.footer-section a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    color: var(--text-white);
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-icon:hover {
    opacity: 0.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.consent-notice {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

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

    .award-recognition-compact {
        padding: 2.4rem 0 3rem 0;
    }

    .stats-bar-section {
        margin-top: 0;
        padding: 1.5rem 0 0.5rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .stats-bar-item {
        padding: 1rem;
    }

    /* Announcement Banner Mobile */
    .announcement-banner {
        padding: 0.6rem 0.75rem;
    }

    .announcement-content {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding-right: 2.5rem;
    }

    .live-indicator {
        padding: 0.25rem 0.6rem;
    }

    .live-text {
        font-size: 0.7rem;
    }

    .announcement-message {
        font-size: 0.85rem;
        flex: 1;
        min-width: 100%;
        text-align: center;
    }

    .banner-close {
        width: 26px;
        height: 26px;
        right: 0.5rem;
    }

    body:has(.announcement-banner-link:not(.hidden)) .header {
        top: 52px;
    }

    body:has(.announcement-banner-link:not(.hidden)) .hero {
        margin-top: 52px;
    }

    .nav-menu {
        top: 52px;
    }

    body:has(.announcement-banner-link:not(.hidden)) .nav-menu {
        top: 135px;
    }

    .logo-image {
        height: 40px;
        margin-right: 34px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .logo .tagline {
        font-size: 0.65rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .steps-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Award Recognition Mobile Styles */
    .award-recognition {
        padding: 2.5rem 0 3rem 0;
    }

    .award-recognition-content {
        flex-direction: column;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .awards-display {
        gap: 1.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .award-badge-wrapper {
        flex-shrink: 1;
    }

    .award-recognition-image {
        height: 100px;
        max-width: 100%;
        object-fit: contain;
    }

    .award-text {
        text-align: center;
        min-width: auto;
        max-width: 100%;
    }

    .award-title {
        font-size: 1.5rem;
        white-space: normal;
    }

    .award-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* What We Offer Mobile Styles */
    .what-we-offer {
        padding: 3rem 0;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .offer-heading {
        font-size: 1.5rem;
        text-align: center;
    }

    .categories-grid,
    .markets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card,
    .market-card {
        padding: 1.5rem;
    }

    .category-icon,
    .market-icon {
        font-size: 2.5rem;
    }

    .industries-section {
        padding: 1.5rem;
    }

    .industries-list {
        gap: 0.75rem;
    }

    .industry-tag {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .offer-highlight {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .highlight-content h3 {
        font-size: 1.5rem;
    }

    .highlight-content p {
        font-size: 1rem;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .map-info-card {
        padding: 1.5rem;
    }

    .map-info-card h3 {
        font-size: 1.5rem;
    }

    .map-container-inline {
        padding: 0;
        min-height: 400px;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .map-wrapper iframe {
        min-height: 400px;
    }

    .countdown-text h2 {
        font-size: 1.75rem;
    }

    .countdown-text p {
        font-size: 1rem;
    }

    .timer-label {
        font-size: 1.125rem;
    }

    .timer-unit {
        min-width: 80px;
        padding: 1rem 1.25rem;
    }

    .timer-value {
        font-size: 2rem;
    }

    .timer-text {
        font-size: 0.75rem;
    }

    .timer-separator {
        font-size: 1.5rem;
        display: none;
    }

    .timer-display {
        gap: 0.5rem;
    }

    .map-wrapper iframe {
        min-height: 350px;
    }

    .map-container-inline {
        min-height: 350px;
    }

    .map-wrapper {
        min-height: 350px;
    }

    .auction-cta {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Countdown Section */
.countdown-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.countdown-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.countdown-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.countdown-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-timer {
    margin: 2rem 0;
}

.timer-label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timer-unit:hover {
    transform: translateY(-5px);
}

.timer-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.timer-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.timer-separator {
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0.7;
}

.countdown-cta {
    margin-top: 2rem;
}

.pulse-btn {
    animation: pulse-shadow 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE DESIGN - TABLET & LARGER PHONES
   ============================================ */

/* Large Tablets (iPad Pro) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

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

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

    .section-title {
        font-size: 2.25rem;
    }

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

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .timer-unit {
        min-width: 100px;
        padding: 1.25rem 1.5rem;
    }

    .timer-value {
        font-size: 2.5rem;
    }
}

/* Standard Tablets (iPad) */
@media (min-width: 769px) and (max-width: 900px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.95rem;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .logo .tagline {
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Small Tablets & Large Phones (Portrait) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .announcement-message {
        font-size: 0.9rem;
        min-width: auto;
    }

    .timer-display {
        justify-content: space-around;
    }

    .timer-unit {
        min-width: 90px;
        padding: 1rem 1.25rem;
    }

    .timer-value {
        font-size: 2.25rem;
    }

    .btn {
        padding: 0.8rem 1.75rem;
    }

    .feature-card,
    .step-card,
    .info-card {
        padding: 1.75rem;
    }
}

/* Extra Responsive Enhancements for Small Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo .tagline {
        font-size: 0.6rem;
    }

    .logo-image {
        height: 35px;
        margin-right: 30px;
    }

    .feature-card,
    .step-card,
    .info-card {
        padding: 1.5rem;
    }

    .feature-icon,
    .step-number {
        font-size: 2rem;
    }

    .feature-card h3,
    .step-card h3,
    .info-card h3 {
        font-size: 1.25rem;
    }

    .announcement-banner {
        padding: 0.5rem 0.5rem;
    }

    .announcement-message {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .live-indicator {
        padding: 0.2rem 0.5rem;
    }

    .live-text {
        font-size: 0.65rem;
    }

    .live-dot {
        width: 6px;
        height: 6px;
    }

    .banner-close {
        width: 24px;
        height: 24px;
    }

    .countdown-text h2 {
        font-size: 1.5rem;
    }

    .countdown-text p {
        font-size: 0.9rem;
    }

    .timer-unit {
        min-width: 70px;
        padding: 0.75rem 1rem;
    }

    .timer-value {
        font-size: 1.75rem;
    }

    .timer-text {
        font-size: 0.7rem;
    }

    .timer-label {
        font-size: 1rem;
    }

    /* Award Recognition Extra Small Styles */
    .award-recognition {
        padding: 2rem 0;
    }

    .awards-display {
        gap: 1rem;
    }

    .award-recognition-image {
        height: 80px;
    }

    .award-title {
        font-size: 1.3rem;
    }

    .award-description {
        font-size: 0.9rem;
    }

    .map-info-card h3 {
        font-size: 1.25rem;
    }

    .map-info-card p,
    .map-info-card li {
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.25rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Extra Small Phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .step-card,
    .info-card {
        padding: 1.25rem;
    }

    .timer-unit {
        min-width: 60px;
        padding: 0.6rem 0.75rem;
    }

    .timer-value {
        font-size: 1.5rem;
    }

    .timer-text {
        font-size: 0.65rem;
    }

    /* Award Recognition iPhone SE Styles */
    .award-recognition {
        padding: 1.5rem 0;
    }

    .awards-display {
        gap: 0.75rem;
    }

    .award-recognition-image {
        height: 70px;
    }

    .award-title {
        font-size: 1.2rem;
    }

    .award-description {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .map-wrapper iframe {
        min-height: 300px;
    }

    .map-container-inline {
        min-height: 300px;
    }

    .map-wrapper {
        min-height: 300px;
    }
}

/* Landscape Mode Optimizations */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .nav-menu {
        padding: 1rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    body:has(.announcement-banner-link:not(.hidden)) .hero {
        margin-top: 50px;
    }
}

/* Professional Icon Styling */
.offer-heading img,
.award-title img,
h3 img {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.offer-heading:hover img,
.award-title:hover img,
h3:hover img {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.3));
}

.industry-tag img {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.industry-tag:hover img {
    transform: scale(1.15);
    filter: brightness(0) invert(1);
}

.address img,
.email-contact img,
.phone-contact img {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.email-contact:hover img,
.phone-contact:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.3));
}

/* Print Styles */
@media print {
    .announcement-banner-link,
    .header,
    .hamburger,
    .hero-buttons,
    .footer,
    .btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* Responsive navigation after simplifying the header brand */
@media (max-width: 1120px) {
    .header .nav-wrapper {
        justify-content: space-between;
        gap: 1rem;
    }

    .header .hamburger {
        display: flex;
        flex: 0 0 auto;
        margin-left: auto;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .header .logo-image {
        margin-right: 0;
        transform: scale(1.8);
    }

    .header .logo a:hover .logo-image {
        transform: rotate(-2deg) scale(1.9);
    }

    .header .nav-menu {
        position: fixed;
        left: -100%;
        top: 92px;
        width: 100%;
        max-height: calc(100dvh - 92px);
        overflow-y: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0.35rem;
        margin-left: 0;
        padding: 1rem 1.25rem 1.5rem;
        background: var(--darker-bg);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
        transition: left 0.25s ease;
        overscroll-behavior: contain;
    }

    body:has(.announcement-banner-link:not(.hidden)) .header .nav-menu {
        top: 135px;
        max-height: calc(100dvh - 135px);
    }

    .header .nav-menu.active {
        left: 0;
    }

    .header .nav-menu li {
        width: 100%;
    }

    .header .nav-menu .nav-link {
        display: flex;
        width: 100%;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 1rem;
        white-space: normal;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header .nav-menu {
        top: 84px;
        max-height: calc(100dvh - 84px);
    }

    body:has(.announcement-banner-link:not(.hidden)) .header .nav-menu {
        top: 127px;
        max-height: calc(100dvh - 127px);
    }
}

@media (max-width: 768px) {
    .header .nav-menu {
        top: 70px;
        max-height: calc(100dvh - 70px);
    }

    body:has(.announcement-banner-link:not(.hidden)) .header .nav-menu {
        top: 135px;
        max-height: calc(100dvh - 135px);
    }
}

@media (max-width: 480px) {
    .header .navbar {
        padding: 0.75rem 0;
    }

    .header .logo-image {
        margin-right: 0;
        transform: scale(1.65);
    }

    .header .logo a:hover .logo-image {
        transform: rotate(-2deg) scale(1.72);
    }

    body:has(.announcement-banner-link:not(.hidden)) .header {
        top: 80px;
    }

    body:has(.announcement-banner-link:not(.hidden)) .hero {
        margin-top: 80px;
    }

    .header .nav-menu {
        top: 68px;
        max-height: calc(100dvh - 68px);
    }

    body:has(.announcement-banner-link:not(.hidden)) .header .nav-menu {
        top: 148px;
        max-height: calc(100dvh - 148px);
    }
}

/* Translation-safe layout overrides */
.header .nav-wrapper,
.header .nav-menu,
.header .nav-menu li,
.announcement-content,
.footer-content,
.contact-main-grid,
.stats-bar,
.categories-grid,
.markets-grid,
.features-grid,
.info-grid {
    min-width: 0;
}

.hero-title,
.hero-subtitle,
.section-title,
.section-subtitle,
.announcement-message,
.footer-section,
.footer-section p,
.footer-section li,
.category-card,
.market-card,
.feature-card,
.info-card,
.accordion-header,
.accordion-content,
.contact-info,
.contact-form {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.announcement-content {
    padding: 0.55rem 3.75rem 0.55rem 1rem;
}

.announcement-message {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 88ch;
}

.live-indicator {
    flex: 0 0 auto;
}

.btn,
.auction-cta .btn,
.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    line-height: 1.25;
    max-width: 100%;
}

.accordion-header {
    gap: 1rem;
    line-height: 1.35;
    text-align: left;
}

.accordion-header span:first-child {
    min-width: 0;
}

@media (min-width: 1221px) {
    html.language-es .header .container,
    html.language-fr .header .container {
        max-width: none;
        width: 100%;
        padding-left: clamp(14px, 1.25vw, 24px);
        padding-right: clamp(14px, 1.25vw, 24px);
    }

    html.language-es .header .nav-wrapper,
    html.language-fr .header .nav-wrapper {
        width: 100%;
        gap: clamp(0.35rem, 0.65vw, 0.85rem);
    }

    html.language-es .header .logo-image,
    html.language-fr .header .logo-image {
        margin-right: clamp(18px, 2vw, 32px);
    }

    html.language-es .header .nav-menu,
    html.language-fr .header .nav-menu {
        flex: 1 1 auto;
        justify-content: space-around;
        gap: clamp(0.25rem, 0.55vw, 0.8rem);
        margin-left: 0;
    }

    html.language-es .header .nav-menu > li,
    html.language-fr .header .nav-menu > li {
        display: flex;
        justify-content: center;
        min-width: 0;
    }

    html.language-es .header .nav-link,
    html.language-fr .header .nav-link {
        white-space: normal;
        overflow-wrap: normal;
        text-wrap: balance;
        line-height: 1.2;
        text-align: center;
    }

    html.language-es .header .nav-link-pill,
    html.language-fr .header .nav-link-pill {
        flex-wrap: wrap;
        justify-content: center;
    }

    html.language-es .header .language-switcher,
    html.language-fr .header .language-switcher {
        margin-left: clamp(0.35rem, 0.7vw, 0.75rem);
    }
}

@media (max-width: 640px) {
    .announcement-content {
        align-items: flex-start;
        gap: 0.65rem;
        padding: 0.65rem 3.2rem 0.65rem 0.9rem;
    }

    .announcement-message {
        font-size: clamp(0.78rem, 3.4vw, 0.92rem);
        line-height: 1.35;
        text-align: left;
    }

    .live-indicator {
        margin-top: 0.08rem;
    }

    .hero-buttons,
    .auction-cta {
        align-items: stretch;
    }

    .hero-buttons .btn,
    .auction-cta .btn {
        width: 100%;
    }
}

/* Dynamic banner/header offsets for translated announcement text */
body:has(.announcement-banner-link:not(.hidden)) .header {
    top: var(--announcement-offset, 43px) !important;
}

body:has(.announcement-banner-link:not(.hidden)) .hero {
    margin-top: var(--announcement-offset, 43px) !important;
}

@media (max-width: 1220px) {
    .header .nav-menu {
        top: var(--nav-drawer-top, 92px) !important;
        max-height: calc(100dvh - var(--nav-drawer-top, 92px)) !important;
    }
}

body:has(.announcement-banner-link:not(.hidden)) .load-hero.truckload-page-start {
    padding-top: calc(var(--nav-drawer-top, 113px) + 102px);
}

@media (max-width: 760px) {
    body:has(.announcement-banner-link:not(.hidden)) .load-hero.truckload-page-start {
        padding-top: calc(var(--nav-drawer-top, 113px) + 77px);
    }
}
