@import url("theme.css");

html {
    scroll-behavior: smooth;
}

.stats-banner, .categories-section, .faq-section, .contact-section {
    scroll-margin-top: 100px;
}

:root {
    /* Premium Corporate Color Palette */
    --color-primary: #0f172a;       /* Slate 900 - Deep Trust Dark */
    --color-primary-light: #1e293b; /* Slate 800 */
    --color-client: var(--customer-primary);        /* Electric Client Blue */
    --color-client-hover: var(--customer-primary-hover);
    --color-client-bg: rgba(0, 123, 255, 0.04);
    --color-transporter: var(--transporter-primary);   /* Emerald Transporter Green */
    --color-transporter-hover: var(--transporter-primary-hover);
    --color-transporter-bg: rgba(34, 139, 34, 0.04);
    --color-accent: #d97706;        /* Amber Gold Accent */
    --color-accent-bg: rgba(217, 119, 6, 0.08);
    
    /* Neutral Grays */
    --color-bg-base: #f8fafc;       /* Slate 50 - Very clean off-white */
    --color-bg-card: #ffffff;
    --color-text-main: #1e293b;     /* Slate 800 */
    --color-text-muted: #64748b;    /* Slate 500 */
    --color-border: #e2e8f0;        /* Slate 200 */
    --color-border-hover: #cbd5e1;  /* Slate 300 */
    
    /* Professional Shadow System */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
    --shadow-premium: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
    
    /* Fonts & Transitions */
    --font-display: 'Outfit', 'Noto Sans TC', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Noto Sans TC', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Subtle Geometric Background Pattern instead of loud blobs */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(5, 150, 105, 0.03) 0%, transparent 40%),
        linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1-4 2s-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1-3-1-4-2' fill='none' stroke='%23e2e8f0' stroke-width='1' stroke-opacity='0.4'/%3E%3C/svg%3E");
    z-index: -2;
    pointer-events: none;
}

/* Ambient glow container - optimized to be extremely subtle */
.ambient-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.15;
    animation: floatGlow 25s infinite alternate ease-in-out;
}
.blob-1 {
    background: #bfdbfe; /* very soft blue */
    width: 600px;
    height: 600px;
    top: -10%;
    right: -5%;
}
.blob-2 {
    background: #bbf7d0; /* very soft green */
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: -5%;
    animation-delay: -5s;
}
.blob-3 {
    background: #fef08a; /* very soft amber */
    width: 400px;
    height: 400px;
    top: 35%;
    left: 30%;
    opacity: 0.08;
    animation-delay: -10s;
}
@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.05); }
    100% { transform: translate(-20px, 40px) scale(0.95); }
}

/* Header & Navigation */
header {
    background: linear-gradient(90deg, var(--color-client) 0%, var(--color-client) 27%, #ffffff 33%, var(--color-transporter) 39%, var(--color-transporter) 77%, #ffffff 83%, var(--color-client) 89%, var(--color-client) 100%);
    background-size: 300% auto;
    animation: gradientSlide 12s linear infinite;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientSlide {
    0%   { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.logo-text-anim {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: start;
    min-width: 150px;
    height: 38px;
}
.logo-text-anim span {
    grid-column: 1;
    grid-row: 1;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-display);
    white-space: nowrap;
    opacity: 0;
}
.logo-text-anim .text-1 {
    animation: textFade1 6s infinite ease-in-out;
}
.logo-text-anim .text-2 {
    animation: textFade2 6s infinite ease-in-out;
}

@keyframes textFade1 {
    0%, 40% { opacity: 1; transform: translateY(0); }
    45%, 95% { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes textFade2 {
    0%, 40% { opacity: 0; transform: translateY(6px); }
    45%, 90% { opacity: 1; transform: translateY(0); }
    95%, 100% { opacity: 0; transform: translateY(-6px); }
}

.logo-area {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 38px;
    width: auto;
    transition: var(--transition-smooth);
}
.logo-area:hover .logo-img {
    transform: scale(1.03);
}

nav {
    display: flex;
    gap: 32px;
    margin-left: auto; /* Push navigation links to the right */
}
nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: var(--transition-smooth);
}
nav a:hover {
    color: #ffffff;
}
nav a:hover::after {
    width: 100%;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 12px;
        padding: 12px 5%;
    }
    .logo-area {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 4px;
    }
    nav {
        margin: 0 auto; /* Center nav links on mobile */
    }
    .logo-text-anim {
        margin: 0 auto;
        justify-items: center;
    }
}

main {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Hero Split Container */
.hero-container {
    max-width: 1200px;
    margin: 50px auto 40px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}
@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        gap: 64px;
        margin: 70px auto 50px auto;
    }
}

.hero-text {
    flex: 1.2;
    text-align: center;
}
@media (min-width: 992px) {
    .hero-text {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
    color: var(--color-client);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 28px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 15px -3px rgba(37, 99, 235, 0.12), 0 2px 6px -2px rgba(37, 99, 235, 0.06);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    letter-spacing: 0.03em;
    cursor: default;
    white-space: nowrap;
}

.hero-badge:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(79, 70, 229, 0.12) 100%);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 8px 25px -5px rgba(37, 99, 235, 0.2), 0 4px 10px -3px rgba(37, 99, 235, 0.1);
}

.hero-badge svg {
    color: var(--color-client);
    animation: badgeIconPulse 2.5s infinite ease-in-out;
}

@keyframes badgeIconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px var(--color-client)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 4px rgba(37, 99, 235, 0.6)); }
}

.hero-text h1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.hero-text h1 .main-title {
    font-family: var(--font-display);
    font-size: 2.45rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.hero-text h1 .main-title .main-title-brand {
    background: linear-gradient(90deg, var(--color-client) 0%, #00a86b 25%, #40826d 50%, #00a86b 75%, var(--color-client) 100%);
    background-size: 200% auto;
    animation: gradientMove 6s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.hero-text h1 .sub-title-gradient {
    font-family: var(--font-body);
    font-size: 1.85rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-client) 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}
.hero-text h1 .identity-text {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--color-client) 0%, #00a86b 25%, #40826d 50%, #00a86b 75%, var(--color-client) 100%);
    background-size: 200% auto;
    animation: gradientMove 6s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
    line-height: 1.4;
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 8px;
}
.hero-text h1 .helper-slogan {
    font-family: var(--font-body);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-primary-light);
    letter-spacing: -0.01em;
    line-height: 1.35;
    margin-top: 6px;
}
@media (max-width: 768px) {
    .hero-text h1 {
        gap: 8px;
    }
    .hero-text h1 .main-title {
        font-size: clamp(1.2rem, 7vw, 2.25rem);
        white-space: nowrap;
    }
    .hero-text h1 .sub-title-gradient {
        font-size: 1.35rem;
    }
    .hero-text h1 .identity-text {
        font-size: 1.1rem;
    }
    .hero-text h1 .helper-slogan {
        font-size: 1.25rem;
        margin-top: 4px;
    }
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.75;
}

/* Dynamic Scrolling Notice Board */
.notice-viewport {
    height: 120px; /* Taller viewport to accommodate longer wrapped text */
    overflow: hidden;
    position: relative;
    margin-bottom: 32px;
    border-radius: 12px;
    background: #ffffff; /* Solid premium white background */
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-left: 5px solid var(--color-client); /* Left border accent */
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08); /* Modern soft shadow */
    padding: 0 24px;
    /* Soft vertical mask gradient fade to blend text at edges */
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.notice-scroll-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.notice-item {
    height: 120px; /* Match viewport height */
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    text-align: left;
    flex-shrink: 0;
    margin-bottom: 20px; /* Clear separation gap between messages */
    border-bottom: 1px dashed rgba(226, 232, 240, 0.8); /* Subtle separator line */
    box-sizing: border-box;
}

.notice-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08); /* Soft blue background */
    color: var(--color-client);
    flex-shrink: 0;
}

.notice-emoji {
    font-size: 1.1rem;
    line-height: 1;
}

.notice-content {
    font-size: 0.98rem;
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-y: auto; /* Internal scrolling in case of extreme text lengths */
    max-height: 100%;
    padding-right: 4px;
}

.pills-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
@media (min-width: 992px) {
    .pills-group {
        justify-content: flex-start;
    }
}
.pill-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.pill-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-client);
}
.pill-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-hover);
}

/* Portal Card Layout */
.portal-card-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.portal-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-premium);
    text-align: center;
    width: 100%;
    max-width: 460px;
    transition: var(--transition-smooth);
    position: relative;
}
.portal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
}

.brand-logo-card {
    max-width: 160px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 6px rgba(15, 23, 42, 0.04));
}

.button-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 24px;
}
@media (min-width: 440px) {
    .button-group {
        grid-template-columns: 1fr 1fr;
    }
}

.btn {
    color: white;
    padding: 24px 16px;
    border: none;
    border-radius: 18px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.btn svg {
    width: 32px;
    height: 32px;
    transition: var(--transition-smooth);
}

.btn span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.btn-client {
    background: linear-gradient(135deg, var(--color-client) 0%, #1e4ed8 100%);
}
.btn-client:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -5px rgba(37, 99, 235, 0.35);
}

.btn-transporter {
    background: linear-gradient(135deg, var(--color-transporter) 0%, #047857 100%);
}
.btn-transporter:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -5px rgba(5, 150, 105, 0.35);
}

.btn:hover svg {
    transform: translateY(-2px) scale(1.05);
}

.card-footer-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.card-footer-text svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

/* Security & Guarantees Banner Section */
.stats-banner {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 40px 24px;
    border-radius: 20px;
    max-width: 1200px;
    margin: 20px auto 50px auto;
    width: calc(100% - 48px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.stats-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-client) 0%, var(--color-transporter) 100%);
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}
@media (min-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.stats-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.stats-icon-blue {
    background: rgba(37, 99, 235, 0.07);
    color: var(--color-client);
    border: 1px solid rgba(37, 99, 235, 0.15);
}
.stats-icon-green {
    background: rgba(5, 150, 105, 0.07);
    color: var(--color-transporter);
    border: 1px solid rgba(5, 150, 105, 0.15);
}
.stats-icon svg {
    width: 22px;
    height: 22px;
}
.stats-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
}
.stats-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

/* Tab Selector Styles */
.tab-container {
    max-width: 1200px;
    margin: 40px auto 16px auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.tab-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    cursor: pointer;
    background: var(--color-bg-card);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-main);
}
.tab-btn svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}
.tab-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-hover);
}

.tab-btn.active-client {
    border-color: var(--color-client);
    color: var(--color-client);
    background: var(--color-client-bg);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}
.tab-btn.active-client svg {
    color: var(--color-client);
}

.tab-btn.active-transporter {
    border-color: var(--color-transporter);
    color: var(--color-transporter);
    background: var(--color-transporter-bg);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.08);
}
.tab-btn.active-transporter svg {
    color: var(--color-transporter);
}

/* Tab Panels */
.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}
.tab-panel.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Feature Grid Styles */
.highlights-container {
    max-width: 1200px;
    margin: 10px auto 60px auto;
    padding: 0 24px;
    width: 100%;
}
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}
.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-border-hover);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.highlight-icon svg {
    width: 24px;
    height: 24px;
}
.icon-blue {
    background: var(--color-client-bg);
    color: var(--color-client);
}
.icon-green {
    background: var(--color-transporter-bg);
    color: var(--color-transporter);
}
.icon-yellow {
    background: var(--color-accent-bg);
    color: var(--color-accent);
}

.highlight-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.highlight-item p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 50px auto 80px auto;
    padding: 0 24px;
    width: 100%;
}
.faq-section h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 36px;
    font-family: var(--font-display);
    font-weight: 800;
}
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-card {
    background: var(--color-bg-card);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.faq-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: var(--shadow-md);
}
.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--color-client);
    flex-shrink: 0;
}
.faq-answer {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    padding-left: 28px;
}

/* Refined Contact Us Section */
.contact-section {
    background: var(--color-bg-card);
    padding: 70px 24px;
    text-align: center;
    border-top: 1px solid var(--color-border);
    position: relative;
}
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}
.contact-section h2 {
    font-size: 1.85rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-weight: 800;
}
.contact-section p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-size: 0.98rem;
    line-height: 1.6;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}
@media (min-width: 480px) {
    .contact-form {
        flex-direction: row;
        gap: 8px;
    }
}
.contact-input {
    flex: 1;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    background: var(--color-bg-base);
}
.contact-input:focus {
    border-color: var(--color-client);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.contact-btn {
    background: var(--color-primary);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.contact-btn:hover {
    background: var(--color-client);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.contact-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#contact_msg {
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: 8px;
    display: inline-block;
}

/* Footer Credit */
.footer-credit {
    text-align: center;
    padding: 36px 24px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-base);
    margin-top: auto;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Supported Categories Section (Pills) */
.categories-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.05);
}
.categories-section h2 {
    color: var(--color-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.categories-section h2 .text-client {
    color: var(--color-client);
}
.categories-section h2 .text-transporter {
    color: var(--color-transporter);
}
.categories-subtitle {
    color: #000000;
    font-weight: 700;
    font-size: 15px;
    max-width: 900px;
    margin: 0 auto 36px auto;
    line-height: 1.6;
}
@media (min-width: 900px) {
    .categories-subtitle {
        white-space: nowrap;
    }
}
.category-badge-container {
    display: flex;
    justify-content: center;
}
.category-badge-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
}
.category-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-bg-base);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-main);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.category-badge svg {
    width: 18px;
    height: 18px;
    color: var(--color-client);
    transition: transform 0.25s ease;
}
.category-badge:hover {
    background: #ffffff;
    border-color: var(--color-client);
    color: var(--color-client);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.category-badge:hover svg {
    transform: scale(1.15);
}

/* Core Services Section */
