/* ==========================================
   GSA STUDY - İLETİŞİM SAYFASI
   ========================================== */

/* PAGE HERO */
.page-hero {
    margin-top: 80px;
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* QUICK CONTACT BAR */
.quick-contact {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.quick-contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.qc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: var(--text);
    border-right: 1px solid var(--border);
    transition: background 0.2s;
}

.qc-item:last-child {
    border-right: none;
}

.qc-item:hover {
    background: var(--bg-light);
}

.qc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.qc-icon.phone  { background: #eff6ff; color: var(--secondary); }
.qc-icon.email  { background: #fff7ed; color: var(--accent); }
.qc-icon.wa     { background: #f0fdf4; color: #16a34a; }

.qc-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.qc-value {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

/* MAIN CONTACT SECTION */
.contact-main {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: start;
}

/* LEFT COLUMN */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* MAP */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
}

/* INFO CARD */
.info-block {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.info-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--bg-light);
}

.hours-row:last-child { border-bottom: none; }

.hours-row span:first-child { color: var(--text); font-weight: 500; }
.hours-row span:last-child  { color: var(--text-light); }

.hours-row .closed { color: #ef4444; font-weight: 600; }

/* Social */
.social-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--border);
}

.social-btn:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* RIGHT COLUMN - FORM */
.contact-form-box {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form-box h2 {
    font-size: 1.7rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.contact-form-box .form-sub {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-inner {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

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

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.87rem;
    color: var(--text-light);
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--secondary);
    cursor: pointer;
}

.form-check a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.form-check a:hover { text-decoration: underline; }

.submit-btn {
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.95rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s;
    width: 100%;
}

.submit-btn:hover:not(:disabled) {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59,130,246,0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success */
.success-box {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.success-box.show {
    display: block;
    animation: fadeUp 0.4s ease-out;
}

@keyframes fadeUp {
    from { opacity:0; transform:translateY(16px); }
    to   { opacity:1; transform:translateY(0); }
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.success-box h3 { color: #15803d; margin-bottom: 0.5rem; font-size: 1.3rem; }
.success-box p  { color: #16a34a; font-size: 0.95rem; }

/* CTA BOTTOM */
.cta-section-alt {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta-section-alt .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section-alt h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.cta-section-alt p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-call, .btn-whatsapp {
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s;
}

.btn-call {
    background: var(--secondary);
    color: white;
}
.btn-call:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59,130,246,0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-left {
        order: 2;
    }

    .contact-form-box {
        order: 1;
    }

    .quick-contact-inner {
        grid-template-columns: 1fr;
    }

    .qc-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

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

    .page-hero-content h1 { font-size: 2rem; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }

    .contact-form-box { padding: 1.5rem; }

    .cta-buttons { flex-direction: column; }
    .btn-call, .btn-whatsapp { width: 100%; justify-content: center; }
}
