body,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color)
}

.location-info,
.mb-2,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 1rem
}

.btn,
.slogan {
    font-weight: 700
}

.forgot-password,
.service-link,
a {
    text-decoration: none
}

.btn,
.form-submit {
    letter-spacing: 1px
}

:root {
    --primary-color: #1e90ff;
    --primary-dark: #0062cc;
    --primary-light: #60affe;
    --secondary-color: #f7921e;
    --secondary-dark: #e67e00;
    --text-color: #2c3e50;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa;
    --light-surface: #ffffff;
    --light-surface-2: #f1f3f5;
    --light-surface-3: #e9ecef;
    --white: #fff;
    --black: #000;
    --error: #dc3545;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
    --font-primary: 'Inter', 'Arial', sans-serif;
    --font-secondary: 'Georgia', serif;
    --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --header-height: 80px;
}

.btn,
.dropdown-menu,
.dropdown-menu a,
.dropdown-menu a i,
a,
header {
    transition: var(--transition)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-bg)
}

a {
    color: var(--primary-color)
}

.news-item .read-more:hover,
.resource-item .resource-link:hover,
.white-paper-content .read-more:hover,
a:hover {
    color: var(--primary-dark)
}

ul {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    font-weight: 600
}

img {
    max-width: 100%;
    height: auto
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: .75rem 1.5rem;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    border: none;
    cursor: pointer
}

.btn:hover,
.learn-more-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover)
}

.bg-secondary,
.btn-secondary {
    background-color: var(--secondary-color)
}

.btn-secondary:hover {
    background-color: var(--secondary-dark)
}

.btn-outline {
    background: 0 0;
    border: 2px solid var(--primary-color);
    color: var(--white)
}

.btn-outline:hover,
.login-btn,
.promise-btn,
.signup-btn {
    background-color: var(--primary-color);
    color: var(--white)
}

.dropdown-menu,
header.scrolled {
    background-color: var(--white);
    box-shadow: var(--box-shadow)
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff0;
    box-shadow: none
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 0 2rem
}

.logo-container {
    display: flex;
    align-items: center
}

.logo {
    max-height: 95px;
    margin-top: 5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--text-color)
}

.tagline {
    font-size: .9rem;
    color: var(--text-muted)
}

.promise-content,
.slogan,
.text-light,
header.scrolled .nav-item>a {
    color: var(--text-color)
}

.slogan {
    font-size: 1.1rem
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.login-btn,
.signup-btn {
    padding: .5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600
}

.login-btn:hover,
.signup-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white)
}

.login-btn {
    background-color: darkred;
}

.login-btn:hover {
    background-color: #690000;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1
}

.nav-list {
    display: flex;
    justify-content: center
}

.input-with-icon,
.nav-item,
.password-input-container,
.position-relative,
.textarea-container {
    position: relative
}

.nav-item>a {
    display: block;
    color: var(--white);
    padding: 1rem 1.5rem;
    font-weight: 500
}

.accordion-content a,
.dropdown-menu a i,
.dropdown-menu a:hover,
.input-with-icon.focused i,
.nav-item>a:hover,
.quick-links a:hover,
.section-title,
.sidebar-section h3 i,
.text-primary,
.toggle-password:hover,
header.scrolled .nav-item>a:hover {
    color: var(--primary-color)
}

.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: .5rem
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 10;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--light-surface-3)
}

.hero-overlay,
.hero-slider {
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-surface-3)
}

.carousel-control:hover,
.checkbox-label input:checked~.checkbox-custom,
.dot.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color)
}

.dropdown-menu a i {
    font-size: 1.1rem;
    min-width: 20px
}

.dropdown-menu a:hover {
    background-color: var(--light-surface-2);
    padding-left: 2rem
}

.dropdown-menu a:hover i {
    color: var(--primary-dark);
    transform: scale(1.1)
}

.mobile-menu-toggle {
    display: none;
    background: 0 0;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer
}

.hero h1,
.hero p,
.learn-more-btn,
.scroll-indicator {
    color: var(--white)
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-slider {
    position: absolute;
    height: 100%
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out
}

.hero-slide.active {
    opacity: 1
}

.hero-overlay {
    position: absolute;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / .1), rgb(0 0 0 / .4))
}

.hero-content {
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: calc(var(--header-height) + 2rem);
    animation: 1.2s fadeInUp
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem
}

.form-actions,
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem
}

.learn-more-btn {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: var(--transition)
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: 2s infinite bounce;
    cursor: pointer
}

/* Top Bar Styles */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--top-bar-height);
  background-color: transparent;
  font-size: 0.9rem;
  z-index: 1001;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
}

.top-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: transparent;
  transition: background 0.3s ease;
}

.solid-top-bar {
  background-color: rgba(9, 12, 18, 0.95);
  backdrop-filter: blur(10px);
}

.solid-top-bar::after {
  background: rgba(255, 255, 255, 0.05);
}

.top-bar-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-link {
  color: darkred;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-bar-link:hover {
  color: #690000;
}

/* Adjust header position to account for top bar */
header {
  top: var(--top-bar-height);
}

body {
  padding-top: 0;
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0) translateX(-50%)
    }

    40% {
        transform: translateY(-20px) translateX(-50%)
    }

    60% {
        transform: translateY(-10px) translateX(-50%)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.services-section {
    background-color: var(--light-surface);
    position: relative;
    padding: 6rem 2rem;
}

.services-section-header {
    text-align: center;
    margin-bottom: 4rem
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.services-section-header h2 {
    color: var(--text-color);
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700
}

.services-section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* New Services Grid */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* New Service Card */
.service-card-new {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.15);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-new:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.service-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.service-card-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    gap: 0.75rem;
}

.service-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Styles for New Services Section - consolidated at end of file */

/* Keep legacy styles for backward compatibility */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto
}

.service-card {
    width: 220px;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: var(--transition);
    z-index: 1
}

.service-card:hover {
    box-shadow: 0 12px 24px rgb(30 144 255 / .3);
    transform: scale(1.05)
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    color: var(--white);
    background: rgb(0 0 0 / .5);
    border-radius: 0 0 12px 12px;
    text-align: center;
    margin-bottom: -30px
}

.core-values,
.feature,
.mission,
.vision {
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow)
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    display: block;
    transition: var(--transition)
}

.footer-bottom-links a:hover,
.footer-links a:hover,
.footer-tools a:hover,
.service-link {
    color: var(--primary-light)
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--primary-light)
}

.service-card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: var(--white)
}

.service-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: rgb(255 255 255 / .9)
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem
}

.service-link:hover {
    color: var(--white);
    gap: .75rem
}

.service-link i,
.transition {
    transition: var(--transition)
}

.value-proposition {
    padding: 5rem 2rem;
    text-align: center;
    background-color: var(--light-bg)
}

.value-proposition h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700
}

.value-proposition>p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-muted)
}

.company-values {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0
}

.core-values,
.mission,
.vision {
    flex: 1;
    min-width: 350px;
    min-height: 300px;
    position: relative;
    background-color: #6b6b6b;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem
}

.core-values:hover,
.mission:hover,
.vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgb(0 0 0 / .2);
    background-color: #5a5a5a
}

.value-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: var(--white);
    text-align: center
}

.value-card-content h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.value-card-content p {
    color: rgb(255 255 255 / .95);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0
}

.form-step,
.hidden,
.logo-circle {
    display: none
}

.resources-white-papers,
.why-choose-us {
    padding: 5rem 2rem;
    background-color: var(--white)
}

.why-choose-us h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 3rem
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.feature {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 2rem;
    background-color: var(--light-surface);
    border: 1px solid var(--light-surface-3)
}

.carousel-inner,
.feature-image,
.promise-btn,
.tech-btn,
.white-paper-card {
    border-radius: var(--border-radius)
}

.business-login:hover,
.feature:hover,
.location-card:hover,
.login-box:hover,
.resource-item:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover)
}

.feature-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 1.5rem
}

.feature-image img,
.white-paper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.carousel-control,
.dot,
.resource-item,
.social-media a {
    transition: var(--transition)
}

.feature:hover .feature-image img,
.hover-scale:hover,
.white-paper-card:hover .white-paper-image img {
    transform: scale(1.05)
}

.promise-btn:hover,
.tech-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover)
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem
}

.technology {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--light-bg)
}

.promise-content,
.tech-content {
    flex: 1;
    min-width: 300px;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.tech-content {
    color: var(--text-color);
    position: relative;
    overflow: hidden
}

.tech-btn,
.white-paper-card {
    background-color: var(--primary-color)
}

.tech-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../imgs/tech-bg.jpg) center center/cover no-repeat;
    opacity: .2;
    z-index: 0
}

.tech-content>* {
    position: relative;
    z-index: 1
}

.promise-content h2,
.tech-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem
}

.promise-content p,
.tech-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem
}

.promise-btn,
.tech-btn {
    display: inline-block;
    padding: .75rem 1.5rem;
    font-weight: 700;
    align-self: flex-start
}

.tech-btn {
    color: var(--white)
}

.tech-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white)
}

.promise-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white)
}

section.resources-white-papers {
    padding: 0
}

.white-paper-cards-container {
    max-width: 1200px;
    margin: 0 auto 3rem
}

.carousel {
    position: relative;
    margin-bottom: 3rem
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    min-height: 350px
}

.white-paper-card {
    display: none;
    padding: 0;
    box-shadow: var(--box-shadow);
    margin: 0 auto;
    max-width: 960px;
    overflow: hidden;
    border: 1px solid var(--light-surface-3)
}

.white-paper-card.active {
    display: flex;
    flex-wrap: wrap;
    animation: .6s ease-out fadeIn
}

.white-paper-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    overflow: hidden
}

.white-paper-content {
    flex: 2;
    min-width: 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.white-paper-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: .5rem;
    text-transform: uppercase
}

.white-paper-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-muted)
}

.form-group,
.mb-3,
.white-paper-content p {
    margin-bottom: 1.5rem
}

.white-paper-content .read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: auto
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-surface-3);
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid var(--light-surface-3)
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--light-surface-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .9;
    z-index: 10;
    color: var(--text-color);
    font-size: 1.2rem
}

.highlight-item,
.resource-item {
    padding: 2rem;
    background-color: var(--light-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow)
}

.carousel-control:hover {
    opacity: 1;
    color: var(--white)
}

.carousel-control.prev {
    left: 10px
}

.carousel-control.next {
    right: 10px
}

.additional-resources {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem
}

.recent-highlights,
.statistics-content {
    margin: 0 auto;
    max-width: 1200px
}

.corporate-office,
.customer-service,
.resource-column {
    flex: 1;
    min-width: 300px
}

.resource-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-surface-3)
}

.resource-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.flex-grow,
.resource-item p {
    flex-grow: 1
}

.news-item .read-more,
.resource-item .resource-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 700
}

.highlight-item {
    border: 1px solid var(--light-surface-3)
}

.service-matrix,
.service-table .btn,
.service-table-container {
    border-radius: var(--border-radius)
}

.highlight-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem
}

.news-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color)
}

.statistics-background {
    background: url(../imgs/map-background.jpg) center center/cover no-repeat;
    padding: 0;
    position: relative
}

.statistics-overlay {
    background-color: rgb(30 144 255 / .95);
    padding: 5rem 0;
    margin-top: 1rem
}

.statistics-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around
}

.statistic-item {
    text-align: center;
    padding: 2rem;
    flex: 1;
    min-width: 200px
}

.statistic-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem
}

.statistic-label {
    font-size: 1.3rem;
    color: var(--white)
}

.service-matrix {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    background-color: var(--light-surface)
}

.service-matrix h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem
}

.service-matrix>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem
}

.service-table-container {
    overflow-x: auto
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: var(--white)
}

.service-table td,
.service-table th {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--light-surface-3)
}

.service-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600
}

.homepage-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0, var(--primary-dark) 100%);
    margin-top: 1rem
}

.company-cta::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/imgs/cta-pattern.svg) center center/cover no-repeat;
    opacity: .1;
    z-index: 1
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: .95
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.font-bold,
.hero-small h1,
.phone {
    font-weight: 700
}

.service-table td:first-child,
.service-table th:first-child,
.text-left {
    text-align: left
}

.faq-cta,
.section-header.centered,
.shipping-tools,
.text-center {
    text-align: center
}

.bg-surface-2,
.service-table tr:nth-child(2n) {
    background-color: var(--light-surface-2)
}

.service-table i.fas.fa-check {
    color: var(--primary-color);
    font-size: 1.2rem
}

.service-table tfoot td {
    border-bottom: none;
    padding-top: 1.5rem
}

.service-table .btn {
    padding: .5rem 1.2rem;
    font-size: .9rem
}

.shipping-tools {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
    margin-bottom: -3rem
}

.shipping-tools h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem
}

.footer-main h3,
.phone {
    font-size: 1.5rem;
    color: var(--white)
}

.shipping-tools p {
    max-width: 600px;
    margin: 0 auto 2rem
}

.shipping-tools .btn {
    padding: 1rem 2.5rem
}

footer {
    background-color: var(--text-color);
    color: var(--white);
    padding-top: 5rem
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem
}

.footer-main h3 {
    margin-bottom: 1.5rem
}

.footer-links a,
.footer-tools a {
    color: rgb(255 255 255 / .9)
}

.phone {
    margin-bottom: .5rem
}

/* Footer location and email links */
.location-link,
.email-link {
    display: block;
    color: rgb(255 255 255 / .9);
    margin-bottom: .5rem;
    transition: color 0.3s ease;
}

.location-link:hover,
.email-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.location-link i,
.email-link i {
    margin-right: .5rem;
}

/* Fax styling */
.fax {
    color: rgb(255 255 255 / .8);
    margin-bottom: .5rem;
    font-size: 1rem;
}

.fax a {
    color: rgb(255 255 255 / .9);
}

.fax a:hover {
    color: var(--white);
}

.address,
.hours {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: rgb(255 255 255 / .8)
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: .5rem
}

.footer-tools {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgb(255 255 255 / .2)
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgb(255 255 255 / .1);
    border-radius: 50%;
    color: var(--white)
}

.login-box,
.service-card .btn,
.w-100 {
    width: 100%
}

.footer-bottom p,
.footer-bottom-links a {
    color: rgb(255 255 255 / .8);
    font-size: .9rem
}

.social-media a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px)
}

.footer-bottom {
    background-color: rgb(0 0 0 / .2);
    padding: 1.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem
}

.footer-bottom p {
    margin-bottom: 0
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem
}

/* Tablet-specific styles (768px - 1024px) - consolidated at end of file */

.login-box,
.rounded {
    border-radius: var(--border-radius)
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

.slide-in-right {
    animation: 1s ease-out slideInRight
}

.mt-1 {
    margin-top: .5rem
}

.location-actions,
.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.5rem
}

.mt-4 {
    margin-top: 2rem
}

.mt-5 {
    margin-top: 3rem
}

.mb-1 {
    margin-bottom: .5rem
}

.benefits-header,
.mb-4,
.registration-progress,
.section-header,
.step-header {
    margin-bottom: 2rem
}

.mb-5 {
    margin-bottom: 3rem
}

.my-1 {
    margin-top: .5rem;
    margin-bottom: .5rem
}

.my-2 {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.my-3 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

.my-4 {
    margin-top: 2rem;
    margin-bottom: 2rem
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem
}

.p-1 {
    padding: .5rem
}

.p-2 {
    padding: 1rem
}

.p-3 {
    padding: 1.5rem
}

.p-4 {
    padding: 2rem
}

.p-5 {
    padding: 3rem
}

.text-secondary {
    color: var(--secondary-color)
}

.form-select option:first-child,
.section-header p,
.step-header p,
.text-muted {
    color: var(--text-muted)
}

.hero-small h1,
.hero-small p,
.text-white {
    color: var(--white)
}

.bg-dark {
    background-color: var(--light-bg)
}

.bg-surface {
    background-color: var(--light-surface)
}

.bg-primary,
.social-icons.large a:hover {
    background-color: var(--primary-color)
}

.shadow {
    box-shadow: var(--box-shadow)
}

.shadow-lg {
    box-shadow: var(--box-shadow-hover)
}

.business-login,
.form-success,
.login-box {
    box-shadow: var(--box-shadow)
}

.d-flex {
    display: flex
}

.flex-column {
    flex-direction: column
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-around {
    justify-content: space-around
}

.align-center {
    align-items: center
}

.align-start {
    align-items: flex-start
}

.align-end {
    align-items: flex-end
}

.flex-wrap {
    flex-wrap: wrap
}

.gap-1 {
    gap: .5rem
}

.gap-2 {
    gap: 1rem
}

.gap-3 {
    gap: 1.5rem
}

.gap-4 {
    gap: 2rem
}

.gap-5 {
    gap: 3rem
}

.h-100 {
    height: 100%
}

.max-w-xs {
    max-width: 320px
}

.max-w-sm {
    max-width: 640px
}

.max-w-md {
    max-width: 768px
}

.max-w-lg {
    max-width: 1024px
}

.max-w-xl {
    max-width: 1280px
}

.font-sm {
    font-size: .875rem
}

.font-md {
    font-size: 1rem
}

.font-lg {
    font-size: 1.125rem
}

.font-xl {
    font-size: 1.25rem
}

.font-2xl {
    font-size: 1.5rem
}

.font-3xl {
    font-size: 1.875rem
}

.font-4xl {
    font-size: 2.25rem
}

.font-5xl,
.hero-small h1 {
    font-size: 3rem
}

.font-semibold {
    font-weight: 600
}

.font-medium {
    font-weight: 500
}

.font-normal {
    font-weight: 400
}

.font-light {
    font-weight: 300
}

.font-italic {
    font-style: italic
}

.text-right {
    text-align: right
}

.block,
.checkbox-label input:checked~.checkbox-custom:after {
    display: block
}

.form-success .btn,
.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.position-absolute {
    position: absolute
}

.position-fixed {
    position: fixed
}

.top-0 {
    top: 0
}

.left-0 {
    left: 0
}

.right-0 {
    right: 0
}

.bottom-0 {
    bottom: 0
}

.z-10 {
    z-index: 10
}

.z-20 {
    z-index: 20
}

.z-30 {
    z-index: 30
}

.overflow-hidden {
    overflow: hidden
}

.overflow-auto {
    overflow: auto
}

.overflow-scroll {
    overflow: scroll
}

.overflow-x-auto {
    overflow-x: auto
}

.overflow-y-auto {
    overflow-y: auto
}

.hover-up:hover {
    transform: translateY(-5px)
}

.hero-small {
    position: relative;
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.login-hero,
.signup-hero {
    background: url(../imgs/login-hero-bg.jpg) center center/cover no-repeat;
    background: linear-gradient(135deg, var(--primary-color) 0, var(--primary-dark) 100%)
}

.hero-small .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.hero-small h1 {
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgb(0 0 0 / .3)
}

.hero-small p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgb(0 0 0 / .3)
}

.locations-section,
.login-section,
.services-section {
    padding: 5rem 0;
    background-color: var(--dark-bg)
}

.login-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.login-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 50vh)
}

.login-box {
    max-width: 400px;
    margin: 0 auto;
    background-color: var(--dark-surface-2);
    padding: 2.5rem
}

.business-login-header,
.login-box-header {
    text-align: center;
    margin-bottom: 2rem
}

.business-icon,
.login-icon {
    width: 70px;
    height: 70px;
    background-color: rgb(30 144 255 / .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem
}

.remember-me,
.toggle-password {
    display: flex;
    align-items: center
}

.business-icon i,
.login-icon i {
    font-size: 28px;
    color: var(--primary-color)
}

.business-login h2,
.login-box h2 {
    color: var(--black);
    font-size: 1.8rem;
    font-weight: 600
}

.input-with-icon i,
.toggle-password {
    top: 50%;
    color: var(--text-muted);
    position: absolute;
    transform: translateY(-50%)
}

.input-with-icon i {
    left: 15px;
    transition: color .3s
}

.input-with-icon input {
    width: 100%;
    padding: 12px 45px;
    background-color: var(--dark-surface-3);
    border: 1px solid var(--black);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 1rem;
    transition: .3s
}

.custom-select:focus,
.custom-textarea:focus,
.form-select:focus,
.input-with-icon input:focus {
    border-color: var(--primary-color);
    background-color: var(--dark-surface);
    outline: 0;
    box-shadow: 0 0 0 2px rgb(30 144 255 / .2)
}

.toggle-password {
    right: 15px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 16px;
    justify-content: center;
    transition: color .3s
}

.checkbox-custom,
.social-icons.large a {
    background-color: var(--dark-surface-3);
    transition: .3s
}

.toggle-password:focus {
    outline: 0;
    color: var(--primary-color)
}

.remember-me {
    margin-bottom: 1.5rem
}

.forgot-password-container {
    margin-top: -.5rem;
    margin-bottom: 1.5rem;
    text-align: right
}

.forgot-password {
    display: inline-block;
    margin-top: .5rem;
    font-size: .9rem;
    color: var(--primary-color)
}

.accordion-content a:hover,
.forgot-password:hover,
.form-footer a:hover,
.locations-cta a:hover {
    color: var(--primary-light);
    text-decoration: underline
}

.checkbox-label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    margin-bottom: .5rem
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkbox-custom {
    position: relative;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid var(--text-muted);
    border-radius: 3px;
    margin-right: 10px
}

.business-login {
    transition: transform .3s, box-shadow .3s
}

.checkbox-label:hover input~.checkbox-custom {
    border-color: var(--primary-color)
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.form-submit {
    width: 100%;
    padding: 12px;
    font-size: 1rem
}

.btn.loading {
    position: relative;
    color: #fff0
}

.btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgb(255 255 255 / .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: 1s ease-in-out infinite spin
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted)
}

.form-footer a,
.locations-cta a {
    color: var(--primary-color);
    transition: color .3s
}

.business-login {
    background-color: var(--dark-surface-2);
    border-radius: var(--border-radius);
    padding: 2.5rem
}

.business-login-content p {
    margin-bottom: 2rem;
    text-align: center
}

.business-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem
}

.business-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--dark-surface-3);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    transition: transform .3s, background-color .3s
}

.business-features .feature:hover {
    transform: translateY(-3px);
    background-color: var(--dark-surface)
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgb(30 144 255 / .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color)
}

.feature-text,
.form-group,
.help-content,
.location-details {
    flex: 1
}

.feature-text h4 {
    color: var(--black);
    font-weight: 600;
    margin-bottom: .25rem;
    font-size: 1rem
}

.feature-text p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
    text-align: left
}

.business-login .btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 12px
}

.login-help-section {
    background-color: var(--dark-surface);
    border-radius: var(--border-radius);
    padding: 3rem
}

.login-help-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--black)
}

.help-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.help-option {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start
}

.help-icon {
    width: 50px;
    height: 50px;
    background-color: rgb(30 144 255 / .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.help-icon i {
    font-size: 22px;
    color: var(--primary-color)
}

.help-content h4 {
    color: var(--black);
    font-weight: 600;
    margin-bottom: .75rem;
    font-size: 1.2rem
}

.help-content p {
    margin-bottom: 1.25rem;
    color: var(--text-muted)
}

.form-success {
    background-color: var(--dark-surface-2);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: rgb(76 175 80 / .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem
}

.success-icon i {
    font-size: 40px;
    color: var(--success)
}

.form-success h3 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: 1rem
}

.form-success p {
    color: var(--text-muted);
    margin-bottom: 2rem
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: .75rem;
    color: var(--black)
}

.section-description {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted)
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem
}

.btn-sm {
    padding: .5rem 1rem;
    font-size: .9rem;
    color: var(--primary-color)
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.form-status {
    margin: 1rem 0 0;
    padding: .85rem 1rem;
    border-radius: var(--border-radius);
    font-size: .95rem;
    border: 1px solid #fff0;
    display: none
}

.form-status.is-visible {
    display: block
}

.form-status.is-error {
    background: rgb(220 53 69 / .15);
    border-color: rgb(220 53 69 / .4);
    color: #ffb3bd
}

.form-status.is-success {
    background: rgb(40 167 69 / .12);
    border-color: rgb(40 167 69 / .35);
    color: #9fe7b2
}

.section-header h2 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: .75rem
}

.clear-input {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: 0 0;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: color .3s
}

.location-card,
.map-container,
.registration-form-container,
.sidebar-section {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow)
}

.clear-input:hover,
.error-message {
    color: var(--error)
}

.textarea-container .clear-input {
    top: 22px;
    transform: none
}

.error-message {
    font-size: .875rem;
    margin-top: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    opacity: 0;
    transform: translateY(-10px);
    animation: .3s forwards slideIn
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.form-input.error {
    border-color: var(--error);
    box-shadow: 0 0 0 1px var(--error)
}

.required-indicator {
    color: var(--error);
    margin-left: 3px
}

.registration-form-container,
.sidebar-section {
    background-color: var(--dark-surface-2);
    padding: 2rem
}

.sidebar-section h3 {
    color: var(--black);
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.4rem;
    margin-bottom: 1.5rem
}

.social-icons.large {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.social-icons.large a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem
}

.social-icons.large a:hover {
    color: #fff;
    transform: translateY(-3px)
}

.locations-cta {
    text-align: center;
    color: var(--text-muted)
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.location-icon,
.quick-links a {
    align-items: center;
    display: flex
}

.quick-links li {
    transition: transform .3s
}

.quick-links li:hover {
    transform: translateX(5px)
}

.quick-links a {
    gap: .75rem;
    color: var(--text-color);
    transition: color .3s
}

.quick-links i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center
}

.map-container {
    margin-bottom: 3rem;
    overflow: hidden
}

.interactive-map {
    height: 400px;
    width: 100%
}

.location-card {
    background-color: var(--dark-surface-2);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform .3s, box-shadow .3s
}

.location-icon {
    width: 50px;
    height: 50px;
    background-color: rgb(30 144 255 / .1);
    border-radius: 50%;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0
}

.location-details h3 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: .5rem
}

.location-details address {
    color: var(--text-muted);
    font-style: normal;
    margin-bottom: .75rem
}

.location-details address a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease
}

.location-details address a:hover {
    color: #1e90ff;
    text-decoration: underline
}

.location-info li {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--text-color);
    margin-bottom: .5rem
}

.location-info i {
    color: var(--primary-color);
    width: 16px;
    text-align: center
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--light-surface-2)
}

.accordion {
    max-width: 900px;
    margin: 0 auto 3rem
}

.faq-cta p {
    color: var(--text-muted);
    margin-bottom: 1rem
}

.accordion-item {
    background-color: var(--dark-surface-2);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden
}

.accordion-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color .3s
}

.accordion-header:hover {
    background-color: var(--dark-surface-3)
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--black)
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center
}

.accordion-icon i {
    color: var(--text-muted);
    transition: transform .3s
}

.accordion-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    display: none;
    transition: .3s;
    opacity: 0;
    max-height: 0
}

.accordion-item.active .accordion-content {
    opacity: 1;
    max-height: 500px
}

.accordion-content p {
    margin: 0
}

.map-popup {
    min-width: 200px;
    padding: 10px
}

.map-popup h4 {
    color: var(--primary-color);
    margin-bottom: .5rem;
    font-size: 1.1rem
}

.map-popup p {
    margin-bottom: .5rem;
    color: #333
}

.map-popup a {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    margin-top: .5rem
}

.map-popup a:hover {
    text-decoration: underline
}

.login-error,
.login-message,
.logout-message {
    background-color: var(--dark-surface-3);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem
}

.login-error {
    background-color: rgb(255 82 82 / .1);
    border-left: 4px solid var(--error);
    color: var(--error)
}

.login-message {
    background-color: rgb(33 150 243 / .1);
    border-left: 4px solid var(--primary-color);
    color: var(--text-color);
    flex-wrap: wrap
}

.login-message i,
.logout-message i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0
}

.login-error i {
    font-size: 1.5rem;
    color: var(--error);
    flex-shrink: 0
}

.login-message p {
    flex: 1;
    margin: 0
}

.login-message strong {
    color: var(--black)
}

.logout-message,
.logout-message i {
    color: var(--success)
}

.login-message button {
    margin-left: auto
}

.logout-message {
    background-color: rgb(76 175 80 / .1);
    border-left: 4px solid var(--success)
}

.fade-in {
    animation: .5s forwards fadeIn
}

.fade-out {
    animation: .5s forwards fadeOut
}

.slide-in {
    animation: .3s forwards slideIn
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.custom-select,
.custom-textarea {
    width: 100%;
    padding: 12px 45px;
    background-color: var(--dark-surface-3);
    font-size: 1rem
}

.custom-select {
    border: 1px solid var(--black);
    border-radius: var(--border-radius);
    color: var(--text-color);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: .3s
}

.custom-select:hover,
.custom-textarea:hover,
.form-select:hover {
    background-color: var(--dark-surface)
}

.input-with-icon .select-arrow,
.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: color .3s
}

.custom-textarea {
    min-height: 120px;
    border: 1px solid var(--black);
    border-radius: var(--border-radius);
    color: var(--text-color);
    resize: vertical;
    transition: .3s
}

.character-counter,
.step-label,
.step-number,
.textarea-container i {
    color: var(--text-muted)
}

.textarea-container i {
    transform: none;
    position: absolute;
    left: 15px;
    top: 14px;
    transition: color .3s
}

.textarea-container:focus-within i {
    color: var(--primary-color)
}

.custom-textarea::placeholder {
    color: var(--text-muted);
    opacity: .7
}

.character-counter {
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: .85rem
}

.signup-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    min-height: calc(100vh - var(--header-height) - 50vh)
}

.signup-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    gap: 2rem
}

.benefits-sidebar,
.registration-form-container {
    background-color: var(--dark-surface-2);
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-shadow: var(--box-shadow)
}

.benefits-sidebar {
    order: 2
}

.progress-bar,
.progress-bar-container {
    border-radius: 2px;
    background-color: var(--primary-color)
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    margin-bottom: 1.5rem
}

.progress-bar {
    height: 100%;
    transition: width .3s
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    flex: 1
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--dark-surface-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: .3s
}

.benefit-item,
.benefits-sidebar {
    border-radius: var(--border-radius)
}

.progress-step.active .step-number {
    background-color: var(--primary-color);
    color: var(--black)
}

.step-label {
    font-size: .9rem
}

.benefit-icon,
.progress-step.active .step-label {
    color: var(--primary-color)
}

.benefits-sidebar {
    background-color: var(--dark-surface-2);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: fit-content
}

.benefits-header h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background-color: var(--dark-surface-3);
    transition: transform .3s
}

.benefit-item:hover {
    transform: translateY(-3px)
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: rgb(30 144 255 / .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.benefit-content h4 {
    color: var(--black);
    margin-bottom: .5rem;
    font-size: 1.1rem
}

.benefit-content p,
.form-hint {
    color: var(--text-muted);
    font-size: .9rem
}

.benefit-content p {
    margin: 0
}

.form-step.active {
    display: block;
    animation: .3s ease-in-out fadeIn
}

.step-header h2 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: .5rem
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.form-hint {
    margin-top: .5rem
}

.form-select {
    width: 100%;
    padding: 12px 45px;
    background-color: var(--dark-surface-3);
    border: 1px solid var(--black);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: .3s
}

.form-select option,
.service-card {
    background-color: var(--dark-surface-2)
}

.form-select option {
    color: var(--text-color);
    padding: 12px
}

.input-with-icon:focus-within .select-arrow {
    color: var(--primary-color)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    justify-items: center;
    align-items: stretch;
    margin-top: 40px
}

.service-card {
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    box-shadow: var(--box-shadow)
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgb(30 144 255 / .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-color)
}

.service-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.service-card p {
    color: var(--white);
    margin-bottom: 1.5rem
}

.service-features {
    text-align: left;
    margin-bottom: 1.5rem
}

.service-features li {
    color: var(--text-color);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.service-features i {
    color: var(--primary-color);
    font-size: .9rem
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--dark-surface);
    text-align: center
}

.cta-section h2 {
    color: var(--black);
    font-size: 2.2rem;
    margin-bottom: 1rem
}

.cta-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.legal-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%)
}

.legal-content {
    padding: 5rem 0;
    background-color: var(--dark-bg)
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--dark-surface-2);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow)
}

.legal-section {
    margin-bottom: 2.5rem
}

.legal-section:last-of-type {
    margin-bottom: 0
}

.legal-section h2 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--primary-color)
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem
}

.legal-section ul li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: .75rem;
    padding-left: 1.5rem;
    position: relative
}

.legal-section ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: 700;
    position: absolute;
    left: 0
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s
}

.legal-section a:hover {
    color: var(--primary-light);
    text-decoration: underline
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-surface-3);
    text-align: center
}

.legal-footer p {
    color: var(--text-muted);
    font-size: .9rem
}

/* ====================================================================
   RESPONSIVE MEDIA QUERIES - CONSOLIDATED
   ==================================================================== */

/* Breakpoint: 1200px and below */
@media screen and (max-width: 1200px) {
    .header-container {
        padding: 0 1rem
    }

    .header-actions {
        gap: .5rem;
        margin-right: 5px
    }

    .hero h1 {
        font-size: 3rem
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .header-actions {
        gap: .2rem;
        margin-right: 5px;
        font-size: x-small
    }

    .help-options,
    .login-grid {
        gap: 1.5rem
    }
}

/* Breakpoint: Tablet-specific (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem
    }

    .header-actions {
        gap: 0.5rem;
        font-size: 0.85rem
    }

    .login-btn,
    .signup-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem
    }

    .nav-item > a {
        padding: 1rem 1rem;
        font-size: 0.9rem
    }

    .hero {
        padding: 6rem 1.5rem 4rem
    }

    .hero h1 {
        font-size: 2.5rem
    }

    .hero p {
        font-size: 1.1rem
    }

    .hero-content {
        padding: 0 1.5rem
    }

    .container {
        padding: 0 1.5rem
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    .service-card {
        width: 100%;
        min-height: 260px
    }

    .company-values {
        gap: 1.5rem
    }

    .core-values,
    .mission,
    .vision {
        min-width: 280px;
        min-height: 250px;
        padding: 2rem
    }

    .features-container {
        gap: 1.5rem
    }

    .feature {
        min-width: 250px;
        padding: 1.5rem
    }

    .technology {
        flex-direction: column
    }

    .promise-content,
    .tech-content {
        padding: 3rem 2rem
    }

    .white-paper-card.active {
        flex-direction: column
    }

    .white-paper-image {
        height: 200px
    }

    .white-paper-content {
        padding: 1.5rem
    }

    .carousel-control {
        width: 40px;
        height: 40px
    }

    .additional-resources {
        gap: 1.5rem
    }

    .resource-column {
        min-width: 250px
    }

    .statistics-content {
        flex-wrap: wrap
    }

    .statistic-item {
        min-width: 180px;
        padding: 1.5rem 1rem
    }

    .statistic-number {
        font-size: 2.8rem
    }

    .service-matrix {
        padding: 3rem 1.5rem
    }

    .cta-content h2 {
        font-size: 2.2rem
    }

    .footer-main {
        padding: 0 1.5rem 2rem;
        gap: 2rem
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    .login-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem
    }

    .login-box,
    .business-login {
        max-width: 100%;
        margin: 0 auto
    }

    .help-options {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .business-features {
        grid-template-columns: 1fr 1fr
    }

    .headquarters-container {
        grid-template-columns: 1fr
    }

    .hours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem
    }

    .section-title {
        font-size: 1.9rem
    }

    .value-proposition h2,
    .why-choose-us h2 {
        font-size: 2rem
    }

    .accordion {
        max-width: 100%;
        padding: 0 1rem
    }

    .top-bar {
        left: 10px;
    }
}

/* Breakpoint: 992px and below */
@media screen and (max-width: 992px) {
    .logo {
        max-height: 70px
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 5rem
    }

    .hero h1 {
        font-size: 2.5rem
    }

    .hero-content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-top: 0
    }

    .hero-buttons {
        justify-content: center
    }

    .header-actions {
        gap: .2rem;
        margin-right: 5px;
        font-size: x-small
    }

    .company-values,
    .features-container {
        flex-direction: column;
        align-items: center
    }

    .core-values,
    .feature,
    .mission,
    .vision {
        width: 100%;
        max-width: 500px
    }

    .technology {
        flex-direction: column
    }

    .white-paper-image {
        height: 250px
    }

    .top-bar {
        left: -25px;
    }

    .top-bar-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .top-bar-link {
        font-size: 0.75rem;
    }

    .services-section {
        padding: 4rem 1.5rem;
    }
    
    .services-section-header h2 {
        font-size: 2.25rem;
    }
    
    .services-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .help-options,
    .login-grid {
        grid-template-columns: 1fr
    }

    .login-grid {
        gap: 2rem;
        padding: 0 1rem
    }

    .login-box {
        padding: 2.5rem
    }

    .business-login,
    .login-box {
        max-width: 600px;
        margin: 0 auto
    }

    .help-options {
        max-width: 600px;
        margin: 0 auto
    }

    .signup-container {
        grid-template-columns: 1fr
    }

    .benefits-sidebar {
        order: -1
    }
}

/* Breakpoint: 768px and below */
@media screen and (max-width: 768px) {
    .logo {
        max-height: 70px
    }

    .main-nav,
    .nav-item,
    .nav-list {
        width: 100%
    }

    :root {
        --header-height: 70px
    }

    .header-container {
        justify-content: space-between
    }

    .header-actions {
        gap: .2rem;
        margin-right: 5px;
        font-size: x-small
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        transition: left .3s;
        z-index: 1000;
        overflow-y: auto
    }

    .main-nav.active {
        left: 0
    }

    .nav-list {
        flex-direction: column
    }

    .nav-item>a {
        border-bottom: 1px solid var(--light-surface-3);
        padding: 1.2rem 2rem;
        color: var(--black)
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        border-radius: 0
    }

    .dropdown-menu a {
        padding-left: 3rem
    }

    .mobile-menu-toggle,
    .nav-item.active .dropdown-menu {
        display: block
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero-content p {
        margin-top: 0
    }

    .promise-content h2,
    .section-title,
    .service-matrix h2,
    .shipping-tools h2,
    .tech-content h2,
    .value-proposition h2,
    .why-choose-us h2 {
        font-size: 1.8rem
    }

    .statistic-number {
        font-size: 2.5rem
    }

    .statistic-label {
        font-size: 1.1rem
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .footer-bottom-links {
        justify-content: center
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .service-card {
        min-height: 320px
    }

    .services-section-header h2 {
        font-size: 2rem
    }

    .services-section-header p {
        font-size: 1rem
    }

    .hero-small h1 {
        font-size: 2.5rem
    }

    .business-features {
        grid-template-columns: 1fr
    }

    .locations-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto
    }

    .help-option {
        flex-direction: column;
        text-align: center
    }

    .help-icon {
        margin: 0 auto 1rem
    }

    .progress-steps {
        flex-direction: column;
        gap: 1rem
    }

    .progress-step {
        flex-direction: row;
        justify-content: flex-start
    }

    .form-row {
        flex-direction: column
    }

    .cta-section h2 {
        font-size: 1.8rem
    }

    .legal-document {
        padding: 2rem 1.5rem
    }

    .legal-section h2 {
        font-size: 1.3rem
    }
}

/* Breakpoint: 576px and below */
@media screen and (max-width: 576px) {
    .header-actions {
        gap: .2rem;
        margin-right: 5px;
        font-size: x-small
    }

    .hero h1,
    .hero-small h1 {
        font-size: 2rem
    }

    .hero p,
    .hero-small p {
        font-size: 1rem
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem
    }

    .hero-buttons .btn {
        text-align: center
    }

    .form-row,
    .remember-me,
    .white-paper-card.active {
        flex-direction: column
    }

    .white-paper-image {
        height: 200px
    }

    .business-login,
    .form-success,
    .login-box {
        padding: 1.5rem
    }

    .remember-me {
        align-items: flex-start;
        gap: .75rem
    }

    .login-message {
        flex-direction: column;
        text-align: center
    }

    .login-message button {
        margin: 1rem 0 0
    }

    .services-section {
        padding: 3rem 1rem;
    }
    
    .services-section-header {
        margin-bottom: 3rem;
    }
    
    .services-section-header h2 {
        font-size: 1.85rem;
    }
    
    .services-section-header p {
        font-size: 1rem;
    }
    
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .service-card-body {
        padding: 1.5rem;
    }
    
    .service-icon-wrapper {
        width: 54px;
        height: 54px;
        margin-top: -45px;
    }
    
    .service-icon-wrapper i {
        font-size: 1.25rem;
    }
}