/*
Theme Name: Cycle Fix London 2026 Final
Theme URI: https://cyclefixlondon.co.uk
Description: Professional cycling workshop website with smooth page transitions.
Version: 4.3.1
Author: Cycle Fix London
Text Domain: cyclefix-final
*/

/* --- DESIGN SYSTEM --- */
:root {
    --primary: #009FE3;
    --primary-hover: #00d4ff;
    --dark: #0B1120;
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

/* --- BASE STYLES --- */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.03em;
}

/* --- HEADER --- */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-pill {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: var(--dark);
}

.nav-pill:hover {
    background: var(--primary);
    color: white;
}

/* --- FIXED FOOTER ISSUES --- */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 40px 0;
}

.footer-logo svg {
    width: 48px !important;
    height: 48px !important;
}

.footer-logo h2 {
    font-size: 20px;
    letter-spacing: -1px;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--primary);
    font-size: 11px;
    margin-bottom: 24px;
    letter-spacing: 0.2em;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav a:hover {
    color: var(--primary);
}

.cert-group img,
.payment-group img {
    height: 20px !important;
    width: auto !important;
    object-fit: contain;
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 700px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-dot.active {
    background: var(--primary);
    width: 32px;
}

/* --- CAROUSEL --- */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-track {
    display: flex;
    gap: 120px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.brand-item img {
    height: 48px;
    opacity: 1 !important;
    transition: all 0.3s ease;
    filter: grayscale(0) !important;
}

/* Cytech logo needs inversion since it's white on white background */
.brand-item img[alt="Cytech"],
.brand-item img[alt*="cytech"],
.brand-item img[src*="cytech"],
.brand-item img[src*="Cytech"] {
    filter: brightness(0) invert(1) !important;
}

.brand-item:hover img {
    transform: scale(1.1);
}

/* Keep Cytech inverted on hover too */
.brand-item:hover img[alt="Cytech"],
.brand-item:hover img[alt*="cytech"],
.brand-item:hover img[src*="cytech"],
.brand-item:hover img[src*="Cytech"] {
    filter: brightness(0) invert(1) !important;
    transform: scale(1.1);
}

/* --- PREMIUM ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    transform: translateY(40px);
}

.active.fade-up {
    transform: translateY(0);
}

.page-fade {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-down {
    animation: slide-down 0.25s ease-out forwards;
}

/* --- TOOLTIPS --- */
.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-content {
    visibility: hidden;
    width: 220px;
    background-color: #0B1120;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 12px;
    position: absolute;
    z-index: 100;
    bottom: 150%;
    left: 50%;
    margin-left: -110px;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #0B1120 transparent transparent transparent;
}

.tooltip-container:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

/* --- SERVICE GRID UTILS --- */
.service-icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

/* --- SMOOTH PAGE TRANSITIONS --- */
html {
    overflow-x: hidden;
}

body {
    opacity: 1;
}

/* --- FOOTER TABS --- */
.footer-tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #6b7280;
    padding: 10px 16px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-tab-panel {
    animation: fadeIn 0.3s ease-out;
}

/* --- MOBILE OPTIMIZATIONS --- */
@media (max-width: 768px) {
    .stat-box-home {
        padding: 12px 16px;
    }

    .stat-number-home {
        font-size: 1.5rem;
    }

    .service-card {
        height: 280px !important;
    }

    .why-card {
        padding: 1.25rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Improve touch targets on mobile */
    .nav-pill,
    button,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Certifications stack nicely on mobile */
    .cert-group,
    .payment-group {
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .service-card {
        height: 240px !important;
    }
}

/* --- ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    body {
        opacity: 1 !important;
    }

    .brand-track {
        animation: none;
    }
}

/* --- FOCUS STATES FOR ACCESSIBILITY --- */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Rounded focus for pills and dropdown items */
.nav-pill:focus,
.nav-pill:focus-visible,
header a:focus,
header a:focus-visible,
header button:focus,
header button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 12px;
}

/* No focus outline for mouse clicks (better UX) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* --- SCROLLBAR STYLING --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* --- WORKSHOP PRICE LIST --- */
.workshop-packages-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .workshop-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .workshop-packages-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .package-card {
        padding: 1.5rem 1rem;
    }
}

.package-card,
.specialty-card {
    background: #ffffff;
    border: 1px solid #e0f2fe;
    /* Light blue border */
    border-radius: 2.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 40px -15px rgba(0, 159, 227, 0.1);
    overflow: visible;
}

@media (min-width: 768px) {

    .package-card,
    .specialty-card {
        min-height: 480px;
    }
}

.sf-results-grid .package-card {
    min-height: auto !important;
}

.repair-panel {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2rem;
    padding: 2rem 1.25rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
    /* Changed from flex to block */
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.package-card h3 {
    font-size: 10px !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
    margin-bottom: 0.5rem;
}

.package-card.highlighted {
    border: 2px solid #009FE3;
    background: #eff6ff !important;
    padding-top: 1.5rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.15) !important;
    transform: none !important;
    z-index: 5;
}

.package-card:hover,
.repair-panel:hover,
.specialty-card:hover {
    transform: translateY(-8px);
    border-color: #009FE3;
    box-shadow: 0 20px 40px rgba(0, 159, 227, 0.2);
}

.most-popular-badge,
.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #009FE3;
    color: #fff;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 159, 227, 0.3);
    z-index: 10;
    border: 2px solid #ffffff;
}

.package-price {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #0b1120;
    line-height: 1;
    margin-bottom: 0.15rem;
}

.package-item {
    display: flex;
    align-items: center;
    /* better alignment with check and info icons */
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.4;
}

.package-item svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #009FE3 !important;
    /* Force brand blue for checkmarks */
}

.btn-select-package {
    margin-top: auto;
    width: 100%;
    padding: 1rem 0.75rem;
    border-radius: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    background: #009FE3;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 159, 227, 0.2);
}

.btn-select-package:hover {
    background: #0077B3;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.4);
}


/* --- SERVICE FINDER --- */
.sf-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sf-card {
    position: relative;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
}

@media (max-width: 640px) {
    .sf-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .sf-grid .sf-card {
        padding: 0.75rem 0.5rem;
        flex: none;
    }

    .sf-card-icon {
        height: 80px !important;
        margin-bottom: 0.5rem !important;
    }

    .sf-card-label {
        font-size: 10px !important;
        line-height: 1.2;
    }
}

@media (min-width: 768px) {
    .sf-grid .sf-card {
        flex: 0 1 calc(25% - 15px);
    }
}

.sf-card:hover {
    border-color: #009FE3;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 159, 227, 0.1);
}

.sf-card.active {
    border-color: #009FE3;
    background: #f0f9ff;
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.15);
}

/* Dimming effect when a card is selected */
.sf-card-grid.has-selection .sf-card:not(.active) {
    opacity: 0.5;
    filter: grayscale(1) blur(1px);
    transform: scale(0.95);
}

.sf-card-icon {
    width: 100%;
    max-width: 160px;
    /* Restrict image container width */
    height: 120px;
    border-radius: 1rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    overflow: hidden;
    padding: 0.75rem;
    transition: all 0.4s ease;
}

.sf-card.active .sf-card-icon {
    border-color: #009FE3;
    background: white;
    transform: scale(1.05);
}

.sf-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sf-card-label {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    color: #0f172a;
    letter-spacing: 0.05em;
}

.sf-card-sublabel {
    color: #64748b;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sf-card-selected-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    background: #009FE3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.sf-card.active .sf-card-selected-badge {
    opacity: 1;
    transform: scale(1);
}

.sf-results-grid {
    display: none;
}

.sf-results-grid.visible {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.sf-results-grid .package-card {
    width: 100%;
    max-width: 380px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .sf-results-grid .package-card {
        max-width: 100%;
    }
}

/* Internal Package Card Layout */
.package-card {
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(0, 159, 227, 0.04), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.package-header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* stacked like image */
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.package-item-list {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    margin-bottom: 2.5rem !important;
}

.package-price {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.info-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #009FE3;
    /* Blue circle as per image */
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    margin-left: auto;
    /* Push to right like a column */
    cursor: help;
    transition: all 0.2s;
    font-style: normal;
}

.info-trigger:hover {
    background: #0077B3;
    transform: scale(1.1);
}

/* Package Color Tints */
.package-card.tint-safety {
    border-top: 6px solid #22c55e;
}

.package-card.tint-ss-general,
.package-card.tint-single-blue {
    border-top: 6px solid #009FE3;
}

.package-card.tint-general {
    border-top: 6px solid #0ea5e9;
}

.package-card.tint-cfl {
    border-top: 6px solid #009fe3;
}

.package-card.tint-brompton {
    border-top: 6px solid #dc2626;
}

.package-card.tint-ebike {
    border-top: 6px solid #3b82f6;
}

.package-card.tint-escooter {
    border-top: 6px solid #6366f1;
}


/* Service Finder Tooltip */
.tooltip-popup {
    position: fixed;
    background: #0B1120;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tooltip-popup.visible {
    opacity: 1;
}

.tooltip-popup::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
}

.tooltip-popup[style*="--arrow-position: bottom"]::after {
    top: 100%;
    border-top-color: #0B1120;
}

.tooltip-popup[style*="--arrow-position: top"]::after {
    bottom: 100%;
    border-bottom-color: #0B1120;
}

/* --- WORKSHOP PAGE COMPONENTS --- */

/* Stats Counter */
.stat-box {
    text-align: center;
    padding: 16px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    color: #009FE3;
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #009FE3;
    box-shadow: 0 15px 50px -15px rgba(0, 159, 227, 0.12);
}

.testimonial-stars {
    color: #fbbf24;
}

.testimonial-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 12px 0;
    font-style: italic;
}

.testimonial-author {
    font-weight: 800;
    font-size: 12px;
    color: #0f172a;
    text-transform: uppercase;
}

/* Process Step */
.process-step {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #009FE3;
    box-shadow: 0 10px 30px -10px rgba(0, 159, 227, 0.1);
}

.process-number {
    width: 48px;
    height: 48px;
    background: #009FE3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    margin: 0 auto 16px;
}

.process-title {
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    border-color: #009FE3;
}

.faq-item.open {
    border-color: #009FE3;
    box-shadow: 0 10px 25px -5px rgba(0, 159, 227, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-weight: 800;
    font-size: 14px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

/* Individual Repair Price Toggles */
.repair-menu-item {
    display: flex;
    align-items: baseline;
    padding: 0.875rem 0;
    gap: 0.5rem;
}

.repair-menu-item .label {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.875rem;
}

.repair-menu-item .dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(0, 0, 0, 0.1);
    position: relative;
    top: -4px;
}

.repair-menu-item .price {
    font-weight: 900;
    color: #009FE3;
    font-size: 0.875rem;
    font-style: italic;
}

.repair-tab-pill {
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.repair-tab-pill:hover {
    background: #e2e8f0;
    color: #0B1120;
}

.repair-tab-pill.active {
    background: #009FE3;
    color: #fff;
}