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

:root {
    /* Brand Colors */
    --blue-primary: #007BE0;
    --blue-dark: #0062B3;
    --blue-light: #E5F0FF;
    --blue-gradient: linear-gradient(135deg, #007BE0, #00A3FF);
    --red-primary: #DC1213;
    --red-dark: #B00F10;
    --red-light: #FFE5E5;
    --red-gradient: linear-gradient(135deg, #DC1213, #FF4D4D);
    --black-primary: #000000;
    --black-soft: #1A1A1A;
    --black-light: #333333;
    
    /* Neutral Colors */
    --white-pure: #FFFFFF;
    --white-soft: #F5F7FA;
    --white-cream: #FFF9F0;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-elegant: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-blue: 0 10px 30px -5px rgba(0, 123, 224, 0.3);
    --shadow-red: 0 10px 30px -5px rgba(220, 18, 19, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

/* ===== BASE STYLES ===== */
body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    background-color: var(--white-soft);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ===== UTILITY CLASSES ===== */
.text-blue { color: var(--blue-primary); }
.text-red { color: var(--red-primary); }
.text-white { color: var(--white-pure); }
.text-gradient-blue { background: var(--blue-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-gradient-red { background: var(--red-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.bg-blue { background-color: var(--blue-primary); }
.bg-red { background-color: var(--red-primary); }
.bg-black { background-color: var(--black-primary); }
.bg-white { background-color: var(--white-pure); }
.bg-soft { background-color: var(--white-soft); }
.bg-cream { background-color: var(--white-cream); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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.6s;
    z-index: -1;
}

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

.btn-primary {
    background: var(--blue-gradient);
    color: white;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(0, 123, 224, 0.4);
}

.btn-cta {
    background: var(--red-gradient);
    color: white;
    box-shadow: var(--shadow-red);
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(220, 18, 19, 0.4);
}

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

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-outline-light:hover {
    background: white;
    color: var(--black-primary);
    transform: translateY(-3px);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1000;
}
/* Top Bar */
.top-bar {
    background-color: var(--black-soft);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-item {
    color: #9CA3AF;
    font-size: 0.875rem;
    transition: color 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item i {
    color: var(--blue-primary);
    transition: all 0.3s;
}

.top-bar-item:hover {
    color: white;
}

.top-bar-item:hover i {
    color: var(--red-primary);
    transform: scale(1.1);
}

.top-bar-social a {
    color: #6B7280;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    margin: 0 0.25rem;
}

.top-bar-social a:hover {
    color: white;
    background: var(--blue-gradient);
    transform: translateY(-2px);
    border-color: transparent;
}

.top-bar-cta {
    background: var(--red-gradient);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
    margin-left: 1rem;
}

.top-bar-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    color: white;
}
/** Nav Bar**/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 0rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    height: 45px;
}
.logo img{ width: 100%; height: 45px; object-fit: contain; }

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--blue-primary), var(--red-primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.logo-icon i {
    font-size: 24px;
    color: white;
    transform: rotate(-45deg);
}

.logo:hover .logo-icon {
    transform: rotate(90deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text span {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.90rem;
    position: relative;
    padding: 0 15px !important;
}

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

.nav-menu a:hover {
    color: white;
}

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

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.nav-menu .navbar-nav .nav-item .active{
    color: #c0392b;
}
.nav-scroll .dropdown .nav-link i {
    color: #999;
}
.nav-scroll .navbar-nav .active i {
    color: #73baef;
}
.navbar .dropdown-menu .dropdown-item {
    padding: 7px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    position: relative;
    background-color: transparent;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
    color: #fff;
}

.navbar .dropdown-menu .dropdown-item.active i {
color: #73baef;
}
.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: #73baef;
}
.navbar .dropdown-toggle::after {
    display: none;
}
.navbar .dropdown-menu {}
.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}
/* li hover */
.navbar .dropdown-menu li {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .dropdown-menu li:hover {
    padding-left: 0px;
}
.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}
/* navbar-right */
.navbar .navbar-right {
    position: relative;
    display: flex;
    align-items: center;
}
.navbar .navbar-right .wrap {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
    margin-left: 20px;
}
.navbar .navbar-right .wrap .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: transparent;
    border-radius: 50%;
    font-size: 21px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #73baef;
}
.navbar .navbar-right .wrap .icon:hover {
    background-color: #73baef;
    color: #1b1b1b;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .navbar-right .wrap .text {
    margin-left: 10px;
    top: 3px;
    position: relative;
}
.navbar .navbar-right .wrap .text p {
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    margin-bottom: 4px;
}
.navbar .navbar-right .wrap .text h5 {
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin-bottom: 5px;
}
.navbar .navbar-right .wrap .text h5 a {
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .navbar-right .wrap .text h5 a:hover {
    color: #73baef;
}
.nav-scroll .navbar-right .wrap .text p,
.nav-scroll .navbar-right .wrap .text h5,
.nav-scroll .navbar-right .wrap .text h5 a {
    color: #fff;
}
/* Navbar Media Query */
@media screen and (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 210px;
        padding: 0px 0px;
        border-radius: 0px;
        border: 0;
        background-color: #222;
        -webkit-transition: all .3s;
        transition: all .3s;
        margin-top: 5px;
    }
    .navbar .dropdown-menu .nav-link{
        padding: 10px 15px !important;
    }
    /* Fix for dropdown menu items */
    .navbar .dropdown-menu .nav-item:last-of-type .nav-link:hover,
    .navbar .dropdown-menu li:last-of-type .nav-link:hover {
        border-bottom: 0 !important;
    }

    /* Alternative if you want to target the li elements directly */
    .navbar .dropdown-menu .nav-item:last-child:hover,
    .navbar .dropdown-menu li:last-child:hover {
        border-bottom: 0 !important;
    }

    /* Make sure all dropdown items don't get unwanted borders */
    .navbar .dropdown-menu .nav-link {
        border-bottom: none;
    }

    /* If border-bottom is applied elsewhere, ensure it's removed on hover for all dropdown items */
    .navbar .dropdown-menu .nav-item .nav-link:hover,
    .navbar .dropdown-menu li .nav-link:hover {
        border-bottom: 0 !important;
    }
    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 10px);
        top: -12px;
        right: auto;
        min-width: 210px;
        transform: translateY(0);
        background-color: #2b2b2b;
    }
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
@media screen and (max-width: 991px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        background: transparent;
        padding-top: 0px;
        padding-bottom: 0px;
        height: 85px;
    }
    .nav-scroll {
        background: #222;
    }
    .logo-wrapper {
        float: left;
        padding: 28.5px 15px;
    }
    .nav-scroll .logo-wrapper {
        padding: 28.5px 15px;
        background-color: transparent;
    }
    .nav-scroll .logo-img {
        width: 130px;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }
    .nav-scroll .logo {}
    .logo-img {
        margin-bottom: 0px;
        width: 130px;
        padding: 0;
    }
    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container {
        max-width: 100%;
        padding: 0;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: #fff;
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: #fff !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: #73baef !important;
    }
    .navbar .dropdown-menu .dropdown-item {
        color: #fff;
        padding: 0 15px;
        font-size: 14px;
        line-height: 40px;
    }
    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 300;
    }
    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 10px;
    }
    .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #222;
        box-shadow: none;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }
    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }
    .navbar .navbar-nav {
        padding: 20px;
    }
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: #222;
        text-align: left;
    }
    .dropdown .nav-link i {
        color: rgba(255, 255, 255, 0.5);
    }
    .nav-scroll .dropdown .nav-link i {
        color: rgba(255, 255, 255, 0.5);
    }
    .nav-scroll .dropdown .nav-link.active i {
        color: #73baef;
    }
    .navbar .dropdown-menu .dropdown-item i {
        color: #fff;
    }
    .navbar .navbar-right {
        display: none;
    }
}


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: auto;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    z-index: 1;
    /*animation: moveGrid 2s linear infinite;*/
}
.hero .slide-caption{
    z-index: 2;
}
@keyframes moveGrid {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.25rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.1;
    color: #FFFFFF;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--blue-primary), var(--red-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--gray-300);
    animation: fadeInUp 1s ease 0.4s both;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

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

.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-primary);
    display: block;
}

.hero-stat .label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, white 0%, #F5F7FA 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,123,224,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-badge {
    display: inline-block;
    background: var(--blue-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-blue);
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-section h2 span {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*font-family: var(--font-elegant);*/
    width: 100%;
    display: block;
}

.about-lead {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border-left: 4px solid var(--blue-primary);
    padding-left: 1.5rem;
    font-style: italic;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--blue-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--blue-primary);
    transition: all 0.3s;
    flex-shrink: 0;
}

.about-feature:hover .feature-icon {
    background: var(--blue-primary);
    color: white;
    transform: rotateY(180deg);
}

.about-image {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.about-image-main img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--blue-gradient);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0.3;
}

.about-image-pattern2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: var(--red-gradient);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0.3;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #E5E7EB;
}

.about-experience .years {
    font-size: 3rem;
    font-weight: 800;
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* ===== FLEET SECTION ===== */
.fleet-section{ background: #FFFFFF }
.section {
    padding: var(--spacing-20) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-16);
}

.section-subtitle {
    display: inline-block;
    background: var(--blue-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black-primary);
}

.section-header h2 span {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.fleet-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

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

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.fleet-card:hover .card-overlay {
    opacity: 1;
}

.card-tags {
    display: flex;
    gap: 0.5rem;
}

.card-tag {
    background: var(--blue-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.availability-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.card-content {
    padding: 2rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--black-primary);
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
    -webkit-text-fill-color: var(--gray-500);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.feature-item i {
    color: var(--blue-primary);
    width: 18px;
    font-size: 1rem;
}

.card-actions {
    display: flex;
    gap: 1rem;
}

.card-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-soft) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M10 10 L90 10 L90 90 L10 90" fill="none" stroke="white" stroke-width="1"/></svg>');
    background-size: 50px;
}

.services-section .section-header h2 {
    color: white;
}

.services-section .section-header p {
    color: var(--gray-400);
}

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

.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue-gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    border-color: var(--blue-primary);
}

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

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0,123,224,0.2), rgba(220,18,19,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px dashed var(--blue-primary);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    border-color: var(--red-primary);
    transform: rotate(360deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--white-pure), var(--white-soft));
    padding: var(--spacing-16) 0;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-primary);
}

.stat-card i {
    font-size: 2.5rem;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--black-primary), var(--black-soft));
    color: white;
    position: relative;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--blue-primary);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    font-family: var(--font-elegant);
    color: rgba(0,123,224,0.2);
    line-height: 1;
}

.testimonial-rating {
    color: #FBBF24;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.testimonial-text {
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.author-info p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(115deg, var(--blue-primary), var(--red-primary));
    color: white;
    text-align: center;
    padding: var(--spacing-20) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="1"/></svg>');
    background-size: 100px;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-section .btn-outline-light {
    border-color: white;
    color: white;
}

.cta-section .btn-outline-light:hover {
    background: white;
    color: var(--blue-primary);
}

/* ===== MODERN PROFESSIONAL SUBSCRIBE FORM (REDESIGNED) ===== */
.subscribe-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0B1120 0%, #1A1F2E 100%);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Animated background elements */
.subscribe-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,123,224,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

.subscribe-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220,18,19,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.1); }
}

/* Decorative grid pattern */
.subscribe-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Main card */
.subscribe-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.subscribe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary), var(--red-primary), var(--blue-primary));
    animation: shimmer 3s infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Left content */
.subscribe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0,123,224,0.15);
    border: 1px solid rgba(0,123,224,0.3);
    border-radius: 50rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--blue-primary);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.subscribe-badge i {
    font-size: 1rem;
    color: var(--blue-primary);
}

.subscribe-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.subscribe-title span {
    background: linear-gradient(135deg, var(--blue-primary), var(--red-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subscribe-description {
    color: #9CA3AF;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Benefits list */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #D1D5DB;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(0,123,224,0.2);
    transform: translateX(5px);
}

.benefit-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(0,123,224,0.2), rgba(220,18,19,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-primary);
    font-size: 1rem;
    border: 1px solid rgba(0,123,224,0.3);
    flex-shrink: 0;
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, var(--blue-primary), var(--red-primary));
    color: white;
    transform: rotate(360deg);
    transition: all 0.6s;
}

.benefit-text {
    flex: 1;
}

.benefit-text strong {
    color: white;
    display: block;
    margin-bottom: 0.1rem;
}

.benefit-text small {
    color: #6B7280;
    font-size: 0.8rem;
}

/* Right side - Form */
.subscribe-form-container {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.subscribe-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,123,224,0.2), transparent);
    border-radius: 50%;
    animation: pulseSlow 8s ease-in-out infinite;
}

@keyframes pulseSlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0.2; }
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Form groups */
.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D1D5DB;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.form-label-modern i {
    color: var(--blue-primary);
    font-size: 0.9rem;
}

.input-group-modern {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    transition: all 0.3s;
}

.input-group-modern:focus-within {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0,123,224,0.2);
    background: rgba(0,0,0,0.4);
}

.input-icon {
    padding: 0 1rem;
    color: var(--blue-primary);
    font-size: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    height: 50px;
    display: flex;
    align-items: center;
}

.input-group-modern input,
.input-group-modern select {
    background: transparent;
    border: none;
    padding: 0.8rem 1rem;
    color: white;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
}

.input-group-modern input::placeholder {
    color: #6B7280;
}

.input-group-modern select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.input-group-modern select option {
    background: var(--black-soft);
    color: white;
}

/* Phone input special */
.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.country-code-select {
    width: 120px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    color: white;
    padding: 0 0.8rem;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}

.country-code-select:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0,123,224,0.2);
}

.country-code-select option {
    background: var(--black-soft);
    color: white;
    padding: 1rem;
}

/* Submit button */
.subscribe-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--blue-primary), var(--red-primary));
    border: none;
    border-radius: 1rem;
    padding: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    margin: 2rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.subscribe-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(220, 18, 19, 0.4);
}

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

.subscribe-submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s;
}

.subscribe-submit-btn:hover i {
    transform: translateX(5px);
}

/* Trust badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9CA3AF;
    font-size: 0.8rem;
}

.trust-badge i {
    color: #10B981;
    font-size: 0.9rem;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--black-primary);
    color: white;
    padding: var(--spacing-20) 0 var(--spacing-8);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary), var(--red-primary), var(--blue-primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about p {
    color: var(--gray-400);
    margin: 1.5rem 0;
    line-height: 1.8;
}
.footer_logo img{
    width: 200px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--black-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--gray-800);
}

.social-links a:hover {
    background: var(--blue-gradient);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-links h3,
.footer-middle h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h3::after,
.footer-middle h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--red-gradient);
}

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

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

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #38bdf8;
    transform: translateX(5px);
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: #38bdf8;
    width: 20px;
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* ========== FOOTER ========== */
.wms-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 70px 0 0;
  border-top: 1px solid #1e293b;
}

.wms-footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wms-footer a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.88rem;
}

.wms-footer a:hover { color: #ffffff; }

.wms-footer ul { list-style: none; padding: 0; }

.wms-footer ul li { margin-bottom: 10px; }

.wms-footer p { font-size: 0.88rem; line-height: 1.7; color: #64748b; }

.wms-footer-social a {
  width: 38px;
  height: 38px;
  background: #1e293b;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.wms-footer-social a:hover { background: #059669; color: #ffffff; }

.wms-footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 50px;
  padding: 22px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
}