/* Snappy Style Contact Page Redesign */

.contact-redesign-wrapper {
    background-color: #f4f7fc;
    padding-top: 100px; /* Offset fixed navbar */
    width: 100%;
}

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

/* ================================
   1. HERO FORM SECTION
================================ */
.snappy-hero {
    padding: 4rem 0 6rem;
}

.snappy-hero-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.snappy-text-side {
    flex: 1;
    max-width: 500px;
}

.snappy-title {
    font-size: 4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.snappy-desc {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.snappy-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.snappy-link-main {
    font-size: 1.1rem;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.snappy-link-underlined {
    font-size: 1.1rem;
    color: #111827;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.snappy-link-main:hover, .snappy-link-underlined:hover {
    color: #2563eb;
}

.snappy-sub-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.snappy-sub-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.snappy-sub-col p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 80%;
}

/* Form Side */
.snappy-form-side {
    flex: 1;
    max-width: 550px;
}

.snappy-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.snappy-form-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.snappy-form-card p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.snappy-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.pill-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 1rem;
    color: #111827;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.pill-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 1rem;
    color: #111827;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.pill-input:focus, .pill-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.pl-icon {
    padding-left: 3.5rem;
}

/* Phone Selector specific logic */
.snappy-phone {
    display: flex;
    padding: 0;
    /* Removed overflow: hidden to allow dropdown visibility */
}

.snappy-phone input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1rem 1.5rem 1rem 0;
    outline: none;
}

.country-selector {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    min-width: 80px;
    border-right: 1px solid #e5e7eb;
    margin-right: 1rem;
}

.selected-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem 0 1.5rem;
    font-weight: 500;
    color: #111827;
}

.country-dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    width: 300px;
    max-height: 250px;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}

.country-selector.active .country-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-dropdown li {
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.2s;
}

.country-dropdown li:hover {
    background: #f3f4f6;
}

.textarea-wrapper {
    position: relative;
}

.char-count {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.snappy-submit-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    background: #1459ff; /* Snappy Blue */
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.snappy-submit-btn:hover {
    background: #0f46d2;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 89, 255, 0.2);
}

.terms-text {
    font-size: 0.8rem !important;
    text-align: center;
    color: #6b7280 !important;
    margin-bottom: 0 !important;
}

.terms-text strong {
    color: #111827;
}

/* ================================
   2. PREMIUM LOCATION SECTION
================================ */
.premium-location {
    padding: 6rem 0;
    background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(20, 89, 255, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.location-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.location-info-card {
    position: relative;
    z-index: 2;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.location-info-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.location-intro {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.address-premium-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.address-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.1);
}

.address-icon {
    width: 60px;
    height: 60px;
    background: #111827;
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.address-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.address-details p {
    font-size: 1.1rem;
    color: #111827;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-text {
    font-size: 1.1rem !important;
    color: #6b7280 !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
    margin-bottom: 0 !important;
}

.btn-location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 4px;
    transition: gap 0.3s ease;
}

.btn-location-link:hover {
    gap: 1rem;
}

.map-wrapper-v2 {
    position: relative;
    height: 480px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.1);
    border: 8px solid #ffffff;
}

.map-container-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-overlay-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .location-grid-v2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .map-wrapper-v2 {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .premium-location {
        padding: 5rem 0;
    }
    
    .location-info-card h2 {
        font-size: 2.75rem;
    }
    
    .address-premium-card {
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ================================
   3. FAQ SECTION
================================ */
.snappy-faq {
    padding: 8rem 0;
}

.faq-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.faq-left {
    flex: 1;
    max-width: 450px;
}

.faq-left h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.faq-left p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.email-subscribe-form {
    display: flex;
    align-items: center;
    position: relative;
    gap: 1rem;
}

.email-subscribe-form i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    z-index: 2;
}

.email-subscribe-form .pill-input {
    flex: 1;
    background: #ffffff;
}

.btn-blue-pill {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: #1459ff;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-blue-pill:hover {
    background: #0f46d2;
}

.faq-right {
    flex: 1.2;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

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

.accordion-header {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
}

.accordion-header i {
    color: #111827;
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body p {
    padding-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

/* ================================
   4. CTA BANNER
================================ */
.snappy-cta {
    padding: 0 1rem 4rem;
}

.cta-banner-img {
    height: 400px;
    border-radius: 40px;
    background-image: url('../images/cta-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.cta-overlay h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-white-pill {
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #111827;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.3s;
}

.btn-white-pill:hover {
    background: transparent;
    color: #ffffff;
}

.btn-outline-pill {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-outline-pill:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* ================================
   RESPONSIVENESS
================================ */
@media (max-width: 1024px) {
    .snappy-hero-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .snappy-text-side, .snappy-form-side {
        max-width: 100%;
    }
    
    .snappy-sub-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .snappy-sub-col {
        flex: 1;
        min-width: 250px;
    }

    .location-content, .faq-content {
        flex-direction: column;
    }
    
    .location-details, .faq-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .snappy-title, .cta-overlay h2 {
        font-size: 3rem;
    }
    
    .location-details h2 {
        font-size: 2.5rem;
    }
    
    .faq-left h2 {
        font-size: 2.5rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .snappy-form-card {
        padding: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-white-pill, .btn-outline-pill {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
