/* ==========================================================================
   SGR GRUP - PREMIUM İLETİŞİM SAYFASI
   ========================================================================== */

.contact-content-area {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: #ffffff;
    min-height: 80vh;
    position: relative;
    z-index: 10;
}

.contact-content-area.active {
    display: block;
    opacity: 1;
}

.sgr-contact-page {
    min-height: 100vh;
    padding: 165px 0 130px 0;
    background:
        radial-gradient(circle at top left, rgba(10, 92, 54, 0.055), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.sgr-contact-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 76px auto;
}

.sgr-contact-header h2 {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: #0f172a;
    margin-bottom: 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-contact-header p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #0f172a;
    opacity: 0.68;
    max-width: 720px;
    margin: 0 auto;
}

.sgr-contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: stretch;
}

.sgr-contact-info-panel {
    background: linear-gradient(135deg, #0a5c36 0%, #063c23 100%);
    color: #ffffff;
    border-radius: 26px;
    padding: 46px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(10, 92, 54, 0.18);
}

.sgr-contact-info-panel::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.sgr-contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -110px;
    left: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.045);
}

.sgr-contact-panel-top,
.sgr-contact-cards,
.sgr-location-list {
    position: relative;
    z-index: 2;
}

.sgr-contact-small-title {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 18px;
}

.sgr-contact-info-panel h3 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-contact-info-panel p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.sgr-contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 42px 0;
}

.sgr-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.085);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: var(--transition-smooth);
}

.sgr-contact-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.sgr-contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.sgr-contact-card small {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
    margin-bottom: 4px;
}

.sgr-contact-card strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.sgr-location-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sgr-location-item span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 7px;
}

.sgr-location-item p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
}

/* FORM PANEL */

.sgr-contact-form-panel {
    background: #ffffff;
    border-radius: 26px;
    padding: 52px;
    border: 1px solid rgba(15, 23, 42, 0.055);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.05);
}

.sgr-contact-form-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 16px;
}

.sgr-contact-form-panel h3 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin-bottom: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-contact-form-panel > p {
    font-size: 15px;
    line-height: 1.72;
    color: #0f172a;
    opacity: 0.62;
    margin-bottom: 34px;
}

.sgr-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sgr-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sgr-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sgr-form-group label {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sgr-form-group input,
.sgr-form-group select,
.sgr-form-group textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px 16px;
    font-size: 14px;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    transition: var(--transition-smooth);
}

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

.sgr-form-group input:focus,
.sgr-form-group select:focus,
.sgr-form-group textarea:focus {
    background: #ffffff;
    border-color: rgba(10, 92, 54, 0.34);
    box-shadow: 0 0 0 4px rgba(10, 92, 54, 0.07);
}

.sgr-contact-submit {
    width: 100%;
    margin-top: 8px;
    border-radius: 12px;
    padding: 17px 32px;
}

.sgr-contact-submit:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.sgr-form-note {
    font-size: 12.5px;
    line-height: 1.6;
    color: #0f172a;
    opacity: 0.46;
    text-align: center;
}

/* RESPONSIVE */

@media (max-width: 1080px) {
    .sgr-contact-layout {
        grid-template-columns: 1fr;
    }

    .sgr-contact-info-panel,
    .sgr-contact-form-panel {
        padding: 40px;
    }
}

@media (max-width: 700px) {
    .sgr-contact-page {
        padding: 135px 0 90px 0;
    }

    .sgr-contact-header {
        margin-bottom: 46px;
    }

    .sgr-contact-info-panel,
    .sgr-contact-form-panel {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .sgr-form-grid {
        grid-template-columns: 1fr;
    }

    .sgr-contact-card {
        align-items: flex-start;
    }

    .sgr-contact-card strong {
        font-size: 14px;
        word-break: break-word;
    }
}
/* ==========================================================================
   SGR GRUP - BEYAZ / YEŞİL PREMIUM HARİTA ALANI
   ========================================================================== */

.sgr-contact-map-section {
    margin-top: 76px;
}

.sgr-contact-map-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px auto;
}

.sgr-contact-map-header h3 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin-bottom: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-contact-map-header p {
    font-size: 15px;
    line-height: 1.75;
    color: #0f172a;
    opacity: 0.62;
}

.sgr-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.sgr-map-card {
    background: #ffffff;
    border: 1px solid rgba(10, 92, 54, 0.14);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.045);
    position: relative;
    transition: var(--transition-smooth);
}

.sgr-map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    z-index: 4;
    opacity: 0.75;
}

.sgr-map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 78px rgba(10, 92, 54, 0.095);
    border-color: rgba(10, 92, 54, 0.3);
}

.sgr-map-info {
    padding: 30px 32px;
    background:
        radial-gradient(circle at top right, rgba(10, 92, 54, 0.055), transparent 38%),
        #ffffff;
    border-bottom: 1px solid rgba(10, 92, 54, 0.1);
}

.sgr-map-info span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.sgr-map-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #0f172a;
    opacity: 0.72;
}

.sgr-map-frame {
    width: 100%;
    height: 370px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Haritanın üzerine beyaz/yeşil tema hissi veren premium katman */
.sgr-map-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), transparent 35%),
        radial-gradient(circle at bottom right, rgba(10, 92, 54, 0.035), transparent 42%);
    z-index: 2;
}

/* Google iframe'i beyaz ve yeşile yaklaştıran filtre */
.sgr-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;

    filter: contrast(102%) saturate(92%) brightness(101%);
    opacity: 1;
    transition: var(--transition-smooth);
}

.sgr-map-card:hover .sgr-map-frame iframe {
    filter: contrast(106%) saturate(105%) brightness(102%);
    transform: scale(1.012);
}

@media (max-width: 900px) {
    .sgr-map-grid {
        grid-template-columns: 1fr;
    }

    .sgr-map-frame {
        height: 330px;
    }
}

@media (max-width: 600px) {
    .sgr-contact-map-section {
        margin-top: 52px;
    }

    .sgr-map-info {
        padding: 24px;
    }

    .sgr-map-frame {
        height: 285px;
    }
}

@media (max-width: 900px) {
    .sgr-map-grid {
        grid-template-columns: 1fr;
    }

    .sgr-map-frame {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .sgr-contact-map-section {
        margin-top: 48px;
    }

    .sgr-map-info {
        padding: 24px;
    }

    .sgr-map-frame {
        height: 280px;
    }
}