/* ==========================================================================
   H.H.S Trade International LLC - Main Stylesheet
   Global Supply Chain & Logistics Solutions
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-blue: #1a3a6b;
    --secondary-blue: #2c5a8c;
    --accent-blue: #4a7db5;
    --light-blue: #e8f0fe;
    --dark-blue: #0c1e3a;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e4ea;
    --dark-gray: #333333;
    --text-color: #1a1a2e;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-nav: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(26, 58, 107, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 58, 107, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 58, 107, 0.16);
    --shadow-xl: 0 16px 48px rgba(26, 58, 107, 0.20);
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

iframe, video, embed, object {
    max-width: 100%;
}

/* Global horizontal-overflow safety net */
html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-blue);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.3px; }
h3 { font-size: 1.75rem; font-weight: 700; }
h4 { font-size: 1.35rem; font-weight: 600; }
h5 { font-size: 1.15rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

@media (max-width: 992px) {
    .section { padding: 70px 0; }
}
@media (max-width: 480px) {
    .section { padding: 55px 0; }
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .subtitle {
    color: var(--accent-blue);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 1.9rem; }
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(26, 58, 107, 0.35), 0 1px 3px rgba(26, 58, 107, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 58, 107, 0.45), 0 2px 6px rgba(26, 58, 107, 0.25);
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ==========================================================================
   Loading Spinner — classic dual-ring spin (original design)
   ========================================================================== */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    width: 100px;
    height: 100px;
    border: 6px solid rgba(255, 255, 255, 0.1);
    border-top: 6px solid var(--white);
    border-right: 6px solid var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.loader::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 4px solid transparent;
    border-top: 4px solid var(--light-blue);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

.loader-logo {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.loader-logo img {
    width: 200px;
    max-width: 55vw;
    height: auto;
    display: block;
    margin: 0 auto;
    filter:
        brightness(1.2)
        drop-shadow(0 4px 20px rgba(74, 125, 181, 0.5));
}

.loader-tagline {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    color: var(--light-blue);
    font-size: 0.75rem;
    letter-spacing: 5px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background: var(--dark-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-info a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info a:hover {
    color: var(--accent-blue);
}

.top-bar-info i {
    color: var(--accent-blue);
}

.top-bar-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-bar-social a {
    color: var(--white);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

.language-currency {
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-currency select {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.language-currency select option {
    background: var(--dark-blue);
    color: var(--white);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    box-shadow: 0 1px 3px rgba(26, 58, 107, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(26, 58, 107, 0.06);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(26, 58, 107, 0.1);
    background: rgba(255, 255, 255, 1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 24px;
    min-height: 64px;
}

@media (max-width: 992px) {
    .navbar { min-height: 60px; }
}

/* Real logo image — compact, sharp, standard header size */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    padding: 2px 0;
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    /* Crisp rendering via srcset (1x/2x/3x versions) */
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: translateZ(0) scale(1.04);
}

/* Slightly larger on wide desktops, smaller on mobile */
@media (min-width: 1400px) {
    .logo-img { height: 48px; }
}
@media (max-width: 992px) {
    .logo-img { height: 40px; }
}
@media (max-width: 480px) {
    .logo-img { height: 36px; }
}

/* Footer variant — slightly larger, brightened for dark bg */
.footer .logo-img,
.footer-logo-img {
    height: 56px;
    filter:
        brightness(1.4)
        contrast(1.15)
        drop-shadow(0 2px 16px rgba(74, 125, 181, 0.55));
    margin-bottom: 15px;
}
@media (max-width: 480px) {
    .footer .logo-img,
    .footer-logo-img { height: 48px; }
}

/* Keep legacy class names for any leftover references */
.logo-icon,
.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    font-family: var(--font-nav);
    font-weight: 500;
    color: var(--text-color);
    padding: 10px 15px;
    display: block;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
    transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--primary-blue);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 0.75rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--primary-blue);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    padding-left: 25px;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ==========================================================================
   Hero Section — richer overlay for better text contrast
   ========================================================================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(12, 30, 58, 0.92) 0%, rgba(26, 58, 107, 0.75) 45%, rgba(12, 30, 58, 0.65) 100%),
        url('../images/hero-containers.jpg') center/cover no-repeat;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(74, 125, 181, 0.25) 0%, transparent 45%),
        linear-gradient(180deg, transparent 60%, rgba(12, 30, 58, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 60px 0;
}

.hero-subtitle {
    color: var(--accent-blue);
    background: rgba(74, 125, 181, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    border: 1px solid rgba(74, 125, 181, 0.4);
    font-weight: 600;
}

.hero h1 {
    color: var(--white);
    font-size: 4.25rem;
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
    background: linear-gradient(135deg, #a8c5e8 0%, #ffffff 50%, #a8c5e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; letter-spacing: -0.5px; }
}

.hero-typing {
    font-size: 1.5rem;
    color: var(--light-blue);
    margin-bottom: 25px;
    min-height: 40px;
    font-weight: 500;
}

.typed-text {
    color: var(--accent-blue);
    font-weight: 700;
}

.cursor {
    display: inline-block;
    background: var(--accent-blue);
    width: 3px;
    margin-left: 2px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero p {
    color: var(--light-blue);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.7;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 600px;
}

.hero-stat {
    color: var(--white);
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    display: block;
}

.hero-stat .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-blue);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* ==========================================================================
   Trust Badges Section
   ========================================================================== */
.trust-badges {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.trust-badges-inner {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-badge {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--medium-gray);
}

.trust-badge:last-child {
    border-right: none;
}

.trust-badge .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
}

.trust-badge h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.trust-badge p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background: var(--light-gray);
    padding: 110px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 58, 107, 0.15), transparent);
}

@media (max-width: 992px) {
    .services-section { padding: 70px 0; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 58, 107, 0.06), 0 1px 3px rgba(26, 58, 107, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 58, 107, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 58, 107, 0.15), 0 8px 16px rgba(26, 58, 107, 0.08);
    border-color: rgba(74, 125, 181, 0.2);
}

.service-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 58, 107, 0.7));
}

.service-card-icon {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 3;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

.service-card-content {
    padding: 40px 30px 30px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.service-card .learn-more i {
    transition: transform 0.3s ease;
}

.service-card .learn-more:hover {
    color: var(--accent-blue);
}

.service-card .learn-more:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   About Preview Section
   ========================================================================== */
.about-preview {
    padding: 100px 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
    height: 500px;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 380px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 8px solid var(--white);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 40px;
    right: 20%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-xl);
    z-index: 3;
}

.about-experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.about-content .subtitle {
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content > p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background: linear-gradient(rgba(12, 30, 58, 0.92), rgba(26, 58, 107, 0.9)),
        url('../images/sea-freight-2.jpg') center/cover fixed;
    padding: 80px 0;
    color: var(--white);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent-blue);
    border: 2px solid rgba(74, 125, 181, 0.3);
}

.stat-item .counter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
}

.stat-item .plus {
    color: var(--accent-blue);
    font-size: 2.5rem;
}

.stat-item .label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-blue);
    margin-top: 15px;
    display: block;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-choose-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.why-choose-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.why-choose-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-blue);
    color: var(--white);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 125, 181, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(74, 125, 181, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 125, 181, 0); }
}

.why-choose-features {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.why-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-left: 4px solid var(--primary-blue);
}

.why-feature:hover {
    background: var(--light-blue);
    transform: translateX(10px);
}

.why-feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-feature p {
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 15rem;
    color: rgba(26, 58, 107, 0.05);
    z-index: 0;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.testimonial {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    display: none;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

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

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid var(--light-blue);
    box-shadow: var(--shadow-md);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    color: var(--warning);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.testimonial-position {
    color: var(--accent-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.testimonial-dot.active {
    background: var(--primary-blue);
    width: 40px;
    border-radius: 6px;
}

/* ==========================================================================
   Blog Preview
   ========================================================================== */
.blog-preview {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: var(--accent-blue);
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--primary-blue);
}

.blog-card h3 a:hover {
    color: var(--accent-blue);
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 125, 181, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 125, 181, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--light-blue);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--dark-blue);
    color: var(--light-blue);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo-text .company {
    color: var(--white);
}

.footer-about .logo-text .tagline {
    color: var(--light-blue);
}

.footer-about p {
    color: var(--light-blue);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-blue);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.footer-contact-item .info {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-item .info strong {
    color: var(--white);
    display: block;
    margin-bottom: 3px;
}

.footer-contact-item .info a {
    color: var(--light-blue);
}

.footer-contact-item .info a:hover {
    color: var(--white);
}

.footer-newsletter {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.footer-newsletter button {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-newsletter button:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--light-blue);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-size: 1.1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--accent-blue);
}

/* ==========================================================================
   Live Chat Widget
   ========================================================================== */
.live-chat {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
}

.live-chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

.live-chat-toggle:hover {
    transform: scale(1.1);
}

.live-chat-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 340px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: none;
}

.live-chat-window.active {
    display: block;
    animation: slideUp 0.3s ease;
}

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

.live-chat-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-chat-header .avatar {
    width: 45px;
    height: 45px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.live-chat-header .info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 3px;
}

.live-chat-header .info .status {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-chat-header .info .status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    display: inline-block;
}

.live-chat-body {
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    background: var(--light-gray);
}

.chat-message {
    margin-bottom: 15px;
    max-width: 80%;
}

.chat-message.received {
    background: var(--white);
    padding: 12px 15px;
    border-radius: 15px 15px 15px 0;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

.chat-message.sent {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 15px 15px 0 15px;
    margin-left: auto;
    font-size: 0.9rem;
}

.live-chat-input {
    padding: 15px;
    display: flex;
    gap: 10px;
    background: var(--white);
    border-top: 1px solid var(--medium-gray);
}

.live-chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 20px;
    font-size: 0.9rem;
}

.live-chat-input input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.live-chat-input button {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Cookie Consent
   ========================================================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    color: var(--white);
    padding: 20px;
    z-index: 997;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-consent p {
    color: var(--light-blue);
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 300px;
}

.cookie-consent p a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent button {
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.cookie-consent .accept {
    background: var(--accent-blue);
    color: var(--white);
}

.cookie-consent .decline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-consent .accept:hover {
    background: var(--primary-blue);
}

/* ==========================================================================
   Page Banner (Inner pages)
   ========================================================================== */
.page-banner {
    background: linear-gradient(rgba(12, 30, 58, 0.85), rgba(26, 58, 107, 0.8)),
        url('../images/project-cargo.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
    position: relative;
}

.page-banner h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--light-blue);
}

.breadcrumb a {
    color: var(--light-blue);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: var(--accent-blue);
}

.breadcrumb .current {
    color: var(--accent-blue);
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-color);
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.form-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
}

.form-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--success);
    margin-bottom: 20px;
    display: none;
}

.form-success.show {
    display: block;
}

/* Radio buttons */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-item input {
    accent-color: var(--primary-blue);
}

/* File input */
input[type="file"].form-control {
    padding: 8px;
    cursor: pointer;
}

/* ==========================================================================
   Newsletter Popup
   ========================================================================== */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.newsletter-popup.show {
    display: flex;
    animation: fadeIn 0.4s ease;
}

.newsletter-popup-content {
    background: var(--white);
    max-width: 500px;
    width: 100%;
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.newsletter-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-popup-close:hover {
    background: var(--light-gray);
}

.newsletter-popup h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.newsletter-popup p {
    margin-bottom: 25px;
}

.newsletter-popup form {
    display: flex;
    gap: 10px;
}

.newsletter-popup input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

.newsletter-popup input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.bg-light { background: var(--light-gray); }
.bg-blue { background: var(--primary-blue); color: var(--white); }
.bg-dark { background: var(--dark-blue); color: var(--white); }

.text-blue { color: var(--primary-blue); }
.text-white { color: var(--white); }
.text-muted { color: var(--dark-gray); }
