.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .06) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    right: -100px;
    bottom: -100px;
    background: rgba(0, 196, 167, .08);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-title em {
    font-style: normal;
    color: var(--teal);
}

.page-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: .875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .6);
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb span {
    color: var(--teal);
}

.breadcrumb i {
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}

/* ─── İLETİŞİM SECTION ──────────────────────────── */
.contact-section {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

/* İletişim Bilgileri */
.contact-info {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-info-desc {
    font-size: .9375rem;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    width: 52px;
    height: 52px;
    background: var(--teal-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 24px;
    color: var(--teal);
}

.contact-item-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-item-content p,
.contact-item-content a {
    font-size: .9375rem;
    color: var(--muted);
    line-height: 1.6;
}

.contact-item-content a:hover {
    color: var(--teal);
}

/* Sosyal Medya */
.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.contact-social-btn {
    width: 46px;
    height: 46px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t) var(--ease);
}

.contact-social-btn:hover {
    background: var(--teal);
}

.contact-social-btn i {
    font-size: 22px;
    color: var(--navy);
    transition: color var(--t) var(--ease);
}

.contact-social-btn:hover i {
    color: var(--white);
}

/* İletişim Formu */
.contact-form-wrap {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form-desc {
    font-size: .9375rem;
    color: var(--muted);
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy);
}

.form-label span {
    color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--r);
    font-family: 'DM Sans', sans-serif;
    font-size: .9375rem;
    color: var(--ink);
    background: var(--white);
    transition: all var(--t) var(--ease);
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 196, 167, .1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted);
}

.form-input.input-error,
.form-select.input-error,
.form-textarea.input-error {
    border-color: #ef4444;
}

/* Custom Select Wrapper */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--r);
    font-family: 'DM Sans', sans-serif;
    font-size: .9375rem;
    color: var(--ink);
    background: var(--white);
    transition: all var(--t) var(--ease);
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
}

.custom-select-trigger:hover {
    border-color: var(--teal);
}

.custom-select-trigger.open {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 196, 167, .1);
    border-radius: var(--r) var(--r) 0 0;
}

.custom-select-trigger.input-error {
    border-color: #ef4444;
}

.custom-select-trigger .placeholder {
    color: var(--muted);
}

.custom-select-trigger i {
    font-size: 18px;
    color: var(--muted);
    transition: transform var(--t) var(--ease);
}

.custom-select-trigger.open i {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--teal);
    border-top: none;
    border-radius: 0 0 var(--r) var(--r);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .25s var(--ease);
}

.custom-select-options.open {
    max-height: 280px;
    overflow-y: auto;
    opacity: 1;
}

.custom-select-option {
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9375rem;
    color: var(--ink);
    cursor: pointer;
    transition: all var(--t) var(--ease);
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-select-option:hover {
    background: var(--teal-soft);
    color: var(--teal-dark);
}

.custom-select-option.selected {
    background: var(--teal);
    color: var(--white);
}

.custom-select-option i {
    font-size: 18px;
    opacity: .7;
}

.custom-select-option:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

/* Hide native select when custom is active */
.form-select.hidden-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7A99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-error {
    font-size: .8125rem;
    color: #ef4444;
    display: none;
}

.form-error.show {
    display: block;
}

/* Checkbox Group */
.form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    accent-color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox-label {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.5;
}

.form-checkbox-label a {
    color: var(--teal);
    text-decoration: underline;
}

.form-checkbox-label a:hover {
    color: var(--teal-dark);
}

.form-checkbox.error input[type="checkbox"] {
    border-color: #ef4444;
}

.form-checkbox.error .form-checkbox-label {
    color: #ef4444;
}

.form-submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
    justify-content: center;
    margin-top: 8px;
}

/* ─── HARİTA SECTION ────────────────────────────── */
.map-section {
    padding: 0;
}

.map-container {
    position: relative;
    height: 450px;
    background: var(--off-white);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: var(--white);
    border-radius: var(--r);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    max-width: 320px;
}

.map-overlay-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-overlay-title i {
    color: var(--teal);
}

.map-overlay-address {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.map-overlay .btn {
    width: 100%;
    justify-content: center;
}

/* ─── İLETİŞİM RESPONSİVE ───────────────────────── */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrap {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 70px;
    }

    .page-hero-title {
        font-size: clamp(1.375rem, 4.5vw, 1.75rem);
    }

    .page-hero-desc {
        font-size: 1rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info,
    .contact-form-wrap {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 560px) {

    .contact-info,
    .contact-form-wrap {
        padding: 24px;
        border-radius: 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .contact-socials {
        justify-content: center;
    }

    .map-container {
        height: 350px;
    }
}