/* ===== HERO SECTION ===== */
.contact-hero {
    position: relative;
    background: #0B0F19;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 4rem;
    text-align: center;
    overflow: hidden;
    color: #fff;
    min-height: 500px;
}

.threads-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 25, 0.4);
    pointer-events: none;
    z-index: 2;
}

.contact-hero .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.support-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(to right, #3b82f6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== CONTACT MAIN SECTION ===== */
.contact-main {
    background: #f8f9fa;
    padding: 6rem 1rem;
    position: relative;
    z-index: 1;
}

.contact-main .container {
    max-width: 1200px;
    margin: 0 auto;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .grid-2-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* LEFT COLUMN: Contact Info */
.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact-info p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

.contact-items .item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-items .icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-items .icon.map { background: #bfdbfe; color: #2563eb; }
.contact-items .icon.mail { background: #fbcfe8; color: #db2777; }
.contact-items .icon.phone { background: #fef3c7; color: #b45309; }

.contact-items h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.contact-items p {
    margin-top: 0.25rem;
    color: #6b7280;
}

/* FAQ MINI SECTION */
.contact-info .faq {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.faq h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq ul {
    list-style: none;
    padding: 0;
}

.faq ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* RIGHT COLUMN: Contact Form */
.contact-form-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-card .decorative-blob {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #d8b4fe, #fbcfe8);
    filter: blur(4rem);
    opacity: 0.5;
    pointer-events: none;
}

.contact-form-card form input,
.contact-form-card form select,
.contact-form-card form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    outline: none;
    transition: all 0.2s;
    font-size: 1rem;
    color: #111827;
}

.contact-form-card form input:focus,
.contact-form-card form select:focus,
.contact-form-card form textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
}

.contact-form-card form button {
    width: 100%;
    padding: 1rem 0;
    background: #3b82f6;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 1rem;
    cursor: pointer;
    border: none;
    margin-top: 1rem;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-card form button:hover {
    background: #2563eb;
}

.contact-form-card form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== MAP SECTION ===== */
.contact-map {
    background: #fff;
    padding: 5rem 1rem;
    text-align: center;
}

.contact-map .small-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.contact-map h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2.5rem;
}

.map-placeholder {
    position: relative;
    border-radius: 2rem;  
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.pulse-dot {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #3b82f6;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1) translate(-50%, -50%); opacity: 1; }
    50% { transform: scale(1.5) translate(-50%, -50%); opacity: 0.5; }
    100% { transform: scale(1) translate(-50%, -50%); opacity: 1; }
}


.contact-hero h1 {
    font-size: 3.75rem; /* 60px, similar to Tailwind's text-6xl */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem; /* smaller on mobile */
    }
}