/* Contact Page General */
.contact-page {
    background: #fdfbf7;
}

/* Hero Section */
.contact-hero {
    padding: 80px 0 60px;
    background: linear-gradient(rgba(5, 10, 14, 0.3), rgba(5, 10, 14, 0.6)), url('../images/simple_about_banner.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
}

.contact-hero .hero-title {
    font-size: 56px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}

.contact-hero .hero-subtitle {
    font-size: 18px;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 60px 0 80px;
    position: relative;
    z-index: 10;
}

.contact-wrapper {
    display: flex;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    flex-wrap: wrap;
}

/* Left Panel: Contact Info */
.contact-info {
    flex: 1 1 400px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #4a7c15 100%);
    color: #fff;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info h2 {
    font-size: 32px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 50px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.info-item:hover .icon {
    transform: scale(1.1);
}

.info-item .icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

/* Right Panel: Contact Form */
.contact-form-container {
    flex: 2 1 500px;
    padding: 60px 50px;
    background: #ffffff;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-form .form-row .half {
    flex: 1;
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(227, 30, 36, 0.4);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.08);
}

/* Custom Select Arrow */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    font-size: 12px;
    color: #666;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

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

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 16px;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* Service Center Locator Section */
.locator-section {
    padding: 50px 0;
    background: #ffffff;
}

.locator-header h2 {
    font-size: 42px;
    font-family: 'Oswald', sans-serif;
    color: #222;
    margin-bottom: 15px;
}

.locator-header p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.locator-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 50px;
    display: flex;
}

.locator-search input {
    flex: 1;
    padding: 15px 60px 15px 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.locator-search input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(104, 160, 32, 0.15);
}

.locator-search .search-icon-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.locator-search .search-icon-btn:hover {
    background: #4a7c15;
    box-shadow: 0 5px 15px rgba(104, 160, 32, 0.3);
}

.locator-search .search-icon-btn svg {
    width: 20px;
    height: 20px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.slider-header h3 {
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    color: #333;
}

.slider-nav {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.slider-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.locator-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.locator-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.locator-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.locator-card {
    background: #fdfbf7;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    flex: 0 0 calc(45% - 15px); /* Slightly less than 50% so next card peeks */
    scroll-snap-align: start;
    display: flex;
    gap: 20px;
    transition: 0.3s ease;
}

@media screen and (max-width: 992px) {
    .locator-card {
        flex: 0 0 calc(100%);
    }
}

.locator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(104, 160, 32, 0.2);
}

.lc-icon {
    width: 50px;
    height: 50px;
    background: rgba(104, 160, 32, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lc-icon svg {
    width: 24px;
    height: 24px;
}

.lc-details h4 {
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
    color: #222;
}

.lc-address {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.no-results-msg {
    padding: 50px 20px;
    text-align: center;
    width: 100%;
}
.no-results-msg .nr-icon svg {
    width: 48px;
    height: 48px;
    color: #ccc;
    margin-bottom: 15px;
}
.no-results-msg p {
    color: #666;
    font-size: 18px;
    margin: 0;
}

.lc-phone {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}

.lc-link {
    font-size: 15px;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.lc-link:hover {
    color: #4a7c15;
    text-decoration: underline;
}

/* Map Section */
.map-section {
    line-height: 0;
    width: 100%;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.map-section:hover {
    filter: grayscale(0%);
}

/* Customer Support Section */
.customer-support-section h2 {
    font-size: 36px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}
.customer-support-section p {
    color: #666;
    font-size: 18px;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.support-card {
    background: #fdfbf7;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.support-card.whatsapp-card {
    background: #e8f5e9;
    border-color: #c8e6c9;
}
.support-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.support-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-green);
}
.whatsapp-card .support-icon svg {
    stroke: #2e7d32;
}
.support-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}
.support-card p {
    font-size: 14px;
    margin-bottom: 20px;
}
.support-link {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 18px;
    text-decoration: none;
}
.support-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.support-btn.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
}
.support-btn.btn-outline::before,
.support-btn.btn-outline::after {
    display: none;
}
.support-btn.btn-outline:hover {
    background: var(--primary-green) !important;
    color: #fff !important;
}
.support-btn.btn-whatsapp {
    background: #4caf50;
    color: #fff !important;
}
.support-btn.btn-whatsapp:hover {
    background: #388e3c !important;
    color: #fff !important;
}



/* Test Ride CTA */
.test-ride-cta {
    padding: 0 0 80px;
    background: #fff;
}
.cta-banner {
    background: linear-gradient(135deg, rgba(30, 60, 35, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%), url('../images/scooters-models.png') center/cover no-repeat;
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.25);
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-size: 46px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}
.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}
.cta-btn {
    background: #fff !important;
    color: var(--primary-green) !important;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 30px;
    transition: 0.3s;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}
.cta-btn span {
    font-size: 22px;
    transition: 0.3s;
}
.cta-btn:hover {
    background: #fdfbf7 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.cta-btn:hover span {
    transform: translateX(5px);
}

/* Contact Intro Header */
.contact-intro-header {
    text-align: center;
    margin-bottom: 50px;
}
.contact-intro-header h2 {
    font-size: 42px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}
.contact-intro-header p {
    font-size: 17px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-form .form-row {
        flex-direction: column;
        gap: 25px;
    }
    .contact-info, .contact-form-container {
        padding: 40px 30px;
    }
    .contact-hero {
        padding: 100px 0 80px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 0 30px !important;
    }
    .contact-hero .hero-title {
        font-size: 26px !important;
        margin-bottom: 8px;
        color: #ffffff !important;
        position: relative;
        z-index: 2;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .contact-hero .hero-subtitle {
        font-size: 13px !important;
        font-weight: 400 !important;
        text-transform: none !important;
        padding: 0 15px;
        line-height: 1.5;
        letter-spacing: 0.5px !important;
        color: #ffffff !important;
        position: relative;
        z-index: 2;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        text-align: justify !important;
    }
    .contact-intro-header {
        text-align: left !important;
        margin-bottom: 25px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    .contact-intro-header h2 {
        font-size: 26px !important;
        text-align: left !important;
        margin-bottom: 10px !important;
        width: 100% !important;
    }
    .contact-intro-header p {
        font-size: 14px !important;
        text-align: justify !important;
        line-height: 1.5 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Contact Wrapper Full Width */
    .contact-wrapper {
        border-radius: 12px 12px 0 0 !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        width: calc(100% + 30px) !important;
    }

    /* Contact Info Mobile Overrides */
    .contact-info {
        padding: 30px 20px !important;
    }
    .contact-info h2 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    .contact-info > p {
        font-size: 14px !important;
        margin-bottom: 30px !important;
    }
    .info-items {
        gap: 20px !important;
        margin-bottom: 30px !important;
    }
    .info-item {
        gap: 15px !important;
    }
    .info-item .icon {
        width: 40px !important;
        height: 40px !important;
    }
    .info-item .icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    .info-item h4 {
        font-size: 16px !important;
        margin-bottom: 4px !important;
    }
    .info-item p {
        font-size: 13px !important;
    }

    /* Contact Form Mobile Overrides */
    .contact-form-container {
        padding: 25px 15px !important;
    }
    .contact-form label {
        font-size: 11px !important;
        margin-bottom: 5px !important;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 15px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }
    .contact-form .form-group {
        margin-bottom: 15px !important;
    }
    .contact-form .form-row {
        gap: 15px !important;
        margin-bottom: 15px !important;
    }

    /* Locator Mobile Overrides */
    .locator-header {
        text-align: left !important;
    }
    .locator-header h2 {
        font-size: 28px !important;
        margin-bottom: 10px !important;
        text-align: left !important;
    }
    .locator-header p {
        font-size: 14px !important;
        margin-bottom: 25px !important;
        text-align: justify !important;
    }
    .locator-search {
        margin-bottom: 35px !important;
    }
    .locator-search input {
        padding: 12px 50px 12px 20px !important;
        font-size: 14px !important;
        flex: 1 !important;
        width: auto !important;
        box-sizing: border-box;
    }
    .locator-search .search-icon-btn {
        width: 38px !important;
        height: 38px !important;
    }
    .locator-search .search-icon-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
    .slider-header {
        flex-direction: row !important;
        align-items: center !important;
        margin-bottom: 20px !important;
        gap: 10px !important;
    }
    .slider-header h3 {
        font-size: 18px !important;
    }
    .slider-btn {
        width: 36px !important;
        height: 36px !important;
    }
    .locator-card {
        padding: 20px !important;
        gap: 15px !important;
        border-radius: 12px !important;
    }
    .lc-icon {
        width: 40px !important;
        height: 40px !important;
    }
    .lc-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    .lc-details h4 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
    }
    .lc-address {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }
    .lc-phone {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }
    .lc-link {
        font-size: 13px !important;
    }
    .no-results-msg {
        padding: 30px 15px !important;
    }
    .no-results-msg .nr-icon svg {
        width: 32px !important;
        height: 32px !important;
        margin-bottom: 10px !important;
    }
    .no-results-msg p {
        font-size: 14px !important;
    }

    /* Customer Support Mobile Overrides */
    .customer-support-section {
        padding: 40px 0 !important;
    }
    .support-header {
        margin-bottom: 25px !important;
        text-align: left !important;
    }
    .support-header h2 {
        font-size: 28px !important;
        margin-bottom: 10px !important;
        text-align: left !important;
    }
    .support-header p {
        font-size: 14px !important;
        text-align: justify !important;
    }
    .support-grid {
        gap: 15px !important;
    }
    .support-card {
        padding: 20px !important;
    }
    .support-icon {
        width: 45px !important;
        height: 45px !important;
        margin: 0 auto 15px !important;
    }
    .support-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    .support-card h4 {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }
    .support-card p {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }
    .support-link {
        font-size: 16px !important;
    }
    .support-btn {
        padding: 8px 20px !important;
        font-size: 14px !important;
    }

    /* Chat Widget Mobile Overrides */
    .chat-widget {
        bottom: 15px !important;
        right: 15px !important;
        width: calc(100% - 30px) !important;
        max-width: 320px !important;
    }
    .chat-header {
        padding: 10px 15px !important;
    }
    .chat-header-info h5 {
        font-size: 15px !important;
    }
    .chat-body {
        height: 250px !important;
        padding: 15px !important;
    }
    .chat-msg {
        font-size: 13px !important;
        padding: 8px 12px !important;
    }
    .chat-footer {
        padding: 10px !important;
    }
    .chat-footer input {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }
    .chat-footer button {
        width: 36px !important;
        height: 36px !important;
    }

    /* CTA Banner Mobile Overrides */
    .test-ride-cta {
        padding: 0 0 40px !important;
    }
    .test-ride-cta .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    .cta-banner {
        padding: 40px 20px !important;
        border-radius: 0 !important;
    }
    .cta-content {
        text-align: left !important;
    }
    .cta-content h2 {
        font-size: 32px !important;
        margin-bottom: 10px !important;
        text-align: left !important;
    }
    .cta-content p {
        font-size: 15px !important;
        margin-bottom: 25px !important;
        padding: 0 !important;
        text-align: left !important;
    }
    .cta-btn {
        font-size: 15px !important;
        padding: 12px 30px !important;
        display: inline-block !important;
    }

    /* Map Section Mobile Overrides */
    .map-section iframe {
        height: 300px !important;
    }
}
