/* ==========================================================================
   Ae Yazılım - Custom Global Stylesheet (custom.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ÜRÜNLERİMİZ & ÜRÜN KARTLARI (Index.cshtml)
   -------------------------------------------------------------------------- */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(163, 54, 55, 0.15);
    border-color: rgba(163, 54, 55, 0.25);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}

.product-badge-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(30, 36, 44, 0.85);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    font-weight: 500;
    z-index: 2;
}

.product-badge-license-top {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(163, 54, 55, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.product-badge-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, #a33637 0%, #d34849 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(163, 54, 55, 0.35);
    z-index: 2;
    text-align: right;
}

.product-badge-price .price-val {
    font-size: 1.05rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.product-badge-price .price-sub {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.92;
    display: block;
}

.product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e242c;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-title a {
    color: #1e242c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title a:hover {
    color: #a33637;
}

.product-desc {
    color: #666666;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-footer .btn-detail {
    background: #1e242c;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-footer .btn-detail:hover {
    background: #a33637;
    color: #ffffff;
}

.product-footer .btn-zoom {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f6f9;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-footer .btn-zoom:hover {
    background: #a33637;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   2. ÜRÜN DETAY SAYFASI (Detail.cshtml)
   -------------------------------------------------------------------------- */
.product-detail-wrapper {
    padding: 50px 0 80px 0;
    background: #fdfdfd;
    position: relative;
}

.product-detail-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    height: 100%;
    position: relative;
}

.product-detail-img-box {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafbfc;
    min-height: 380px;
}

.product-detail-img-box img {
    max-height: 420px;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-detail-img-box:hover img {
    transform: scale(1.02);
}

.product-detail-info-panel {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-detail-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1e242c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-detail-price-box {
    background: #fcf4f4;
    border-left: 4px solid #a33637;
    padding: 16px 20px;
    border-radius: 6px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.product-detail-price-val {
    color: #a33637;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.product-license-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #1e242c;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.product-license-badge.license-yearly {
    background: linear-gradient(135deg, #1e242c 0%, #343a40 100%);
}

.product-license-badge.license-direct {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
}

.product-license-badge.license-monthly {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
}

.product-detail-desc {
    color: #555555;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-desc-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 35px;
    margin-top: 40px;
}

.product-desc-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e242c;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.btn-contact-custom {
    background-color: #a33637;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-contact-custom:hover {
    background-color: #862a2b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   3. PROJELERİMİZ (Home _ProjectSome.cshtml & Project/Index.cshtml)
   -------------------------------------------------------------------------- */
.home-project-section {
    padding: 70px 0 60px 0;
    background: #fdfdfd;
}

.home-project-card, .project-page-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.home-project-card:hover, .project-page-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(163, 54, 55, 0.15);
    border-color: rgba(163, 54, 55, 0.25);
}

.home-project-img-wrapper, .project-page-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 230px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-project-img-wrapper img, .project-page-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-project-card:hover .home-project-img-wrapper img,
.project-page-card:hover .project-page-img-wrapper img {
    transform: scale(1.06);
}

.home-project-badge-partner, .project-badge-partner {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(30, 36, 44, 0.85);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    font-weight: 500;
    z-index: 2;
}

.home-project-badge-date, .project-badge-date {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(163, 54, 55, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 14px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.home-project-body, .project-page-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-project-title, .project-page-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1e242c;
    margin-bottom: 10px;
    line-height: 1.4;
}

.home-project-title a, .project-page-title a {
    color: #1e242c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-project-title a:hover, .project-page-title a:hover {
    color: #a33637;
}

.home-project-desc, .project-page-desc {
    color: #666666;
    font-size: 0.91rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.home-project-footer, .project-page-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-project-detail, .btn-proj-detail {
    background: #1e242c;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-project-detail:hover, .btn-proj-detail:hover {
    background: #a33637;
    color: #ffffff;
}

.btn-project-icon, .btn-proj-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f6f9;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-project-icon:hover, .btn-proj-icon:hover {
    background: #a33637;
    color: #ffffff;
}

.btn-all-projects-cta {
    background: linear-gradient(135deg, #a33637 0%, #862a2b 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 13px 32px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(163, 54, 55, 0.25);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-all-projects-cta:hover {
    background: linear-gradient(135deg, #862a2b 0%, #681f20 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 54, 55, 0.35);
}

/* --------------------------------------------------------------------------
   4. DUYURULAR (Home _News.cshtml & Duyurular/Index.cshtml)
   -------------------------------------------------------------------------- */
.announcement-section {
    padding: 70px 0 60px 0;
    background: #f8f9fa;
}

.announcement-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    padding: 26px;
}

.announcement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(163, 54, 55, 0.12);
    border-color: rgba(163, 54, 55, 0.2);
}

.announcement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.announcement-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(163, 54, 55, 0.08);
    color: #a33637;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.announcement-tag {
    font-size: 0.75rem;
    color: #888888;
    font-weight: 500;
}

.announcement-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e242c;
    margin-bottom: 12px;
    line-height: 1.45;
}

.announcement-title a {
    color: #1e242c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.announcement-title a:hover {
    color: #a33637;
}

.announcement-excerpt {
    color: #666666;
    font-size: 0.91rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.announcement-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-announcement-read {
    color: #a33637;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.btn-announcement-read:hover {
    color: #862a2b;
    gap: 8px;
}

.announcement-detail-section {
    padding: 50px 0 70px 0;
    background: #fdfdfd;
}

.announcement-detail-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 40px;
}

.announcement-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e242c;
    line-height: 1.35;
    margin-bottom: 20px;
}

.announcement-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.announcement-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #666666;
}

.announcement-meta-item i {
    color: #a33637;
    font-size: 1.1rem;
}

.announcement-content-body {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #3d464d;
}

.announcement-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.btn-back-announcements {
    background: #f4f6f9;
    color: #333333;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-back-announcements:hover {
    background: #a33637;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   5. HAKKIMIZDA & TEKNOLOJİLERİMİZ (_About.cshtml)
   -------------------------------------------------------------------------- */
.home-about-section {
    padding: 80px 0 70px 0;
    background: #ffffff;
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    min-height: 520px;
    background: url('/img/about.jpg') center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 36, 44, 0.1) 0%, rgba(30, 36, 44, 0.85) 100%);
}

.about-image-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.about-image-content h4 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.about-image-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-badge-exp {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(163, 54, 55, 0.95);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(163, 54, 55, 0.3);
}

.about-header-sub {
    color: #a33637;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

.about-header-title {
    font-weight: 800;
    font-size: 2.1rem;
    color: #1e242c;
    line-height: 1.3;
    margin-bottom: 25px;
}

.tech-feature-card {
    background: #fbfcfd;
    border: 1px solid #edf0f2;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    height: calc(100% - 24px);
    display: flex;
    flex-direction: column;
}

.tech-feature-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    border-color: rgba(163, 54, 55, 0.25);
}

.tech-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.tech-card-web .tech-icon-wrapper { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.tech-card-mobile .tech-icon-wrapper { background: rgba(25, 135, 84, 0.1); color: #198754; }
.tech-card-iot .tech-icon-wrapper { background: rgba(255, 193, 7, 0.15); color: #d39e00; }
.tech-card-ai .tech-icon-wrapper { background: rgba(163, 54, 55, 0.1); color: #a33637; }
.tech-card-bio .tech-icon-wrapper { background: rgba(111, 66, 193, 0.1); color: #6f42c1; }
.tech-card-consulting .tech-icon-wrapper { background: rgba(13, 202, 240, 0.12); color: #0dcaf0; }

.tech-feature-card:hover .tech-icon-wrapper {
    transform: scale(1.1);
}

.tech-card-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1e242c;
    margin-bottom: 8px;
}

.tech-card-desc {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* --------------------------------------------------------------------------
   6. REFERANSLAR & ÇÖZÜM ORTAKLARI (_Referance.cshtml)
   -------------------------------------------------------------------------- */
.home-clients-section {
    padding: 70px 0;
    background: #fdfdfd;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.client-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf0f2;
    transition: all 0.3s ease;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(163, 54, 55, 0.12);
    border-color: rgba(163, 54, 55, 0.25);
}

.client-card img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   7. İLETİŞİM ALANI (_Contact.cshtml)
   -------------------------------------------------------------------------- */
.home-contact-section {
    padding: 80px 0 70px 0;
    background: #fbfcfd;
    position: relative;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(163, 54, 55, 0.12);
    border-color: rgba(163, 54, 55, 0.25);
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.card-address .contact-icon-circle { background: rgba(163, 54, 55, 0.1); color: #a33637; }
.card-phone .contact-icon-circle { background: rgba(25, 135, 84, 0.1); color: #198754; }
.card-email .contact-icon-circle { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }

.contact-info-card:hover .contact-icon-circle {
    transform: scale(1.1);
}

.contact-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e242c;
    margin-bottom: 10px;
}

.contact-card-text {
    font-size: 0.92rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-card-text a {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-card-text a:hover {
    color: #a33637;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    min-height: 380px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

.contact-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e242c;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 25px;
}

.btn-send-message {
    background: linear-gradient(135deg, #a33637 0%, #862a2b 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-send-message:hover {
    background: linear-gradient(135deg, #862a2b 0%, #681f20 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(163, 54, 55, 0.3);
}

/* --------------------------------------------------------------------------
   8. KURUMSAL & AR-GE İÇ SAYFALARI (Kurumsal/* & Arge/*)
   -------------------------------------------------------------------------- */
.inner-page-section {
    padding: 55px 0 75px 0;
    background: #fbfcfd;
}

.inner-content-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 40px;
}

.inner-content-body {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #3d464d;
}

.inner-content-body p {
    margin-bottom: 1.4rem;
}

.inner-content-body h1, .inner-content-body h2, .inner-content-body h3, .inner-content-body h4 {
    color: #1e242c;
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
}

.inner-content-body ul, .inner-content-body ol {
    padding-left: 1.4rem;
    margin-bottom: 1.4rem;
}

.inner-content-body li {
    margin-bottom: 0.5rem;
}

.inner-sidebar-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 25px;
}

.inner-sidebar-header {
    background: #fafbfc;
    padding: 18px 22px;
    border-bottom: 1px solid #edf0f2;
    font-weight: 700;
    color: #1e242c;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner-sidebar-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid #f4f6f8;
    transition: all 0.2s ease;
}

.inner-sidebar-menu li:last-child a {
    border-bottom: none;
}

.inner-sidebar-menu li a:hover {
    background: rgba(163, 54, 55, 0.04);
    color: #a33637;
    padding-left: 26px;
}

.inner-sidebar-menu li.active a {
    background: rgba(163, 54, 55, 0.08);
    color: #a33637;
    font-weight: 700;
    border-left: 4px solid #a33637;
}

.sidebar-help-card {
    background: linear-gradient(135deg, #1e242c 0%, #2b333e 100%);
    color: #ffffff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 8px 25px rgba(30, 36, 44, 0.15);
}

.sidebar-help-card h5 {
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.sidebar-help-card p {
    font-size: 0.88rem;
    color: #b0b8c4;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sidebar-help-btn {
    background: #a33637;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.sidebar-help-btn:hover {
    background: #862a2b;
    color: #ffffff;
}
