/* ========================================
   CONTACT PAGE - ORGANIZED BY VISUAL HIERARCHY
   ======================================== */

/* ========================================
   1. NAVIGATION (Top of page)
   ======================================== */

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: all 0.3s ease;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force correct navigation layout */
.navbar .nav-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
    width: 100% !important;
    height: 80px !important;
    padding-top: 20px !important;
}

.navbar .nav-logo {
    order: 1 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.navbar .nav-menu {
    order: 2 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    position: fixed !important;
    width: 200px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%) !important;
    backdrop-filter: blur(12px) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 0.5rem 0 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
    z-index: 1000 !important;
    gap: 0 !important;
}

.navbar .nav-menu.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.navbar .nav-menu .nav-item {
    width: 100%;
    margin: 0;
}

.navbar .nav-menu .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1E293B !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    width: 100%;
}

.navbar .nav-menu .nav-link:hover {
    background: rgba(50, 205, 50, 0.1);
    color: #32CD32 !important;
}

.navbar .nav-menu .nav-link.active {
    background: rgba(50, 205, 50, 0.15);
    color: #32CD32 !important;
}

.navbar .nav-menu .nav-link.active::after {
    display: none;
}

.navbar .nav-toggle {
    order: 3 !important;
    display: flex !important;
}

.nav-logo img {
    height: 120px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #64748B;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #32CD32;
}

.nav-link.active {
    color: #32CD32;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #32CD32;
    border-radius: 2px;
}

.nav-home:hover { color: #32CD32; }
.nav-retail:hover { color: #32CD32; }
.nav-lmd:hover { color: #32CD32; }
.nav-about:hover { color: #32CD32; }
.nav-contact:hover { color: #32CD32; }
.nav-careers:hover { color: #32CD32; }

.nav-home.active::after { background: #32CD32; }
.nav-retail.active::after { background: #32CD32; }
.nav-lmd.active::after { background: #32CD32; }
.nav-about.active::after { background: #32CD32; }
.nav-contact.active::after { background: #32CD32; }
.nav-careers.active::after { background: #32CD32; }

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #64748B;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   2. STICKY CTAs (Fixed position)
   ======================================== */

.sticky-ctas {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: revealStickyCTA 0.8s ease-out 2s forwards;
}

.cta-rider-btn {
    padding: 12px 24px;
    background: #32CD32;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
    white-space: nowrap;
    display: inline-block;
}

.cta-rider-btn:hover {
    background: #228B22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

.cta-btn {
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
    white-space: nowrap;
}

.cta-btn.primary {
    background: #32CD32;
    color: white;
}

.cta-btn.secondary {
    background: #3B82F6;
    color: white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
   3. MAIN CONTENT CONTAINER
   ======================================== */

.seamless-content {
    margin-top: 80px;
    background: #FFFFFF;
}

/* ========================================
   4. HERO SECTION (First visible content)
   ======================================== */

.hero-section {
    padding: 100px 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    max-width: 80%;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #64748B;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
}

/* ========================================
   5. BUTTONS (Used throughout page)
   ======================================== */

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: #32CD32;
    color: white;
}

.btn-primary:hover {
    background: #1e991e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

.btn-secondary {
    background: #3B82F6;
    color: white;
}

.btn-secondary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: #3B82F6;
    border-color: #3B82F6;
}

.btn-outline:hover {
    background: #3B82F6;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ========================================
   6. CONTACT FORM SECTION
   ======================================== */

.contact-form-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.contact-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
}

.contact-form-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.contact-form-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.contact-form-text p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.contact-form-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.form-container {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    width: 100%;
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #32CD32;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

/* ========================================
   7. CONTACT INFO SECTION
   ======================================== */

.contact-info-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.contact-info-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
    flex-direction: row-reverse;
}

.contact-info-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.contact-info-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.contact-info-text p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.contact-info-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* ========================================
   8. LOCATIONS SECTION
   ======================================== */

.locations-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.locations-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 50vh;
    text-align: center;
}

.locations-text {
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.locations-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.locations-text p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.location-item {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

/* Coming Soon Location Card */
.location-item.coming-soon {
    background: #F1F5F9;
    border: 2px dashed #94A3B8;
    opacity: 0.8;
}

.location-item.coming-soon:hover {
    transform: none;
    box-shadow: none;
    background: #F1F5F9;
}

.location-item.coming-soon .location-header h3 {
    color: #64748B;
}

.location-item.coming-soon .location-type {
    color: #F59E0B;
    font-weight: 600;
}

.location-item.coming-soon .location-detail span {
    color: #94A3B8;
    font-style: italic;
}

.coming-soon-tag {
    background: #F59E0B !important;
    color: white !important;
    font-weight: 600 !important;
}

.location-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E293B;
    margin: 0 0 5px 0;
}

.location-type {
    font-size: 0.85rem;
    color: #64748B;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.location-details {
    margin-bottom: 15px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.4;
}

.location-detail i {
    color: #32CD32;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.location-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #32CD32;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.locations-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.locations-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* ========================================
   9. QUICK CONTACT SECTION
   ======================================== */

.quick-contact-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.quick-contact-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.quick-contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
    flex-direction: row-reverse;
}

.quick-contact-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.quick-contact-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.quick-contact-text p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.quick-contact-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quick-contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* ========================================
   10. FEATURE LISTS (Used in content blocks)
   ======================================== */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    color: #475569;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   11. CTA SECTION (Pre-footer section)
   ======================================== */

.cta-section {
    padding: 50px 0;
    background: #FFFFFF;
    color: #1E293B;
    text-align: center;
    margin-top: -20px;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.cta-content p {
    font-size: 1.25rem;
    margin: 0 0 40px 0;
    color: #64748B;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   12. FOOTER (Bottom of page)
   ======================================== */

.footer {
    background: #1E293B;
    color: white;
    padding: 60px 0 30px;
}


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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #3B82F6;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.footer-section p {
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
}

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

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

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

.footer-section ul li a:hover {
    color: #3B82F6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: #3B82F6;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #94A3B8;
    margin: 0 0 10px 0;
}

.footer-bottom a {
    color: #3B82F6;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
   13. ANIMATIONS
   ======================================== */

@keyframes revealStickyCTA {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   14. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    /* Navigation - Override base styles */
    .navbar .nav-menu {
        position: fixed !important;
        top: 80px !important;
        right: 20px !important;
        left: auto !important;
        width: 160px !important;
        height: 0rem !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        transition: opacity 0.3s ease, transform 0.3s ease !important;
        z-index: 1000 !important;
        backdrop-filter: blur(12px) !important;
        display: flex !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        padding: 0.2rem 0 !important;
        margin: 0 !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        opacity: 0 !important;
        transform: translateY(-10px) !important;
    }

    .navbar .nav-menu.active {
        height: auto !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .navbar .nav-link {
        display: block !important;
        padding: 0.25rem 0.50rem !important;
        text-align: right !important;
        color: #64748B !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        line-height: 1.1 !important;
    }

    .navbar .nav-toggle {
        display: flex !important;
    }

    /* Hero Section */
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    /* Content Blocks */
    .contact-form-wrapper,
    .contact-info-wrapper,
    .locations-wrapper,
    .quick-contact-wrapper {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
        text-align: center;
    }

    /* Locations Grid - Mobile */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .contact-form-text,
    .contact-info-text,
    .locations-text,
    .quick-contact-text {
        padding: 0 20px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .contact-form-text h2,
    .contact-info-text h2,
    .locations-text h2,
    .quick-contact-text h2 {
        font-size: 1.6rem;
    }

    .contact-form-visual,
    .contact-info-visual,
    .locations-visual,
    .quick-contact-visual {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.5rem;
    }

    /* Locations */
    .locations-list {
        gap: 15px;
    }

    .location-item {
        padding: 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .contact-form-text h2,
    .contact-info-text h2,
    .locations-text h2,
    .quick-contact-text h2 {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .sticky-ctas {
        bottom: 20px;
        right: 20px;
    }

    .cta-rider-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .form-container {
        padding: 1rem;
    }

    .location-item {
        padding: 12px;
    }

    .location-header h3 {
        font-size: 1.1rem;
    }

    .location-detail {
        font-size: 0.85rem;
    }
}