/* Swell Shipping - Refactored Styles with Variables */
/* Organized imports - all files in css folder */
@import url('variables.css');
@import url('reset.css');
@import url('typography.css');
@import url('forms.css');
@import url('buttons.css');
@import url('utilities.css');

/* Header */
.header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    color: var(--color-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 99;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 1900px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    color: var(--color-primary);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 0;
}

.nav-link {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    color: var(--color-primary);
    transition: all 0.3s;
    border-radius: 40px;
}

.nav-link:hover {
    background-color: var(--color-nav-hover);
}

.nav-link.active {
    background-color: #fff8ed;
    border: 1px solid var(--color-gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.nav-mobile {
    display: none;
    position: fixed;
    top: 89px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.nav-mobile.active {
    display: block;
    max-height: 500px;
}

.nav-mobile-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-mobile .nav-link {
    display: block;
    padding: 15px;
    text-align: center;
}

.nav-mobile .btn-login {
    display: block;
    text-align: center;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    background-image: url('../images/hero-banner-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--color-primary);
    margin-bottom: 30px;
    max-width: 493px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background-color: var(--color-white);
}

.hiw-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 417px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.hiw-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.3;
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto 50px;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.hiw-icon {
    height: 75px;
    width: auto;
}

.hiw-step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.hiw-step-content p {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.7;
}

.hiw-cta {
    display: flex;
    justify-content: center;
    align-self: center;
    margin-top: 50px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 70px 20px 80px 20px;
    background-color: var(--color-white);
}

.wcu-container {
    max-width: 1240px;
    margin: 0 auto;
}

.wcu-header {
    text-align: center;
    margin-bottom: 53px;
    max-width: 611px;
    margin-left: auto;
    margin-right: auto;
}

.wcu-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.wcu-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
}

.wcu-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.wcu-image {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    object-fit: cover;
}

.wcu-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wcu-feature {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--color-light-border);
    box-shadow: 0px 5px 12px 0px rgba(153, 153, 153, 0.1);
    display: flex;
    gap: 21px;
    align-items: flex-start;
}

.wcu-feature-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.wcu-feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.wcu-feature-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
}

.wcu-cta {
    margin-top: 30px;
}

/* Reviews Section */
.customer-testimonials {
    background-color: var(--color-primary);
    padding: 80px 20px;
}

.carousel-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.carousel-header {
    text-align: center;
    margin-bottom: 30px;
}

.carousel-header h2 {
    color: white;
    font-size: 3rem;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
}

.carousel-wrapper {
    position: relative;
    padding: 0 80px;
}

.carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.star {
    color: var(--color-sand-beige);
    font-size: 24px;
}

.star.empty {
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-sand-beige) 0%, var(--color-sand-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.customer-details h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.customer-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-ocean-blue);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

@media (max-width: 1024px) {
    .carousel-item {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {

    .carousel-wrapper {
        padding: 0;
    }

    .carousel-item {
        min-width: calc(100% - 20px);
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Partners Section */
.partners-section {
    padding: 80px 20px;
}

.partners-container {
    max-width: 1280px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.partner-card {
    background-color: var(--color-white);
    padding: 30px;
    border: 1px solid var(--color-light-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 106px;
}

.partner-logo {
    max-height: 41px;
    width: auto;
}

/* CTA Section */
.cta-section {
    padding: 0 20px 80px;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
}

.cta-banner {
    background-image: url('../images/cta-bg.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 611px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--color-white);
    margin-bottom: 39px;
    line-height: 1.5;
}

footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 60px 40px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.brand-logo h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.brand-tagline {
    font-size: 14px;
    color: var(--color-sky-blue);
    letter-spacing: 0.5px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: var(--color-footer-link);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-sky-blue);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.social-link:hover {
    color: white;
    transform: translateX(5px);
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover .social-icon {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    background: var(--color-accent);
    padding: 10px 40px;
    margin: 0 -40px;
    text-align: center;
}

.copyright {
    color: var(--color-charcoal);
    font-size: 14px;
    font-weight: 600;
}

.accordion-toggle {
    display: none;
}

/* Mobile Styles */

.contact-section .contact-title {
    text-align: center;
    padding: 60px 20px 40px;
    background: white;
}

.contact-section .contact-title h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-section .contact-title p {
    font-size: 20px;
    color: var(--color-text);
}


.hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.info-card {
    text-align: center;
    padding: 20px;
    position: relative;
}

.info-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: var(--color-muted-border);
}

.info-card:last-child::after {
    display: none;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.info-label {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 500;
}

.info-value {
    font-size: 20px;
    color: var(--color-text-dark);
    font-weight: 600;
}

.info-value a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.info-value a:hover {
    color: var(--color-accent);
}

.contact-form-section {
    background: white;
    padding: 0 20px 60px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: clamp(28px, 5vw, 36px);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}
form#contactForm {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group {
    margin-bottom: 28px;
}


@media (max-width: 768px) {

    .hero-image img {
        height: 250px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px auto;
    }

    .info-card::after {
        display: none;
    }

    .form-container h2 {
        font-size: 32px;
    }

    .contact-form-section {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {

    .info-value {
        font-size: 16px;
        word-break: break-word;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 20px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-brand {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-column h3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        margin: 0;
        cursor: pointer;
        user-select: none;
    }

    .accordion-toggle {
        display: block;
        font-size: 24px;
        font-weight: 300;
        transition: transform 0.3s;
    }

    .footer-column.active .accordion-toggle {
        transform: rotate(0deg);
    }

    .footer-links,
    .social-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .footer-column.active .footer-links,
    .footer-column.active .social-links {
        max-height: 500px;
        padding-bottom: 20px;
    }

    .footer-bottom {
        margin: 30px -20px 0;
        padding: 20px;
    }

    .copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .brand-logo h2 {
        font-size: 28px;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-links li a,
    .social-link {
        font-size: 14px;
    }
}

/* Responsive Styles */
@media (min-width: 640px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .wcu-title {
        font-size: 36px;
    }

    .wcu-subtitle {
        font-size: 20px;
    }

    .wcu-image {
        height: 500px;
    }

    .reviews-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 20px;
    }

    .partners-grid {
        /* grid-template-columns: repeat(3, 1fr);*/
        grid-template-columns: repeat(auto-fit, 203px);
        justify-content: center;
        gap: 32px;
    }

}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }

    .nav-desktop {
        display: flex;
    }

    .hero-section {
        min-height: 600px;
        padding: 80px 40px;
    }

    .hiw-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .hiw-step {
        max-width: 275px;
    }

    .wcu-content {
        grid-template-columns: 505px 1fr;
        gap: 125px;
    }

    .wcu-image {
        height: 758px;
    }

    .carousel-nav {
        display: flex;
    }

    .carousel-dots {
        display: none;
    }

    .footer-content {
        grid-template-columns: auto 1fr;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-links-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 80px;
    }

    .footer-section h3 {
        text-align: left;
    }

    .footer-links {
        align-items: flex-start;
    }

    .social-links {
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 54px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-section {
        min-height: 700px;
        padding: 100px 100px;
    }

    .wcu-title {
        font-size: 40px;
    }

    .wcu-subtitle {
        font-size: 24px;
    }

    .reviews-title {
        font-size: 40px;
    }

    .cta-title {
        font-size: 40px;
    }

    .cta-subtitle {
        font-size: 24px;
    }

    .cta-banner {
        border-radius: 30px;
        min-height: 500px;
    }
}



.about-section {
    text-align: center;
    padding: 60px 20px 30px;
    background: white;
}

.about-section h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-ocean-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.about-section p {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.about-image {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-section {
    max-width: 800px;
    margin: 0px auto;
    padding: 0 20px;
}

.story-section h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--color-ocean-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.story-section p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
}

.faq-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.faq-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-page-header h1 {
    font-size: 42px;
    color: var(--color-ocean-blue);
    font-weight: 700;
    line-height: 1.2;
}

.faq-item {
    border-bottom: 1px solid var(--color-light-gray);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 15px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

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

.faq-question h3 {
    font-size: 18px;
    color: var(--color-ocean-blue);
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.toggle-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-ocean-blue);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

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

.faq-answer p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-page-container {
        padding: 40px 15px;
    }

    .faq-page-header h1 {
        font-size: 32px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-question {
        padding: 20px 10px;
    }

    .faq-item.active .faq-answer {
        padding: 0 10px 20px 10px;
    }
}

@media (max-width: 480px) {
    .faq-page-header h1 {
        font-size: 28px;
    }

    .faq-question h3 {
        font-size: 15px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 2px solid var(--color-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 26px;
    color: var(--color-ocean-blue);
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--color-text);
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.close-btn:hover {
    background: var(--color-light-gray);
    color: var(--color-charcoal);
}

.modal-body {
    padding: 30px;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-size: 18px;
    color: var(--color-ocean-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.modal-section p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 10px;
}

.modal-section ul {
    margin-left: 20px;
    margin-top: 10px;
}

.modal-section li {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 8px;
}

.modal-section li strong {
    color: var(--color-charcoal);
}

.highlight-box {
    background: var(--color-warning-bg);
    border-left: 4px solid var(--color-warning);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.highlight-box p {
    margin: 0;
    color: var(--color-warning);
    font-weight: 500;
}

.info-box-modal {
    background: var(--color-info-bg);
    border-left: 4px solid var(--color-info);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.info-box-modal p {
    margin: 0;
    color: var(--color-info);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
    }

    .modal-header {
        padding: 25px 20px 15px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-section h3 {
        font-size: 16px;
    }

    .modal-section p,
    .modal-section li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .request-support.container {
        padding: 30px 25px;
    }

    .request-support .header h1 {
        font-size: 28px;
    }

    .request-support .header p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .request-support.container {
        padding: 25px 20px;
    }

    .request-support .header h1 {
        font-size: 24px;
    }

    .request-support .upload-area {
        padding: 40px 15px;
    }
}



/* Track Order CSS */
.track-order {
    padding: 80px 0;
}

.tracking-header {
    text-align: center;
    margin-bottom: 30px;
}

.tracking-header h1 {
    font-size: 18px;
    color: var(--color-ocean-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.search-wrapper {
    flex: 1;
    position: relative;
    display: flex
;
    align-items: center;
    background: white;
    border: 2px solid var(--color-light-gray);
    border-radius: 9px;
    padding: 14px 14px 14px 14px;
    transition: all 0.3s;
}

.search-wrapper .track {
    margin-right: 10px;
}

.search-wrapper .search-input,
.search-wrapper .search-input:focus {
    border: none;
    box-shadow: none;
}

.results-section {
    margin-top: 50px;
}

.results-header {
    font-size: 24px;
    color: var(--color-ocean-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
    align-items: start;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 18px;
    color: var(--color-text);
    font-weight: 500;
    text-align: right;
}

.info-value {
    font-size: 20px;
    color: var(--color-charcoal);
    font-weight: 600;
    display: flex;
    text-align: left;
}

.timeline-item {
    display: flex;
    gap: 10px;
    align-items: start;
}

.timeline-icon {
    font-size: 16px;
    margin-top: 2px;
}

.timeline-content {
    flex: 1;
}

.timeline-label {
    font-size: 15px;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 4px;
}

.timeline-value {
    font-size: 15px;
    color: var(--color-charcoal);
    font-weight: 600;
}

.hidden {
    display: none;
}


/* Request Quote CSS */
.request-quote {
    padding: 60px 20px;
    background: white;
}

.request-quote .quote-header {
    margin-bottom: 20px;
}

.request-quote .quote-header h1 {
    font-size: 36px;
    color: var(--color-ocean-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.request-quote .quote-header p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.6;
}

.ship-from-box {
    background: var(--color-sky-blue);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 10px;
}

.ship-from-box h2 {
    font-size: 20px;
    color: var(--color-ocean-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.ship-from-box p {
    font-size: 18px;
    color: var(--color-ocean-blue);
    font-weight: 500;
}

.change-link {
    text-align: right;
    margin-bottom: 30px;
}

.section-title {
    font-size: 22px;
    color: var(--color-ocean-blue);
    font-weight: 600;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.delivery-type-section {
    margin-top: 35px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.radio-label {
    font-size: 15px;
    color: var(--color-charcoal);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-charcoal);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    white-space: normal;
    width: 300px;
    display: none;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-icon:hover .tooltip {
    display: block;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--color-charcoal);
}

.info-box {
    background: var(--color-info-bg);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.info-box-icon {
    color: var(--color-info);
    font-size: 18px;
    flex-shrink: 0;
}

.info-box-text {
    font-size: 14px;
    color: var(--color-info);
    line-height: 1.5;
}


/* Package Details */
#packageForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

#packageForm .form-group.full-width {
    grid-column: 1 / -1;
}

#packageForm .dimensions-section {
    margin-bottom: 30px;
}

#packageForm .dimensions-label {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

#packageForm .dimensions-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

#packageForm .dimension-group {
    display: flex;
    flex-direction: column;
}

#packageForm .dimension-group label {
    margin-bottom: 8px;
    font-size: 16px;
}

#packageForm .dimension-group input {
    border: none;
    border-bottom: 1px solid var(--color-sky-blue);
    padding: 8px 5px;
    font-size: 15px;
    color: var(--color-charcoal);
    transition: border-color 0.3s;
    border-radius: 0;
}

#packageForm .unit-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 28px;
}

#packageForm .unit-label {
    font-size: 13px;
    color: var(--color-text);
    margin-top: 8px;
}

#packageForm .item-row {
    display: grid;
    grid-template-columns: 1fr 120px 130px auto;
    gap: 15px;
    align-items: start;
}

#packageForm .item-with-tag {
    position: relative;
}

#packageForm .item-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-info-bg);
    color: var(--color-ocean-blue);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

#packageForm .remove-tag-btn {
    background: var(--color-text);
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#packageForm .remove-tag-btn:hover {
    background: var(--color-charcoal);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.shipping-options h4 {
    font-size: 18px;
    color: var(--color-ocean-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-level-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.service-card {
    border: 2px solid var(--color-light-gray);
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--color-sand-beige);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card.selected {
    border-color: var(--color-sand-beige);
    background: var(--color-light-gray);
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.service-card-header .radio-label {
    font-size: 18px;
    color: --color-primary;
    font-weight: 600;
    margin: 0;
}

.service-description {
    font-size: 14px;
    color: --color-primary;
    line-height: 1.6;
}


/* Rates and Comparison */
.summary-box {
    background: var(--color-info-bg);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 15px;
}

.summary-line {
    font-size: 15px;
    color: var(--color-ocean-blue);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-line:last-child {
    margin-bottom: 0;
}

.table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
   
    border-bottom: 2px solid var(--color-text);
}

th {
    padding: 18px 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-ocean-blue);
}

td {
    padding: 25px 20px;
    border-bottom: 1px solid var(--color-light-gray);
    vertical-align: center;
}

tr:last-child td {
    border-bottom: none;
}

.carrier-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-charcoal);
}

.service-type {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-charcoal);
}

.service-level {
    font-size: 13px;
    color: var(--color-text);
}

.eta {
    font-size: 15px;
    color: var(--color-charcoal);
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.price-detail {
    font-size: 13px;
    color: var(--color-text);
}

.price-detail.base {
    color: var(--color-text);
}

.price-detail.fuel {
    color: var(--color-text);
}

.price-detail.declared {
    color: var(--color-text);
}

.price-detail.residential {
    color: var(--color-text);
}

.notes-cell {
    text-align: center;
}

.action-cell {
    text-align: center;
}

.book-btn {
    padding: 10px 30px;
    background: var(--color-ocean-blue);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.book-btn:hover {
    background: var(--color-wave-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 58, 95, 0.3);
}


.upload-area {
    border: 2px dashed var(--color-wave-blue);
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
    background: var(--color-sky-blue);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-area.dragover {
    border-color: var(--color-ocean-blue);
    background: var(--color-sky-blue);
}

.upload-icon {
    font-size: 48px;
    color: var(--color-sky-blue);
    margin-bottom: 15px;
}

.upload-text {
    font-size: 15px;
    color: var(--color-ocean-blue);
    font-weight: 500;
}

.upload-input {
    display: none;
}



/* ********************** */

.why-choose-us.home-why-choose-us {
    padding: 0px 20px 70px 20px;
}

.track-order .results-grid .info-value {
    color: var(--color-ocean-blue);
    font-weight: 400;
    font-size: 16px;
}

.contact-section .contact-form-section button.btn.submit-btn {
    width: fit-content;
    align-self: center;
}

.track-order .results-grid .info-card {
    border: 2px solid var(--color-light-gray);
    box-shadow: none;
}

.track-order .tracking-header .track-btn {
    text-transform: capitalize;
}

.request-quote .table-container thead {
    background: none;
    border-bottom: 1px solid var(--color-text);
}

.request-quote .table-container thead th {
    font-size: 18px;
}

.request-quote .table-container  .font-semibold {
    font-weight: 400;
}

.request-support h1 {
    color: var(--color-ocean-blue);
    margin-bottom: 10px;
}

.request-support {
    color: var(--color-text);
}

.request-support .examples-list {
    margin-top: 10px;
}

.stepper-layout-wrapper .stepper-content-area .main-title {
    color: var(--color-primary);
}


/* Legal Pages */
.legal-page {
    padding: 60px 0;
    background: #F8FAFC;
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 8px;
}

.legal-content .last-updated {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1E3A5F;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    margin: 20px 0 12px 0;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 8px;
}

.legal-section a {
    color: #3B82F6;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #2563EB;
}

@media screen and (max-width: 768px) {
    .legal-page {
        padding: 40px 0;
    }

    .legal-content {
        padding: 32px 20px;
        border-radius: 0;
    }

    .legal-content h1 {
        font-size: 28px;
    }

    .legal-section h2 {
        font-size: 20px;
    }
}
