/* ==============================================
   İLETİŞİM DEMO - REVISED INTEGRATED LAYOUT
   Concept: Premium, Open Information, Integrated
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --c-bg: #0b0b0d;
    --c-bg-card: #141416;
    --c-text-main: #ffffff;
    --c-text-muted: #888888;
    --c-accent: #d4a853;
    --c-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
}

body.contact-page {
    background-color: var(--c-bg);
    color: var(--c-text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Hero Section */
.contact-hero {
    position: relative;
    padding-top: 180px;
    /* Space for fixed navbar */
    padding-bottom: 80px;
    background: linear-gradient(180deg, #070708 0%, #0b0b0d 100%);
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-title .dot {
    color: var(--c-accent);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--c-text-muted);
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0 6rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info Column */
.section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: #fff;
    border-left: 3px solid var(--c-accent);
    padding-left: 1rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 83, 0.1);
    color: var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value,
.info-text {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.info-value:hover {
    color: var(--c-accent);
}

/* Working Hours & Social */
.working-hours {
    background: var(--c-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--c-border);
    margin-bottom: 2rem;
}

.wh-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.working-hours p {
    color: var(--c-text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.social-connect {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* WhatsApp Button - Modern & Premium */
.whatsapp-btn {
    width: auto !important;
    height: auto !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none !important;
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn::after {
    content: "WhatsApp ile İletişime Geçin";
    font-family: var(--font-main);
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #2be675 0%, #1da572 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: #fff !important;
}

/* Form Area */
.contact-form-wrapper {
    position: relative;
}

.form-box {
    background: var(--c-bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--c-border);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-desc {
    color: var(--c-text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--c-text-muted);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--c-border);
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--c-accent);
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    width: 100%;
    background: var(--c-accent);
    color: #000;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.3s, background-color 0.3s;
}

.submit-btn:hover {
    background-color: #f0c060;
}

/* Map Section */
.map-section {
    padding-bottom: 6rem;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    height: 450px;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .info-value {
        font-size: 1.2rem;
    }

    .form-box {
        padding: 2rem;
    }
}