/* ==========================================================================
   SGR GRUP - PREMIUM PROJELER SAYFASI
   ========================================================================== */

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

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

.sgr-projects-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-projects-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 38px auto;
}

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

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

/* kategori switch */

.sgr-project-switch {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 44px auto 60px auto;
    flex-wrap: wrap;
}

.sgr-project-switch button {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    color: #0f172a;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-project-switch button:hover {
    border-color: rgba(10, 92, 54, 0.24);
    color: var(--accent-green);
    transform: translateY(-2px);
}

.sgr-project-switch button.active {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(10, 92, 54, 0.16);
}

/* proje grid */

.sgr-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.sgr-project-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.055);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.045);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.sgr-project-card:hover {
    transform: translateY(-7px);
    border-color: rgba(10, 92, 54, 0.2);
    box-shadow: 0 34px 82px rgba(15, 23, 42, 0.085);
}

.sgr-project-image {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    background: #e2e8f0;
}

.sgr-project-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15,23,42,0.08), transparent 34%),
        linear-gradient(0deg, rgba(15,23,42,0.36), transparent 42%);
    z-index: 2;
}

.sgr-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.sgr-project-card:hover .sgr-project-image img {
    transform: scale(1.045);
}

.sgr-project-status {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    background: rgba(10, 92, 54, 0.92);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sgr-project-content {
    padding: 34px 36px 38px 36px;
}

.sgr-project-meta {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-green);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sgr-project-content h3 {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: #0f172a;
    margin-bottom: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-project-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #0f172a;
    opacity: 0.68;
    margin-bottom: 30px;
}

.sgr-project-detail-btn {
    border: 1px solid rgba(10, 92, 54, 0.16);
    background: rgba(10, 92, 54, 0.045);
    color: var(--accent-green);
    border-radius: 12px;
    padding: 14px 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-project-detail-btn:hover {
    background: var(--accent-green);
    color: #ffffff;
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

/* boş kategori */

.sgr-projects-grid.empty-mode {
    display: block;
}

.sgr-project-empty {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.055);
    border-radius: 26px;
    padding: 58px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.045);
    position: relative;
    overflow: hidden;
}

.sgr-project-empty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 58px;
    right: 58px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0.65;
}

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

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

.sgr-project-empty p {
    font-size: 15px;
    line-height: 1.75;
    color: #0f172a;
    opacity: 0.62;
    max-width: 520px;
    margin: 0 auto;
}

/* responsive */

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

    .sgr-project-image {
        height: 380px;
    }
}

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

    .sgr-project-switch {
        flex-direction: column;
        align-items: stretch;
    }

    .sgr-project-switch button {
        width: 100%;
    }

    .sgr-project-image {
        height: 300px;
    }

    .sgr-project-content {
        padding: 28px 24px 30px 24px;
    }

    .sgr-project-empty {
        padding: 42px 26px;
        border-radius: 20px;
    }
}
/* ==========================================================================
   SATIŞA KAPALI PROJE KARTLARI
   ========================================================================== */

.sgr-project-card.project-closed {
    opacity: 0.92;
}

.sgr-project-card.project-closed .sgr-project-image img {
    filter: grayscale(100%) brightness(0.82) contrast(0.95);
}

.sgr-project-card.project-closed .sgr-project-image::after {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.16), transparent 34%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.58), transparent 48%);
}

.sgr-project-card.project-closed .sgr-project-tag {
    background: rgba(100, 116, 139, 0.92);
    border-color: rgba(255, 255, 255, 0.16);
}

.sgr-project-card.project-closed .sgr-project-footer span {
    color: #64748b;
}

.sgr-project-card.project-closed .sgr-project-footer button {
    background: rgba(100, 116, 139, 0.08);
    border-color: rgba(100, 116, 139, 0.18);
    color: #64748b;
}

.sgr-project-card.project-closed .sgr-project-footer button:hover {
    background: #64748b;
    border-color: #64748b;
    color: #ffffff;
}
/* ==========================================================================
   PROJE DETAY SAYFASI
   ========================================================================== */

.sgr-project-detail-page {
    background: #ffffff;
    min-height: 100vh;
}

.sgr-project-detail-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0f172a;
}

.sgr-project-detail-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.sgr-project-detail-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.78)),
        radial-gradient(circle at bottom left, rgba(10, 92, 54, 0.38), transparent 42%);
    z-index: 2;
}

.sgr-project-detail-hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: 90px;
    color: #ffffff;
}

.sgr-detail-back {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sgr-project-detail-hero-content h1 {
    font-size: clamp(42px, 6vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.07em;
    max-width: 980px;
    margin: 24px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sgr-detail-meta span {
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sgr-project-tag.closed-tag {
    background: rgba(100, 116, 139, 0.92);
}

.sgr-detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 60px;
    padding: 105px 0 130px 0;
}

.sgr-detail-main h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    color: #0f172a;
    margin-bottom: 26px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-detail-main > p {
    font-size: 17px;
    line-height: 1.9;
    color: #0f172a;
    opacity: 0.72;
    max-width: 820px;
    margin-bottom: 46px;
}

.sgr-detail-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.sgr-detail-gallery-item {
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background: #e2e8f0;
}

.sgr-detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sgr-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sgr-detail-info-card,
.sgr-detail-feature-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.055);
}

.sgr-detail-info-card h3,
.sgr-detail-feature-card h3 {
    font-size: 22px;
    color: #0f172a;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-detail-info-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.sgr-detail-info-row span {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.sgr-detail-info-row strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    text-align: right;
}

.sgr-detail-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    width: 100%;
    min-height: 54px;
    border-radius: 14px;
    background: var(--accent-green);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sgr-feature-line {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 13px 0;
}

.sgr-feature-line span {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(10, 92, 54, 0.09);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.sgr-feature-line p {
    margin: 0;
    color: #0f172a;
    opacity: 0.72;
    line-height: 1.55;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 980px) {
    .sgr-detail-content-grid {
        grid-template-columns: 1fr;
    }

    .sgr-detail-sidebar {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .sgr-project-detail-hero {
        min-height: 68vh;
    }

    .sgr-project-detail-hero-content {
        padding-bottom: 60px;
    }

    .sgr-detail-content-grid {
        padding: 70px 0 90px 0;
        gap: 36px;
    }

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

    .sgr-detail-gallery-item {
        height: 260px;
    }
}
/* ==========================================================================
   PROJE DETAY PREMIUM GALERİ
   Büyük görsel + yatay thumbnail sistemi
   ========================================================================== */

.sgr-detail-gallery-premium {
    margin-top: 46px;
}

.sgr-detail-main-image {
    width: 100%;
    height: 620px;
    border-radius: 30px;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
}

.sgr-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.22s ease, transform 0.5s ease;
}

.sgr-detail-thumb-row {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    overflow-x: auto;
    padding: 4px 4px 16px 4px;
    scroll-behavior: smooth;
}

.sgr-detail-thumb-row::-webkit-scrollbar {
    height: 6px;
}

.sgr-detail-thumb-row::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.06);
    border-radius: 999px;
}

.sgr-detail-thumb-row::-webkit-scrollbar-thumb {
    background: rgba(10, 92, 54, 0.35);
    border-radius: 999px;
}

.sgr-detail-thumb {
    width: 138px;
    height: 92px;
    min-width: 138px;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    background: #e2e8f0;
    cursor: pointer;
    opacity: 0.62;
    transition: all 0.3s ease;
}

.sgr-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9);
}

.sgr-detail-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.sgr-detail-thumb.active {
    opacity: 1;
    border-color: var(--accent-green);
    box-shadow: 0 10px 24px rgba(10, 92, 54, 0.18);
}

@media (max-width: 980px) {
    .sgr-detail-main-image {
        height: 480px;
    }
}

@media (max-width: 700px) {
    .sgr-detail-main-image {
        height: 330px;
        border-radius: 22px;
    }

    .sgr-detail-thumb {
        width: 112px;
        height: 76px;
        min-width: 112px;
        border-radius: 13px;
    }
}
/* ==========================================================================
   PROJE DETAY SAYFASI - GENİŞ MERKEZ GALERİ REVİZYON
   ========================================================================== */

.sgr-project-detail-page .container {
    max-width: 1240px;
}

/* Detay içeriğini merkezli tek kolon yapıyoruz */
.sgr-detail-content-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 34px !important;
    padding: 105px 0 130px 0;
}

/* Ana içerik tam ortaya ve geniş */
.sgr-detail-main {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

/* Başlık/metin alanı geniş ama okunabilir */
.sgr-detail-main > .corp-tagline,
.sgr-detail-main > h2,
.sgr-detail-main > p {
    max-width: 820px;
}

/* Premium galeri genişlik */
.sgr-detail-gallery-premium {
    width: 100%;
    margin-top: 46px;
}

/* Büyük görseli genişletiyoruz */
.sgr-detail-main-image {
    width: 100%;
    height: 680px;
    border-radius: 32px;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.09);
}

/* Görsel tam otursun */
.sgr-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Thumbnail şeridi büyük görselin altında tam genişlik */
.sgr-detail-thumb-row {
    width: 100%;
    display: flex;
    gap: 16px;
    margin-top: 20px;
    overflow-x: auto;
    padding: 6px 6px 18px 6px;
    scroll-behavior: smooth;
    justify-content: flex-start;
}

/* Küçük görseller biraz daha premium ve büyük */
.sgr-detail-thumb {
    width: 154px;
    height: 96px;
    min-width: 154px;
    border-radius: 18px;
}

/* Proje bilgi alanı galeriyle aynı genişlikte */
.sgr-detail-sidebar {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
}

/* Bilgi kartları daha oturaklı */
.sgr-detail-info-card,
.sgr-detail-feature-card {
    height: 100%;
    border-radius: 28px;
}

/* Responsive */
@media (max-width: 980px) {
    .sgr-detail-main {
        max-width: 100%;
    }

    .sgr-detail-main-image {
        height: 520px;
    }

    .sgr-detail-sidebar {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .sgr-detail-content-grid {
        padding: 70px 0 90px 0;
    }

    .sgr-detail-main-image {
        height: 340px;
        border-radius: 22px;
    }

    .sgr-detail-thumb {
        width: 118px;
        height: 76px;
        min-width: 118px;
        border-radius: 14px;
    }
}
/* ==========================================================================
   PROJE DETAY - SATIŞ DURUM ETİKETİ
   ========================================================================== */

.sgr-detail-action-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.sgr-detail-action-row .sgr-detail-contact-btn {
    margin-top: 0;
    flex: 1;
}

.sgr-detail-sold-badge {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 116, 139, 0.08);
    border: 1px solid rgba(100, 116, 139, 0.16);
    color: rgba(71, 85, 105, 0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .sgr-detail-action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .sgr-detail-sold-badge {
        width: 100%;
    }
}
/* ==========================================================================
   TRIO / SATIŞA KAPALI DETAY DURUM STİLLERİ
   ========================================================================== */

.sgr-project-detail-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(10, 92, 54, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sgr-project-detail-status.closed {
    background: rgba(100, 116, 139, 0.88);
    color: #ffffff;
}

.sgr-detail-contact-btn.is-disabled {
    background: rgba(100, 116, 139, 0.12);
    color: rgba(71, 85, 105, 0.62);
    border: 1px solid rgba(100, 116, 139, 0.18);
    cursor: not-allowed;
    pointer-events: none;
}
/* ==========================================================================
   PROJE DETAY - ALT PROJELERE DÖN BUTONU
   ========================================================================== */

.sgr-detail-bottom-nav {
    width: 100%;
    max-width: 1120px;
    margin: 18px auto 0 auto;
    display: flex;
    justify-content: center;
}

.sgr-detail-bottom-back {
    min-width: 230px;
    min-height: 58px;
    border: 1px solid rgba(10, 92, 54, 0.18);
    background: rgba(10, 92, 54, 0.045);
    color: var(--accent-green);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sgr-detail-bottom-back span {
    font-size: 18px;
    line-height: 1;
}

.sgr-detail-bottom-back strong {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sgr-detail-bottom-back:hover {
    background: var(--accent-green);
    color: #ffffff;
    border-color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(10, 92, 54, 0.18);
}

@media (max-width: 700px) {
    .sgr-detail-bottom-nav {
        margin-top: 10px;
    }

    .sgr-detail-bottom-back {
        width: 100%;
        min-height: 56px;
    }
}
/* ==========================================================================
   PROJE DETAY - SATIŞ + PROJELERE DÖN YAN YANA
   ========================================================================== */

.sgr-detail-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.sgr-detail-action-row .sgr-detail-contact-btn {
    margin-top: 0;
    width: 100%;
    min-height: 54px;
}

.sgr-detail-return-btn {
    border: 1px solid var(--accent-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
}

.sgr-detail-return-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(10, 92, 54, 0.18);
}

@media (max-width: 700px) {
    .sgr-detail-action-row {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   PROJE DETAY - BUTON PREMIUM HOVER EFEKTİ
   ========================================================================== */

.sgr-detail-action-row .sgr-detail-contact-btn {
    transition: 
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.sgr-detail-action-row .sgr-detail-contact-btn:not(.is-disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(10, 92, 54, 0.22);
}

.sgr-detail-action-row .sgr-detail-contact-btn:not(.is-disabled):active {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(10, 92, 54, 0.16);
}

.sgr-detail-action-row .sgr-detail-contact-btn.is-disabled:hover {
    transform: none;
    box-shadow: none;
}
.sgr-detail-action-row .sgr-detail-contact-btn:not(.is-disabled):hover {
    background: #084b2d;
    border-color: #084b2d;
    color: #ffffff;
}
.sgr-detail-sidebar {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
}

.sgr-detail-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.sgr-detail-action-row .sgr-detail-contact-btn {
    margin-top: 0;
    width: 100%;
    min-height: 54px;
}

.sgr-detail-return-btn {
    border: 1px solid var(--accent-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
}

.sgr-detail-action-row .sgr-detail-contact-btn {
    transition: 
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.sgr-detail-action-row .sgr-detail-contact-btn:not(.is-disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(10, 92, 54, 0.22);
    background: #084b2d;
    border-color: #084b2d;
    color: #ffffff;
}

.sgr-detail-action-row .sgr-detail-contact-btn:not(.is-disabled):active {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(10, 92, 54, 0.16);
}

.sgr-detail-action-row .sgr-detail-contact-btn.is-disabled:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 980px) {
    .sgr-detail-sidebar {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .sgr-detail-action-row {
        grid-template-columns: 1fr;
    }
}