/* CargoSpeed România - Express Freight Platform */
/* Speed-focused Design System */

/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --dark-base: #0F172A;
    --urgent-red: #EF4444;
    --tracking-blue: #3B82F6;
    --delivered-green: #22C55E;
    --warning-yellow: #FBBF24;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Typography */
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-transform: uppercase;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.mono {
    font-family: var(--font-mono);
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    color: var(--dark-base);
    margin-bottom: 0.5rem;
}

.section-title .subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--urgent-red), var(--tracking-blue));
    margin: 1.5rem auto 0;
}

/* ===== HEADER ===== */
.header {
    background: var(--dark-base);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-top {
    background: var(--gray-900);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--urgent-red);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.header-contact a:hover {
    color: var(--urgent-red);
}

.header-urgent {
    background: var(--urgent-red);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--urgent-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--urgent-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--urgent-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.btn-secondary {
    background: var(--tracking-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--urgent-red);
    color: var(--white);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--dark-base) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::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"><line x1="0" y1="50" x2="100" y2="50" stroke="rgba(239,68,68,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    animation: speedLines 20s linear infinite;
}

@keyframes speedLines {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .highlight {
    color: var(--urgent-red);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-200);
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

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

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== METRICS ===== */
.metrics {
    background: var(--white);
    padding: 60px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

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

.metric-card {
    text-align: center;
    padding: 2rem 1rem;
    border-right: 1px solid var(--gray-200);
}

.metric-card:last-child {
    border-right: none;
}

.metric-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--urgent-red), var(--tracking-blue));
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--dark-base);
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--urgent-red), var(--tracking-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--urgent-red);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--urgent-red), var(--tracking-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-base);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--delivered-green);
    font-weight: bold;
}

/* ===== COVERAGE MAP ===== */
.coverage-map {
    background: var(--gray-50);
}

.map-container {
    height: 500px;
    background: var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

/* ===== TIME WINDOWS ===== */
.time-windows {
    background: var(--white);
}

.time-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.time-table thead {
    background: var(--dark-base);
    color: var(--white);
}

.time-table th,
.time-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.time-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.time-table tbody tr:hover {
    background: var(--gray-50);
}

.time-table tbody tr:last-child {
    border-bottom: none;
}

.time-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-mono);
}

.time-badge.urgent {
    background: var(--urgent-red);
    color: var(--white);
}

.time-badge.fast {
    background: var(--tracking-blue);
    color: var(--white);
}

.time-badge.standard {
    background: var(--delivered-green);
    color: var(--white);
}

/* ===== INDUSTRIES ===== */
.industries {
    background: var(--gray-50);
}

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

.industry-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--tracking-blue), var(--urgent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.industry-card h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-base);
}

.industry-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== TRACKING PREVIEW ===== */
.tracking-preview {
    background: var(--dark-base);
    color: var(--white);
}

.tracking-demo {
    background: var(--gray-800);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 2rem;
}

.tracking-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tracking-input input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--gray-600);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-mono);
    background: var(--gray-900);
    color: var(--white);
}

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

.tracking-status {
    display: none;
    margin-top: 2rem;
}

.status-timeline {
    position: relative;
    padding-left: 3rem;
}

.status-item {
    position: relative;
    padding: 1.5rem 0;
}

.status-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gray-600);
    border: 3px solid var(--gray-800);
}

.status-item.completed::before {
    background: var(--delivered-green);
}

.status-item.current::before {
    background: var(--tracking-blue);
    animation: pulse 2s infinite;
}

.status-item::after {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 20px;
    width: 2px;
    height: 100%;
    background: var(--gray-600);
}

.status-item:last-child::after {
    display: none;
}

.status-time {
    font-family: var(--font-mono);
    color: var(--gray-400);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.status-label {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}

.status-location {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 3rem;
    margin: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--urgent-red);
    position: absolute;
    top: 1rem;
    left: 2rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--urgent-red), var(--tracking-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark-base);
}

.testimonial-company {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.testimonial-rating {
    margin-top: 0.5rem;
    color: var(--warning-yellow);
}

/* ===== PARTNERS ===== */
.partners {
    background: var(--gray-50);
    padding: 60px 0;
}

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

.partner-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    opacity: 1;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--urgent-red) 0%, #DC2626 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
    color: var(--white);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta .btn {
    background: var(--white);
    color: var(--urgent-red);
    font-size: 1.15rem;
    padding: 15px 40px;
}

.cta .btn:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-base);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

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

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

.footer-links a {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--urgent-red);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--urgent-red);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

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

/* ===== CONTACT FORM ===== */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-base);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tracking-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: none;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid var(--delivered-green);
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid var(--urgent-red);
}

/* ===== FAQ ===== */
.faq {
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

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

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--urgent-red);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--gray-700);
    margin-bottom: 0;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.team-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--tracking-blue), var(--urgent-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    overflow: hidden;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
}

.team-info h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-base);
}

.team-role {
    color: var(--urgent-red);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-info p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--urgent-red);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--urgent-red), var(--tracking-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.value-card h4 {
    margin-bottom: 1rem;
    color: var(--dark-base);
}

.value-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===== STEPS/PROCESS ===== */
.steps-container {
    margin-top: 3rem;
}

.step-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--urgent-red), var(--tracking-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-base);
}

.step-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===== FLEET ===== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fleet-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.fleet-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-900));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.fleet-details {
    padding: 2rem;
}

.fleet-details h4 {
    margin-bottom: 1rem;
    color: var(--dark-base);
}

.fleet-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}

.fleet-specs li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
}

.fleet-specs li:last-child {
    border-bottom: none;
}

.fleet-specs strong {
    color: var(--dark-base);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin-bottom: 0;
    color: var(--gray-300);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 10px 24px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--dark-base);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    color: var(--gray-800);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--gray-700);
    margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.legal-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--dark-base);
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-top .container {
        justify-content: center;
        text-align: center;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark-base);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-card {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .metric-card:last-child {
        border-bottom: none;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .time-table th,
    .time-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.text-red {
    color: var(--urgent-red);
}

.text-blue {
    color: var(--tracking-blue);
}

.text-green {
    color: var(--delivered-green);
}

.bg-gray {
    background: var(--gray-50);
}

.bg-white {
    background: var(--white);
}

.bg-dark {
    background: var(--dark-base);
    color: var(--white);
}

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

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

.hidden {
    display: none;
}
