/* ===================================
   CONTACT US PAGE STYLES
   =================================== */

/* ===== CONTACT HERO ===== */
.contact-hero {
    padding: 8rem 2rem 5rem;
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(249, 115, 22, 0.05)),
        var(--light-gray);
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--dark-text);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== CONTACT MAIN ===== */
.contact-main {
    padding: 5rem 2rem;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--darker-text);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid transparent;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.1);
    border-left-color: var(--cyan);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--darker-text);
}

.info-card p {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.7;
}

.info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--cyan);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: white;
    box-shadow: 0 8px 40px rgba(0, 102, 255, 0.1);
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid var(--light-gray);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--darker-text);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--darker-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
    color: var(--darker-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--dark-text);
    text-align: center;
    font-style: italic;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--darker-text);
}

.map-container p {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

.map-placeholder {
    background: white;
    padding: 6rem 3rem;
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0, 102, 255, 0.1);
    border: 3px dashed var(--cyan);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-placeholder-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: var(--cyan);
}

.map-placeholder h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--darker-text);
}

.map-placeholder p {
    font-size: 1rem;
    color: var(--dark-text);
    max-width: 600px;
}

/* ===== QUICK CONTACT CARDS ===== */
.quick-contact {
    padding: 5rem 2rem;
    background: white;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.quick-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-card:nth-child(2) {
    background: linear-gradient(135deg, var(--orange), #FF6B35);
}

.quick-card:nth-child(3) {
    background: linear-gradient(135deg, var(--purple), #A855F7);
}

.quick-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.quick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.3);
}

.quick-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
}

.quick-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.quick-card p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
}

.quick-card a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.quick-card a:hover {
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .map-placeholder {
        padding: 4rem 2rem;
        min-height: 300px;
    }
}
