/* ZippyVan Main Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Navigation Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* Mobile Navigation */
.mobile-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 1001;
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu ul li {
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu ul li:last-child {
    border-bottom: none;
}

.mobile-nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
}

.mobile-nav-menu .mobile-cta {
    margin: 1rem 2rem 0;
    text-align: center;
}

.mobile-nav-menu .mobile-cta a {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* Hero Section */
.hero-section {
    background:
        linear-gradient(98deg, rgba(7, 26, 44, 0.9) 0%, rgba(7, 26, 44, 0.76) 30%, rgba(7, 26, 44, 0.34) 58%, rgba(7, 26, 44, 0.18) 100%),
        linear-gradient(180deg, rgba(166, 210, 239, 0.14) 0%, rgba(255, 255, 255, 0) 42%),
        url('/img/bg-img/uk-removals-photo.jpg') 66% center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(7, 26, 44, 0) 0%, rgba(7, 26, 44, 0.18) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
    max-width: 560px;
    width: 100%;
    height: 100%;
    padding: 2rem 2.2rem;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(8, 28, 47, 0.42) 0%, rgba(8, 28, 47, 0.22) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 44px rgba(3, 14, 25, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.96;
    margin-bottom: 2rem;
}

.hero-features {
    margin-bottom: 2rem;
}

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

.feature-item i {
    color: #2ecc71;
    font-size: 1.2rem;
    margin-right: 1rem;
}

/* Quote Form */
.quote-form-container {
    max-width: 560px;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(231, 236, 241, 0.9);
    box-shadow: 0 26px 52px rgba(25, 39, 52, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.stop-control-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: -0.25rem;
    margin-bottom: 1.1rem;
}

.stop-control-spacer {
    min-height: 1px;
}

.stop-toggle-btn {
    justify-self: end;
    width: 100%;
    max-width: 220px;
    border: 1px solid rgba(233, 237, 241, 0.95);
    border-radius: 999px;
    background: #ffffff;
    color: #445464;
    padding: 0.55rem 0.7rem 0.55rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(23, 35, 47, 0.08);
    transition: all 0.25s ease;
}

.stop-toggle-btn:hover {
    background: #ffffff;
    border-color: rgba(221, 228, 235, 0.98);
    color: #24394d;
    box-shadow: 0 16px 34px rgba(23, 35, 47, 0.11);
}

.stop-toggle-text {
    white-space: nowrap;
}

.stop-toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(52, 152, 219, 0.22);
}

.stop-toggle-icon i {
    font-size: 0.78rem;
}

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

.form-header h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-header p {
    color: #7f8c8d;
    margin: 0;
}

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

.form-label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 500;
    color: #2f3d4a;
    font-size: 0.97rem;
    letter-spacing: 0.01em;
}

.form-label i {
    margin-right: 0.5rem;
    color: #3498db;
    width: 18px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1.05rem 1.2rem;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 400;
    color: #33414d;
    background-color: #ffffff;
    border: 1px solid rgba(235, 239, 243, 0.96);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(24, 38, 52, 0.08);
    transition: all 0.3s ease;
}

.form-control:focus {
    color: #33414d;
    background-color: #ffffff;
    border-color: rgba(210, 220, 229, 0.95);
    outline: 0;
    box-shadow: 0 18px 38px rgba(24, 38, 52, 0.1);
}

.form-control::placeholder {
    color: #7f8d99;
    font-size: 0.95rem;
}

#stopAddress {
    background-color: #f6f7f8;
    border-color: rgba(231, 235, 239, 0.96);
}

#stopAddress:focus {
    background-color: #fbfbfc;
    border-color: rgba(220, 226, 232, 0.95);
    box-shadow: 0 18px 38px rgba(24, 38, 52, 0.08);
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #f7c948 0%, #f0b429 100%);
    color: #233142;
    box-shadow: 0 10px 24px rgba(240, 180, 41, 0.24);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(240, 180, 41, 0.32);
}

.btn-primary:disabled {
    background: #bdc3c7 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6 !important;
    color: #6c757d !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.9) 100%), url('/img/bg-img/hero-bg.jpg') center/cover;
    padding: 150px 0 100px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-header-banner {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0.8rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 45px rgba(15, 42, 63, 0.24);
    backdrop-filter: blur(5px);
}

.services-banner-art {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 100px 0;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #3498db;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        gap: 1rem;
    }

    .nav-logo {
        font-size: 1.45rem;
    }

    .hero-section {
        background-position: 70% center;
        padding: 105px 0 60px;
    }

    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        max-width: none;
        height: auto;
        padding: 1.5rem;
        border-radius: 22px;
    }

    .quote-form-container {
        max-width: none;
        height: auto;
    }

    .stop-control-row {
        grid-template-columns: 1fr;
        margin-top: -0.1rem;
    }

    .stop-toggle-btn {
        justify-self: stretch;
        max-width: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .page-header-banner {
        margin-top: 2rem;
        padding: 0.45rem;
        border-radius: 20px;
    }

    .quote-form-container {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* Ro
ute summary styles */
.route-summary {
    background: #ffffff;
    border: 1px solid rgba(233, 237, 241, 0.98);
    border-radius: 24px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: none;
    box-shadow: 0 20px 40px rgba(24, 38, 52, 0.08);
}

.route-summary.show {
    display: block;
}

.route-info {
    display: flex;
    justify-content: space-around;
    margin-top: 1.35rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.route-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.route-item h4 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.route-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.route-summary-note {
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #66727d;
    text-align: center;
}

.map-container {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(18, 38, 63, 0.1);
    margin-top: 0;
}

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

.trust-indicators {
    margin-top: 2rem;
    text-align: center;
}

.trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.9rem;
    color: #6f7b86;
    flex-wrap: wrap;
}

.trust-item {
    position: relative;
    font-weight: 500;
    white-space: nowrap;
}

.trust-item + .trust-item::before {
    content: "|";
    position: absolute;
    left: -0.75rem;
    color: #c2c9cf;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Additional mobile responsive styles */
@media (max-width: 768px) {
    .trust-item + .trust-item::before {
        content: none;
    }

    .trust-row {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.9rem;
        font-size: 0.8rem;
        overflow-x: auto;
        padding-bottom: 0.15rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .trust-row::-webkit-scrollbar {
        display: none;
    }
    
    .route-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .route-item {
        min-width: auto;
    }

    .route-summary-note {
        font-size: 0.88rem;
        margin-bottom: 1rem;
    }
    
    .map-container {
        height: 250px;
    }
}
