/* ============================================
   HANKOOK 365 - KAMPANYALAR PAGE STYLES
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --hk-orange: #F26522;
    --hk-orange-hover: #d9571b;
    --hk-orange-light: #FFF4ED;
    --hk-dark: #1A1A1A;
    --hk-dark-2: #2D2D2D;
    --hk-gray-900: #333333;
    --hk-gray-700: #555555;
    --hk-gray-600: #666666;
    --hk-gray-500: #888888;
    --hk-gray-400: #AAAAAA;
    --hk-gray-300: #CCCCCC;
    --hk-gray-200: #E5E5E5;
    --hk-gray-100: #F5F5F5;
    --hk-gray-50: #FAFAFA;
    --hk-white: #FFFFFF;
    --hk-green: #4CAF50;
    --hk-border: #E8E8E8;
    --hk-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --hk-shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.1);
    --hk-radius: 12px;
    --hk-radius-sm: 8px;
    --hk-radius-xs: 6px;
    --hk-transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--hk-gray-900);
    background-color: var(--hk-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--hk-transition);
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background-color: var(--hk-dark);
    color: var(--hk-white);
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1060;
}

.top-bar .topbar-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 400;
}

/* Topbar Dropdown */
.topbar-dropdown-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--hk-white);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--hk-transition);
}

.topbar-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.topbar-dropdown-btn i.bi-chevron-down {
    font-size: 9px;
    opacity: 0.6;
}

.topbar-flag {
    width: 20px !important;
    line-height: 14px !important;
    border-radius: 2px;
    flex-shrink: 0;
}

.topbar-dropdown-menu {
    background: var(--hk-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 6px;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin-top: 4px !important;
    z-index: 1070;
}

.topbar-dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--hk-transition);
}

.topbar-dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--hk-white);
}

.topbar-dropdown-menu .dropdown-item.active,
.topbar-dropdown-menu .dropdown-item:active {
    background: rgba(242, 101, 34, 0.2);
    color: var(--hk-orange);
    font-weight: 600;
}

/* ---------- MAIN NAVIGATION ---------- */
.main-navbar {
    background-color: var(--hk-white);
    padding: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navbar .navbar-brand {
    padding: 12px 0;
    margin-right: 24px;
}

.main-navbar .navbar-brand img {
    height: 32px;
}

.main-navbar .navbar-brand .brand-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-left: 2px;
}

.main-navbar .navbar-brand .brand-365 {
    font-size: 22px;
    font-weight: 800;
    color: var(--hk-orange);
}

.main-navbar .nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--hk-gray-700) !important;
    padding: 20px 12px !important;
    position: relative;
    white-space: nowrap;
    letter-spacing: -0.1px;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--hk-orange) !important;
}

.main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background-color: var(--hk-orange);
    border-radius: 2px 2px 0 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-auth {
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: var(--hk-radius-xs);
    border: 1.5px solid var(--hk-dark);
    color: var(--hk-dark);
    background: transparent;
    transition: var(--hk-transition);
    white-space: nowrap;
}

.btn-auth:hover {
    background-color: var(--hk-dark);
    color: var(--hk-white);
}

.btn-apply {
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: var(--hk-radius-xs);
    background-color: var(--hk-orange);
    color: var(--hk-white);
    border: 1.5px solid var(--hk-orange);
    transition: var(--hk-transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-apply:hover {
    background-color: var(--hk-orange-hover);
    border-color: var(--hk-orange-hover);
    color: var(--hk-white);
    transform: translateX(2px);
}

.btn-apply i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-apply:hover i {
    transform: translateX(3px);
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb-section {
    padding: 24px 0 0;
}

.breadcrumb-section .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumb-section .breadcrumb-item a {
    color: var(--hk-gray-500);
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: var(--hk-orange);
}

.breadcrumb-section .breadcrumb-item.active {
    color: var(--hk-gray-700);
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--hk-gray-400);
    font-size: 14px;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
    padding: 16px 0 32px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 14px;
    color: var(--hk-gray-600);
    max-width: 500px;
    line-height: 1.7;
}

/* ---------- CAMPAIGN TABS ---------- */
.campaign-tabs {
    border-bottom: 1.5px solid var(--hk-gray-200);
    margin-bottom: 32px;
}

.campaign-tabs .nav-tabs {
    border: none;
    gap: 0;
}

.campaign-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    color: var(--hk-gray-500);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 0;
    transition: var(--hk-transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.campaign-tabs .nav-tabs .nav-link i {
    font-size: 16px;
}

.campaign-tabs .nav-tabs .nav-link:hover {
    color: var(--hk-gray-700);
}

.campaign-tabs .nav-tabs .nav-link.active {
    color: var(--hk-orange);
    border-bottom-color: var(--hk-orange);
    font-weight: 600;
}

/* ---------- CAMPAIGN CARD ---------- */
.campaign-card {
    background: var(--hk-white);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    overflow: hidden;
    transition: var(--hk-transition);
    box-shadow: var(--hk-shadow);
}

.campaign-card:hover {
    box-shadow: var(--hk-shadow-lg);
}

.campaign-card-image {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: var(--hk-radius) 0 0 var(--hk-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    overflow: hidden;
}

.campaign-card-image .badge-guarantee {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--hk-orange);
    color: var(--hk-white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.campaign-card-image .tire-img {
    width: 85%;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s ease;
}

.campaign-card:hover .tire-img {
    transform: scale(1.03);
}

.campaign-card-image .damage-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.damage-badge .damage-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--hk-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.damage-badge .damage-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--hk-white);
    line-height: 1;
    letter-spacing: -1px;
}

.damage-badge .damage-sub {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- CAMPAIGN BODY ---------- */
.campaign-card-body {
    padding: 28px 28px;
}

.campaign-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.campaign-card-body .campaign-desc {
    font-size: 13px;
    color: var(--hk-gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Campaign Info Grid */
.campaign-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--hk-gray-200);
    border-bottom: 1px solid var(--hk-gray-200);
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-item .info-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hk-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .info-icon i {
    color: var(--hk-orange);
    font-size: 14px;
}

.info-item .info-label {
    font-size: 11px;
    color: var(--hk-gray-500);
    font-weight: 500;
    margin-bottom: 2px;
}

.info-item .info-value {
    font-size: 12px;
    color: var(--hk-dark);
    font-weight: 600;
    line-height: 1.4;
}

/* Campaign Advantages */
.campaign-advantages {
    margin-bottom: 24px;
}

.campaign-advantages h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 14px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--hk-gray-700);
}

.advantage-item .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-item .check-icon i {
    color: var(--hk-green);
    font-size: 10px;
}

/* Campaign Actions */
.campaign-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--hk-gray-200);
}

.btn-details {
    font-size: 13px;
    font-weight: 600;
    color: var(--hk-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--hk-transition);
}

.btn-details:hover {
    color: var(--hk-orange-hover);
}

.btn-details i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-details:hover i {
    transform: translateX(4px);
}

.btn-apply-main {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--hk-radius-xs);
    background-color: var(--hk-orange);
    color: var(--hk-white);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--hk-transition);
    cursor: pointer;
}

.btn-apply-main:hover {
    background-color: var(--hk-orange-hover);
    color: var(--hk-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3);
}

.btn-apply-main i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-apply-main:hover i {
    transform: translateX(3px);
}

/* ---------- SIDEBAR ---------- */
.sidebar-card {
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 6px;
}

.sidebar-card .sidebar-desc {
    font-size: 13px;
    color: var(--hk-gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-step {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.sidebar-step:last-child {
    margin-bottom: 0;
}

.sidebar-step .step-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hk-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-step .step-icon i {
    color: var(--hk-orange);
    font-size: 18px;
}

.sidebar-step .step-content h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 2px;
}

.sidebar-step .step-content p {
    font-size: 12px;
    color: var(--hk-gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Sidebar FAQ Card */
.sidebar-faq {
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-faq .faq-content {
    flex: 1;
}

.sidebar-faq .faq-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 6px;
}

.sidebar-faq .faq-content p {
    font-size: 12px;
    color: var(--hk-gray-600);
    margin-bottom: 12px;
    line-height: 1.5;
}

.sidebar-faq .faq-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-support {
    font-size: 12px;
    font-weight: 600;
    color: var(--hk-dark);
    border: 1.5px solid var(--hk-dark);
    border-radius: var(--hk-radius-xs);
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--hk-white);
    transition: var(--hk-transition);
}

.btn-support:hover {
    background-color: var(--hk-dark);
    color: var(--hk-white);
}

.btn-support i {
    font-size: 10px;
}

/* ---------- NEWSLETTER SECTION ---------- */
.newsletter-section {
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 28px 32px;
    margin: 48px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--hk-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon i {
    color: var(--hk-orange);
    font-size: 22px;
}

.newsletter-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 4px;
}

.newsletter-text p {
    font-size: 13px;
    color: var(--hk-gray-600);
    margin: 0;
}

.btn-newsletter {
    font-size: 13px;
    font-weight: 600;
    color: var(--hk-dark);
    border: 1.5px solid var(--hk-dark);
    border-radius: var(--hk-radius-xs);
    padding: 10px 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hk-white);
    transition: var(--hk-transition);
    white-space: nowrap;
}

.btn-newsletter:hover {
    background-color: var(--hk-dark);
    color: var(--hk-white);
}

.btn-newsletter i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.btn-newsletter:hover i {
    transform: translateX(3px);
}

/* ---------- NAVBAR LOGO ---------- */
.navbar-logo {
    height: 30px;
    width: auto;
}

.brand-365 {
    font-size: 24px;
    font-weight: 800;
    color: var(--hk-orange);
    letter-spacing: -0.5px;
    line-height: 1;
}

/* ---------- FOOTER (DARK) ---------- */
.site-footer {
    background-color: var(--hk-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand .footer-logo {
    height: 28px;
    width: auto;
}

.footer-tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1.5px;
    font-weight: 400;
    font-style: italic;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--hk-transition);
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--hk-orange);
    color: var(--hk-white);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 0;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    transition: var(--hk-transition);
}

.footer-links a:hover {
    color: var(--hk-orange);
}

.footer-copyright {
    text-align: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
    .main-navbar .nav-link {
        font-size: 12px;
        padding: 18px 8px !important;
    }
}

@media (max-width: 991.98px) {
    .main-navbar .navbar-collapse {
        background: var(--hk-white);
        border-top: 1px solid var(--hk-gray-200);
        padding: 16px 0;
    }

    .main-navbar .nav-link {
        padding: 10px 16px !important;
    }

    .main-navbar .nav-link.active::after {
        display: none;
    }

    .nav-actions {
        padding: 12px 16px;
        border-top: 1px solid var(--hk-gray-200);
        margin-top: 8px;
    }

    .campaign-card-image {
        border-radius: var(--hk-radius) var(--hk-radius) 0 0;
        min-height: 280px;
    }

    .campaign-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .top-bar .d-flex {
        flex-wrap: wrap;
        gap: 8px;
    }

    .campaign-tabs .nav-tabs .nav-link {
        font-size: 12px;
        padding: 10px 12px;
    }

    .campaign-card-body {
        padding: 20px;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .campaign-actions {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .newsletter-section {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .newsletter-content {
        flex-direction: column;
    }

    .sidebar-faq {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .page-header p {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .campaign-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .campaign-tabs .nav-tabs .nav-link {
        font-size: 11px;
        padding: 10px 10px;
    }

    .campaign-card-image {
        min-height: 220px;
        padding: 20px;
    }

    .damage-badge .damage-number {
        font-size: 36px;
    }
}

/* ---------- UTILITY ---------- */
.text-orange {
    color: var(--hk-orange) !important;
}

.bg-orange {
    background-color: var(--hk-orange) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--hk-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--hk-gray-300);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hk-gray-400);
}

/* ============================================
   ORTAK BUTONLAR
   ============================================ */
.btn-primary-orange {
    background-color: var(--hk-orange);
    color: white;
    padding: 12px 28px;
    border-radius: var(--hk-radius-xs);
    font-weight: 600;
    font-size: 14px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--hk-transition);
}

.btn-primary-orange:hover {
    background-color: var(--hk-orange-hover);
    color: white;
}

.btn-outline-dark {
    border: 1px solid var(--hk-gray-300);
    color: var(--hk-dark);
    padding: 12px 28px;
    border-radius: var(--hk-radius-xs);
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--hk-transition);
}

.btn-outline-dark:hover {
    background-color: var(--hk-gray-100);
    color: var(--hk-dark);
    border-color: var(--hk-gray-400);
}

.btn-outline-white {
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    padding: 12px 24px;
    border-radius: var(--hk-radius-xs);
    font-weight: 600;
    text-decoration: none;
    transition: var(--hk-transition);
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--hk-dark);
}

.btn-track-sm {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 24px;
    border-radius: var(--hk-radius-xs);
    font-weight: 600;
    background: rgba(0,0,0,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--hk-transition);
}

.btn-track-sm:hover {
    background: rgba(0,0,0,0.5);
    color: white;
}

/* Ortak link stili (turuncu, arrow icon) */
.link-orange {
    color: var(--hk-orange);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--hk-transition);
}

.link-orange:hover {
    color: var(--hk-orange-hover);
}

/* Ortak section başlık */
.section-title {
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 8px;
}

/* ============================================
   INDEX (ANA SAYFA) STİLLERİ
   ============================================ */

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 180px;
    color: var(--hk-white);
    background-color: var(--hk-dark);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 0;
}

.hero-section .container {
    z-index: 1;
}

.hero-subtitle {
    color: var(--hk-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: white;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Feature Bar */
.hero-feature-bar-container {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-feature-bar {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--hk-radius);
    padding: 30px;
    color: white;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    font-size: 24px;
    color: var(--hk-orange);
}

.feature-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.feature-item p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.4;
}

/* Why Hankook Card */
.why-hankook-card {
    background: #F8F9FA;
    border-radius: var(--hk-radius);
    padding: 32px;
}

.why-hankook-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--hk-dark);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--hk-gray-700);
    font-weight: 500;
}

/* Stats Card */
.stats-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 40px;
    box-shadow: var(--hk-shadow);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.stat-icon {
    font-size: 32px;
    color: var(--hk-dark);
}

.stat-item h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: var(--hk-dark);
}

.stat-item p {
    font-size: 13px;
    color: var(--hk-gray-500);
    margin: 0;
}

.campaign-card-horizontal .campaign-card-image {
    min-height: 300px;
}

/* ============================================
   HASAR GARANTİ DETAY SAYFASI STİLLERİ
   ============================================ */

/* Detail Hero */
.detail-hero {
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.detail-hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0) 65%), url('../img/detail-hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.detail-hero .container {
    position: relative;
    z-index: 1;
}

.detail-hero-content {
    padding: 48px 0 60px;
}

.detail-badge {
    display: inline-block;
    background: #E8F0FE;
    color: #0066CC;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.detail-hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.detail-hero-content > p {
    font-size: 16px;
    color: var(--hk-gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 480px;
}

.detail-hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Hero Spacer */
.detail-hero-image-spacer {
    height: 480px;
}

/* Info Bar */
.detail-info-bar {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 28px 32px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    box-shadow: var(--hk-shadow);
}

.detail-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.detail-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hk-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--hk-dark);
    font-size: 18px;
}

.detail-info-item h6 {
    font-size: 11px;
    color: var(--hk-gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-info-item p {
    font-size: 13px;
    font-weight: 600;
    color: var(--hk-dark);
    margin: 0;
    line-height: 1.4;
}

/* Content Section */
.detail-content-section {
    padding: 48px 0 60px;
}

.detail-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--hk-orange);
}

.detail-about p {
    font-size: 13px;
    color: var(--hk-gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Advantage List (ortak) */
.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.advantage-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--hk-gray-700);
    margin-bottom: 12px;
    line-height: 1.5;
}

.advantage-list li i {
    color: var(--hk-orange);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* FAQ Box (ortak) */
.detail-faq-box {
    background: var(--hk-gray-100);
    border-radius: var(--hk-radius);
    padding: 20px;
    border: 1px solid var(--hk-border);
}

.detail-faq-box h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 6px;
}

.detail-faq-box p {
    font-size: 12px;
    color: var(--hk-gray-500);
    margin-bottom: 12px;
    line-height: 1.5;
}

.detail-faq-box .link-support {
    color: var(--hk-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--hk-transition);
}

.detail-faq-box .link-support:hover {
    color: var(--hk-orange);
}

/* Scope Section */
.scope-section {
    margin-bottom: 20px;
}

.scope-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.scope-label.included {
    background: #E8F5E9;
    color: #2E7D32;
}

.scope-label.excluded {
    background: #FFEBEE;
    color: #C62828;
}

.scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scope-list li {
    font-size: 12px;
    color: var(--hk-gray-600);
    padding: 5px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.scope-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.scope-list.included li::before {
    background: #4CAF50;
}

.scope-list.excluded li::before {
    background: #EF5350;
}

/* Rates Table */
.rates-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.rates-table thead th {
    background: var(--hk-orange);
    color: white;
    font-weight: 600;
    padding: 10px 14px;
    font-size: 12px;
}

.rates-table thead th:first-child {
    border-radius: 6px 0 0 0;
}

.rates-table thead th:last-child {
    border-radius: 0 6px 0 0;
    text-align: right;
}

.rates-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--hk-border);
    color: var(--hk-gray-700);
    font-weight: 500;
}

.rates-table tbody td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--hk-dark);
}

.rates-table tbody tr:last-child td {
    border-bottom: none;
}

.rates-table tbody tr:nth-child(even) {
    background: var(--hk-gray-50, #fafafa);
}

.rates-note {
    font-size: 11px;
    color: var(--hk-gray-500);
    margin-top: 12px;
    font-style: italic;
}

/* ============================================
   EK RESPONSIVE KURALLAR
   ============================================ */
@media (max-width: 991.98px) {
    .detail-hero-bg-image {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 280px;
        background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 60%), url('../img/detail-hero-bg.jpg');
        background-position: center;
        background-size: cover;
    }

    .detail-hero-content {
        padding: 32px 0 20px;
        text-align: center;
    }

    .detail-hero-content > p {
        max-width: 100%;
    }

    .detail-hero-actions {
        justify-content: center;
    }

    .detail-hero-image-spacer {
        height: 250px;
    }

    .detail-info-bar {
        margin-top: 0;
    }

    .detail-info-item {
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--hk-border);
    }

    .detail-info-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .detail-hero-content h1 {
        font-size: 28px;
    }

    .detail-content-section .row > div {
        margin-bottom: 32px;
    }
}

/* ============================================
   NASIL BAŞVURULUR DETAY SAYFASI STİLLERİ
   ============================================ */

/* How To Header */
.how-to-header {
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.how-to-header-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0) 55%), url('../img/how-to-hero-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.how-to-header .container {
    position: relative;
    z-index: 1;
}

.how-to-header-content {
    padding: 60px 0 80px;
    position: relative;
    z-index: 2;
}

.how-to-header-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 16px;
}

.how-to-header-content p {
    font-size: 16px;
    color: var(--hk-gray-600);
    line-height: 1.6;
}

/* Hero Spacer */
.how-to-header-image-spacer {
    height: 380px;
}

/* Steps Card */
.steps-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 48px 32px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    box-shadow: var(--hk-shadow);
}

.steps-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--hk-dark);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.steps-card-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--hk-orange);
    margin: 10px auto 0;
    border-radius: 2px;
}

.step-item {
    position: relative;
}

.step-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    z-index: 2;
}

.step-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid var(--hk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hk-gray-700);
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: var(--hk-transition);
}

.step-item:hover .step-icon {
    border-color: var(--hk-orange);
    color: var(--hk-orange);
    box-shadow: 0 8px 20px rgba(242, 101, 34, 0.1);
}

.step-number {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--hk-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.step-desc {
    font-size: 11px;
    color: var(--hk-gray-600);
    line-height: 1.5;
    margin-bottom: 0;
    padding: 0 10px;
}

/* Connective lines for steps on desktop */
@media (min-width: 992px) {
    .step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 45px;
        left: calc(50% + 55px);
        width: calc(100% - 110px);
        height: 2px;
        border-top: 2px dashed #E5E5E5;
        z-index: 1;
    }
    
    .step-item:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 41px;
        left: calc(50% + 55px + calc(100% - 120px));
        width: 8px;
        height: 8px;
        border-top: 2px solid #D5D5D5;
        border-right: 2px solid #D5D5D5;
        transform: rotate(45deg);
        z-index: 1;
    }
}

/* Info Cards Section */
.info-card {
    border-radius: var(--hk-radius);
    padding: 32px;
    border: 1px solid var(--hk-border);
    box-shadow: var(--hk-shadow);
}

.info-card-orange {
    background-color: var(--hk-orange-light, #FFF4ED);
    border-color: #FEE0CE;
}

.info-card-blue {
    background-color: #F4F8FC;
    border-color: #E2ECF6;
}

.info-card-body {
    display: flex;
    gap: 24px;
    align-items: start;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.icon-orange {
    background: #FFFFFF;
    color: var(--hk-orange);
    border: 1.5px solid #FFD0B3;
}

.icon-blue {
    background: #FFFFFF;
    color: #0066CC;
    border: 1.5px solid #C5DBF2;
}

.info-card-content {
    flex-grow: 1;
}

.info-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 16px;
}

.info-card-text {
    font-size: 13px;
    color: var(--hk-gray-600);
    line-height: 1.6;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    font-size: 12px;
    color: var(--hk-gray-700);
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list li i {
    color: var(--hk-orange);
    font-size: 14px;
    line-height: 1.2;
}

.info-card-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* CTA Banner Section */
.cta-banner {
    position: relative;
    background-color: var(--hk-dark);
    color: white;
    padding: 48px;
    border-radius: var(--hk-radius);
    overflow: hidden;
    box-shadow: var(--hk-shadow-lg);
}

.cta-bg-tire {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: 240px;
    height: 240px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.cta-banner h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-banner p {
    font-size: 13px;
    color: var(--hk-gray-400);
    margin-bottom: 0;
}

/* Responsive Rules for How To Page */
@media (max-width: 991.98px) {
    .how-to-header {
        padding: 0;
        position: relative;
    }

    .how-to-header-bg-image {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 250px;
        background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 60%), url('../img/how-to-hero-bg.png');
        background-position: center;
        background-size: cover;
    }
    
    .how-to-header-content {
        padding: 32px 0 20px;
        text-align: center;
    }
    
    .how-to-header-content h1 {
        font-size: 32px;
    }
    
    .how-to-header-image-spacer {
        height: 220px;
    }
    
    .steps-card {
        padding: 32px 20px;
        margin-top: 0;
    }
    
    .steps-card-title {
        margin-bottom: 32px;
    }
    
    .info-card-body {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-banner {
        padding: 32px 24px;
        text-align: center;
    }
    
    .cta-bg-tire {
        display: none;
    }
}

/* ============================================
   BAŞVURU FORMU SAYFASI STİLLERİ
   ============================================ */

/* Form Hero */
.form-hero {
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.form-hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0) 55%), url('../img/detail-hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.form-hero .container {
    position: relative;
    z-index: 1;
}

.form-hero-content {
    padding: 48px 0 52px;
}

.form-hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 12px;
}

.form-hero-content p {
    font-size: 15px;
    color: var(--hk-gray-600);
    margin-bottom: 0;
}

.form-hero-spacer {
    height: 200px;
}

/* Form Steps Progress Bar */
.form-steps-bar {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 20px 32px;
    margin-top: -25px;
    position: relative;
    z-index: 3;
    box-shadow: var(--hk-shadow);
}

.form-step {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.form-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--hk-gray-100);
    color: var(--hk-gray-500);
    border: 1.5px solid var(--hk-border);
    flex-shrink: 0;
    transition: var(--hk-transition);
}

.form-step-number.active {
    background: var(--hk-orange);
    color: white;
    border-color: var(--hk-orange);
    box-shadow: 0 3px 8px rgba(242, 101, 34, 0.3);
}

.form-step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--hk-gray-500);
}

.form-step.active .form-step-label {
    color: var(--hk-dark);
}

.form-step-line {
    flex-grow: 1;
    height: 1.5px;
    background: var(--hk-border);
    margin: 0 16px;
}

/* Form Card */
.form-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 32px;
    box-shadow: var(--hk-shadow);
}

.form-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hk-border);
}

.form-card .form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--hk-gray-700);
    margin-bottom: 6px;
}

.form-card .form-control,
.form-card .form-select {
    font-size: 13px;
    padding: 10px 14px;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius-xs);
    color: var(--hk-dark);
    transition: var(--hk-transition);
}

.form-card .form-control:focus,
.form-card .form-select:focus {
    border-color: var(--hk-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.form-card .form-control::placeholder {
    color: var(--hk-gray-400);
}

.form-card textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Form Info Note */
.form-info-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius-xs);
    font-size: 12px;
    color: var(--hk-gray-600);
}

.form-info-note i {
    font-size: 16px;
    color: var(--hk-gray-500);
    flex-shrink: 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--hk-border);
}

/* Sidebar Cards */
.sidebar-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 28px;
    box-shadow: var(--hk-shadow);
}

.sidebar-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 8px;
}

.sidebar-card-subtitle {
    font-size: 12px;
    color: var(--hk-gray-500);
    margin-bottom: 20px;
}

.sidebar-card-text {
    font-size: 13px;
    color: var(--hk-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Sidebar Steps List */
.sidebar-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-steps-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--hk-radius-xs);
    font-size: 13px;
    font-weight: 500;
    color: var(--hk-gray-600);
    margin-bottom: 4px;
    transition: var(--hk-transition);
}

.sidebar-steps-list li.active {
    background: var(--hk-orange-light);
    color: var(--hk-orange);
    font-weight: 700;
}

.sidebar-step-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--hk-gray-100);
    color: var(--hk-gray-500);
    border: 1px solid var(--hk-border);
    flex-shrink: 0;
    transition: var(--hk-transition);
}

.sidebar-step-icon.active {
    background: var(--hk-orange);
    color: white;
    border-color: var(--hk-orange);
}

/* Sidebar Help Card */
.sidebar-card-help {
    background: var(--hk-gray-50);
    border-color: var(--hk-border);
}

/* Responsive Rules for Form Page */
@media (max-width: 991.98px) {
    .form-hero-bg-image {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 180px;
        background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 60%), url('../img/detail-hero-bg.jpg');
        background-position: center;
        background-size: cover;
    }

    .form-hero-content {
        padding: 32px 0 20px;
        text-align: center;
    }

    .form-hero-content h1 {
        font-size: 28px;
    }

    .form-hero-spacer {
        height: 160px;
    }

    .form-steps-bar {
        flex-wrap: wrap;
        gap: 8px;
        padding: 16px 20px;
        margin-top: 0;
    }

    .form-step-line {
        display: none;
    }

    .form-step {
        flex: 0 0 auto;
    }

    .form-step-label {
        display: none;
    }

    .form-card {
        padding: 24px 20px;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .form-actions .btn-primary-orange,
    .form-actions .btn-outline-dark {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ---------- CAMPAIGN TYPE SELECTION ---------- */
.campaign-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--hk-white);
    border: 2px solid var(--hk-border);
    border-radius: 16px;
    padding: 48px 32px;
    transition: all 0.4s ease;
    box-shadow: var(--hk-shadow);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.campaign-type-card:hover {
    border-color: var(--hk-orange);
    box-shadow: 0 8px 32px rgba(242, 101, 34, 0.15);
    transform: translateY(-6px);
    text-decoration: none;
    color: inherit;
}

.campaign-type-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--hk-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--hk-orange);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.campaign-type-card:hover .campaign-type-icon {
    background: var(--hk-orange);
    color: var(--hk-white);
    transform: scale(1.1);
}

.campaign-type-icon.cashback {
    background: #E8F5E9;
    color: #43A047;
}

.campaign-type-card:hover .campaign-type-icon.cashback {
    background: #43A047;
    color: var(--hk-white);
}

.campaign-type-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 12px;
}

.campaign-type-card p {
    font-size: 14px;
    color: var(--hk-gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.campaign-type-btn {
    font-size: 14px;
    font-weight: 700;
    color: var(--hk-orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--hk-transition);
}

.campaign-type-card:hover .campaign-type-btn {
    gap: 12px;
}

.campaign-type-card:hover .campaign-type-btn i {
    transform: translateX(4px);
}

/* ---------- FORM STEP COMPLETED STATES ---------- */
.form-step.completed .form-step-number,
.form-step-number.completed {
    background: var(--hk-green);
    color: white;
    border-color: var(--hk-green);
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.3);
}

.form-step.completed .form-step-label {
    color: var(--hk-green);
}

.sidebar-steps-list li.completed {
    color: var(--hk-green);
}

.sidebar-step-icon.completed {
    background: var(--hk-green);
    color: white;
    border-color: var(--hk-green);
}

/* ---------- FILE UPLOAD AREA ---------- */
.file-upload-area {
    border: 2px dashed var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 40px 24px;
    text-align: center;
    transition: var(--hk-transition);
    cursor: pointer;
    background: var(--hk-gray-50);
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--hk-orange);
    background: var(--hk-orange-light);
}

.file-upload-area.has-file {
    border-color: var(--hk-green);
    background: #E8F5E9;
    padding: 20px 24px;
}

.file-upload-area.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.file-upload-content i {
    font-size: 48px;
    color: var(--hk-gray-400);
}

.file-upload-content p {
    font-size: 13px;
    color: var(--hk-gray-600);
    margin: 0;
}

.file-upload-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.file-upload-preview i {
    font-size: 28px;
    color: var(--hk-green);
}

.file-upload-preview span {
    font-size: 14px;
    font-weight: 600;
    color: var(--hk-dark);
}

.btn-remove-file {
    background: none;
    border: 1px solid var(--hk-gray-300);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--hk-gray-600);
    transition: var(--hk-transition);
    padding: 0;
}

.btn-remove-file:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* ---------- FORM CUSTOM CHECKBOXES ---------- */
.form-check-custom {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius-xs);
    transition: var(--hk-transition);
    flex-wrap: wrap;
}

.form-check-custom:hover {
    border-color: var(--hk-orange);
    background: var(--hk-orange-light);
}

.form-check-custom .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--hk-gray-300);
    border-radius: 4px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    background: white;
    transition: var(--hk-transition);
}

.form-check-custom .form-check-input:checked {
    background: var(--hk-orange);
    border-color: var(--hk-orange);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.form-check-custom .form-check-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-check-label {
    font-size: 13px;
    color: var(--hk-gray-700);
    line-height: 1.6;
    cursor: pointer;
    flex: 1;
}

.form-check-sublink {
    display: block;
    width: 100%;
    font-size: 12px;
    color: var(--hk-orange);
    margin-top: 4px;
    margin-left: 32px;
    text-decoration: underline;
}

.form-check-sublink:hover {
    color: var(--hk-orange-hover);
}

/* ---------- SUCCESS MESSAGE ---------- */
.success-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: successPulse 1.5s ease infinite;
}

.success-icon-wrapper i {
    font-size: 48px;
    color: var(--hk-green);
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.3); }
    50% { box-shadow: 0 0 0 20px rgba(76, 175, 80, 0); }
}

/* ---------- FORM VALIDATION ---------- */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* ---------- LINK ORANGE ---------- */
.link-orange {
    font-size: 13px;
    font-weight: 600;
    color: var(--hk-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--hk-transition);
}

.link-orange:hover {
    color: var(--hk-orange-hover);
    gap: 10px;
}

/* ============================================
   YETKİLİ GİRİŞ SAYFASI STİLLERİ
   ============================================ */

/* Auth Section */
.auth-section {
    min-height: calc(100vh - 200px);
}

/* Visual Panel (Left) */
.auth-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.auth-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.auth-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.85) 60%, rgba(26, 26, 26, 0.95) 100%);
    z-index: 1;
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    padding: 60px 48px;
    color: white;
    width: 100%;
}

.auth-visual-content h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
}

.auth-visual-content > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 420px;
}

/* Auth Features */
.auth-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.auth-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(242, 101, 34, 0.15);
    border: 1px solid rgba(242, 101, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--hk-orange);
    flex-shrink: 0;
}

.auth-feature-item h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.auth-feature-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Form Panel (Right) */
.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    height: 100%;
    background: white;
    padding: 48px;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 420px;
}

.auth-form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 8px;
}

.auth-form-subtitle {
    font-size: 14px;
    color: var(--hk-gray-600);
    margin-bottom: 32px;
}

/* Auth Input Group */
.auth-input-group {
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius-xs);
    overflow: hidden;
    transition: var(--hk-transition);
}

.auth-input-group:focus-within {
    border-color: var(--hk-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.auth-input-group .input-group-text {
    background: white;
    border: none;
    color: var(--hk-gray-400);
    font-size: 16px;
    padding: 10px 14px;
}

.auth-input-group .form-control {
    border: none;
    font-size: 13px;
    padding: 12px 4px;
    box-shadow: none !important;
}

.auth-input-group .form-control::placeholder {
    color: var(--hk-gray-400);
}

.auth-toggle-pw {
    border: none !important;
    background: white !important;
    color: var(--hk-gray-400) !important;
    font-size: 16px;
    padding: 10px 14px;
    box-shadow: none !important;
}

.auth-toggle-pw:hover {
    color: var(--hk-orange) !important;
}

/* Auth Form Label */
.auth-form-panel .form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--hk-gray-700);
    margin-bottom: 6px;
}

/* Remember Me / Forgot */
.auth-form-panel .form-check-label {
    font-size: 12px;
    color: var(--hk-gray-600);
}

.auth-form-panel .form-check-input:checked {
    background-color: var(--hk-orange);
    border-color: var(--hk-orange);
}

.auth-forgot-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--hk-orange);
}

.auth-forgot-link:hover {
    color: var(--hk-orange-hover);
    text-decoration: underline !important;
}

/* Submit Button */
.auth-submit-btn {
    padding: 14px 24px !important;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--hk-radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Divider */
.auth-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--hk-border);
}

.auth-divider span {
    position: relative;
    background: white;
    padding: 0 16px;
    font-size: 12px;
    color: var(--hk-gray-500);
    font-weight: 500;
}

/* Alt Button */
.auth-alt-btn {
    padding: 12px 24px !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--hk-radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* No Account Box */
.auth-no-account {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: 20px;
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius-xs);
}

.auth-no-account-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--hk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--hk-orange);
    flex-shrink: 0;
}

.auth-no-account h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 4px;
}

.auth-no-account p {
    font-size: 12px;
    color: var(--hk-gray-600);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive Rules for Auth Page */
@media (max-width: 991.98px) {
    .auth-visual {
        min-height: 380px;
    }

    .auth-visual-content {
        padding: 40px 24px;
    }

    .auth-visual-content h1 {
        font-size: 28px;
    }

    .auth-form-panel {
        min-height: auto;
        padding: 40px 24px;
    }
}

/* ============================================
   İLETİŞİM SAYFASI STİLLERİ
   ============================================ */

/* Contact Hero */
.contact-hero {
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0) 55%), url('../img/detail-hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    padding: 48px 0 52px;
}

.contact-hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 12px;
}

.contact-hero-content p {
    font-size: 15px;
    color: var(--hk-gray-600);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 0;
}

.contact-hero-spacer {
    height: 200px;
}

/* Contact Cards */
.contact-form-card,
.contact-help-card,
.contact-channels-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 28px;
    box-shadow: var(--hk-shadow);
}

.contact-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 12px;
}

.contact-card-desc {
    font-size: 12px;
    color: var(--hk-gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form-card .form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--hk-gray-700);
    margin-bottom: 6px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    font-size: 13px;
    padding: 10px 14px;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius-xs);
    color: var(--hk-dark);
    transition: var(--hk-transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--hk-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.contact-form-card .form-control::placeholder {
    color: var(--hk-gray-400);
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-required-note {
    font-size: 11px;
    color: var(--hk-gray-500);
    font-style: italic;
}

/* Help Topics List */
.help-topics-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.help-topics-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--hk-border);
    font-size: 13px;
    color: var(--hk-gray-700);
    line-height: 1.5;
}

.help-topics-list li:last-child {
    border-bottom: none;
}

.help-topic-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--hk-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--hk-orange);
    flex-shrink: 0;
}

/* Working Hours Note */
.contact-hours-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius-xs);
}

.contact-hours-note i {
    font-size: 18px;
    color: var(--hk-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-hours-note p {
    font-size: 12px;
    color: var(--hk-gray-600);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Channel Items */
.channel-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--hk-gray-700);
    flex-shrink: 0;
}

.channel-item h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 2px;
}

.channel-item p {
    font-size: 13px;
    font-weight: 600;
    color: var(--hk-dark);
    margin-bottom: 2px;
}

.channel-item span {
    font-size: 11px;
    color: var(--hk-gray-500);
    line-height: 1.5;
}

/* Quick Help Banner */
.quick-help-banner {
    background: var(--hk-orange-light);
    border: 1px solid #FEE0CE;
    border-radius: var(--hk-radius);
    padding: 24px 28px;
}

.quick-help-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #FFD0B3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--hk-orange);
    flex-shrink: 0;
}

.quick-help-banner h5 {
    font-size: 15px;
    font-weight: 800;
    color: var(--hk-dark);
}

.quick-help-banner p {
    font-size: 12px;
    color: var(--hk-gray-600);
}

/* Quick Link Cards */
.quick-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    transition: var(--hk-transition);
    box-shadow: var(--hk-shadow);
    text-decoration: none;
    color: inherit;
}

.quick-link-card:hover {
    border-color: var(--hk-orange);
    box-shadow: 0 4px 16px rgba(242, 101, 34, 0.1);
    transform: translateY(-2px);
}

.quick-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--hk-gray-700);
    flex-shrink: 0;
    transition: var(--hk-transition);
}

.quick-link-card:hover .quick-link-icon {
    background: var(--hk-orange-light);
    color: var(--hk-orange);
    border-color: #FFD0B3;
}

.quick-link-card h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 2px;
}

.quick-link-card span {
    font-size: 11px;
    color: var(--hk-gray-500);
}

.quick-link-card div:nth-child(2) {
    flex-grow: 1;
}

.quick-link-arrow {
    font-size: 14px;
    color: var(--hk-gray-400);
    flex-shrink: 0;
    transition: var(--hk-transition);
}

.quick-link-card:hover .quick-link-arrow {
    color: var(--hk-orange);
    transform: translateX(3px);
}

/* Responsive Rules for Contact Page */
@media (max-width: 991.98px) {
    .contact-hero-bg-image {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 180px;
        background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 60%), url('../img/detail-hero-bg.jpg');
        background-position: center;
        background-size: cover;
    }

    .contact-hero-content {
        padding: 32px 0 20px;
        text-align: center;
    }

    .contact-hero-content h1 {
        font-size: 28px;
    }

    .contact-hero-content p {
        max-width: 100%;
    }

    .contact-hero-spacer {
        height: 160px;
    }

    .quick-help-banner {
        text-align: center;
    }

    .quick-help-banner .d-flex {
        flex-direction: column;
        align-items: center !important;
    }
}

/* ============================================
   SSS SAYFASI STİLLERİ
   ============================================ */

/* FAQ Hero */
.faq-hero {
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.faq-hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0) 55%), url('../img/detail-hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.faq-hero .container {
    position: relative;
    z-index: 1;
}

.faq-hero-content {
    padding: 48px 0 52px;
}

.faq-hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 12px;
}

.faq-hero-content p {
    font-size: 15px;
    color: var(--hk-gray-600);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 0;
}

.faq-hero-spacer {
    height: 200px;
}

/* Category Sidebar */
.faq-categories-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 8px;
    box-shadow: var(--hk-shadow);
}

.faq-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-category-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--hk-radius-xs);
    font-size: 13px;
    font-weight: 500;
    color: var(--hk-gray-600);
    cursor: pointer;
    transition: var(--hk-transition);
    margin-bottom: 2px;
}

.faq-category-list li:hover {
    background: var(--hk-gray-50);
    color: var(--hk-dark);
}

.faq-category-list li.active {
    background: var(--hk-orange-light);
    color: var(--hk-orange);
    font-weight: 700;
}

.faq-category-list li i {
    font-size: 16px;
    flex-shrink: 0;
}

/* FAQ Help Box */
.faq-help-box {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--hk-shadow);
}

.faq-help-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hk-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--hk-orange);
    margin: 0 auto 14px;
}

.faq-help-box h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 6px;
}

.faq-help-box p {
    font-size: 12px;
    color: var(--hk-gray-600);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Outline Orange Button */
.btn-outline-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hk-orange);
    background: transparent;
    border: 1.5px solid var(--hk-orange);
    border-radius: var(--hk-radius-xs);
    cursor: pointer;
    transition: var(--hk-transition);
    text-decoration: none;
}

.btn-outline-orange:hover {
    background: var(--hk-orange);
    color: white;
}

/* FAQ Search Bar */
.faq-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    box-shadow: var(--hk-shadow);
    transition: var(--hk-transition);
}

.faq-search-bar:focus-within {
    border-color: var(--hk-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.faq-search-bar i {
    font-size: 16px;
    color: var(--hk-gray-400);
    flex-shrink: 0;
}

.faq-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    color: var(--hk-dark);
    width: 100%;
}

.faq-search-input::placeholder {
    color: var(--hk-gray-400);
}

/* FAQ Accordion */
.faq-accordion .faq-item {
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius) !important;
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: var(--hk-shadow);
    transition: var(--hk-transition);
}

.faq-accordion .faq-item:hover {
    border-color: #e0e0e0;
}

.faq-accordion .faq-question {
    font-size: 13px;
    font-weight: 700;
    color: var(--hk-dark);
    padding: 18px 22px;
    background: white;
    box-shadow: none !important;
}

.faq-accordion .faq-question:not(.collapsed) {
    color: var(--hk-orange);
    background: white;
}

.faq-accordion .faq-question::after {
    font-size: 12px;
    width: 16px;
    height: 16px;
    background-size: 16px;
}

.faq-accordion .faq-answer {
    font-size: 13px;
    color: var(--hk-gray-600);
    line-height: 1.7;
    padding: 0 22px 20px;
    border-top: 1px solid var(--hk-border);
    padding-top: 16px;
}

/* FAQ Contact Card */
.faq-contact-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 28px;
    box-shadow: var(--hk-shadow);
}

.faq-contact-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 8px;
}

.faq-contact-subtitle {
    font-size: 12px;
    color: var(--hk-gray-500);
    margin-bottom: 24px;
    line-height: 1.5;
}

.faq-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 8px;
}

.faq-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.faq-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--hk-gray-700);
    flex-shrink: 0;
}

.faq-contact-item h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 2px;
}

.faq-contact-item span {
    display: block;
    font-size: 11px;
    color: var(--hk-gray-500);
    line-height: 1.5;
}

/* Responsive Rules for FAQ Page */
@media (max-width: 991.98px) {
    .faq-hero-bg-image {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 180px;
        background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 60%), url('../img/detail-hero-bg.jpg');
        background-position: center;
        background-size: cover;
    }

    .faq-hero-content {
        padding: 32px 0 20px;
        text-align: center;
    }

    .faq-hero-content h1 {
        font-size: 28px;
    }

    .faq-hero-content p {
        max-width: 100%;
    }

    .faq-hero-spacer {
        height: 160px;
    }

    .faq-categories-card {
        display: flex;
        overflow-x: auto;
    }

    .faq-category-list {
        display: flex;
        flex-wrap: nowrap;
        gap: 4px;
        width: 100%;
    }

    .faq-category-list li {
        white-space: nowrap;
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* ============================================
   BAŞVURU TAKİP SAYFASI STİLLERİ
   ============================================ */

/* Tracking Hero */
.tracking-hero {
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.tracking-hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0) 55%), url('../img/detail-hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.tracking-hero .container {
    position: relative;
    z-index: 1;
}

.tracking-hero-content {
    padding: 48px 0 52px;
}

.tracking-hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 12px;
}

.tracking-hero-content p {
    font-size: 15px;
    color: var(--hk-gray-600);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 0;
}

.tracking-hero-spacer {
    height: 200px;
}

/* Tracking Query Card */
.tracking-query-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 28px;
    box-shadow: var(--hk-shadow);
}

.tracking-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 20px;
}

.tracking-query-card .form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--hk-gray-700);
    margin-bottom: 6px;
}

/* Tracking Input Group */
.tracking-input-group {
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius-xs);
    overflow: hidden;
    transition: var(--hk-transition);
}

.tracking-input-group:focus-within {
    border-color: var(--hk-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.tracking-input-group .input-group-text {
    background: white;
    border: none;
    color: var(--hk-gray-400);
    font-size: 16px;
    padding: 10px 14px;
}

.tracking-input-group .form-control {
    border: none;
    font-size: 13px;
    padding: 12px 4px;
    box-shadow: none !important;
}

.tracking-input-group .form-control::placeholder {
    color: var(--hk-gray-400);
}

.tracking-helper-text {
    font-size: 12px;
    color: var(--hk-gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
}

.tracking-helper-text i {
    font-size: 14px;
    flex-shrink: 0;
}

/* Tracking Status Card */
.tracking-status-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 28px;
    box-shadow: var(--hk-shadow);
}

/* Tracking Timeline */
.tracking-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 20px 0 0;
}

.tracking-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.tracking-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--hk-gray-50);
    border: 2px solid var(--hk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--hk-gray-400);
    position: relative;
    z-index: 2;
    transition: var(--hk-transition);
}

.tracking-step-icon.active {
    background: var(--hk-orange);
    border-color: var(--hk-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3);
}

.tracking-step-line {
    position: absolute;
    top: 26px;
    left: calc(50% + 26px);
    right: calc(-50% + 26px);
    height: 2px;
    background: var(--hk-border);
    z-index: 1;
}

.tracking-step-line.active {
    background: var(--hk-orange);
}

.tracking-step-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: var(--hk-orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.tracking-step-label {
    display: block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--hk-gray-600);
}

.tracking-step-desc {
    font-size: 10px;
    color: var(--hk-gray-500);
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.4;
    padding: 0 4px;
}

/* Process Note */
.tracking-process-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius-xs);
    font-size: 12px;
    color: var(--hk-gray-600);
}

.tracking-process-note i {
    font-size: 16px;
    color: var(--hk-orange);
    flex-shrink: 0;
}

/* Email Notification Banner */
.tracking-email-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    background: var(--hk-dark);
    border-radius: var(--hk-radius);
    color: white;
}

.tracking-email-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(242, 101, 34, 0.2);
    border: 1px solid rgba(242, 101, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--hk-orange);
    flex-shrink: 0;
}

.tracking-email-banner h6 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.tracking-email-banner p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Help Card */
.tracking-help-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 28px;
    box-shadow: var(--hk-shadow);
}

.tracking-help-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 20px;
}

.tracking-help-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.tracking-help-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.tracking-help-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hk-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--hk-orange);
    flex-shrink: 0;
}

.tracking-help-item h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 4px;
}

.tracking-help-item p {
    font-size: 11px;
    color: var(--hk-gray-500);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Important Info Card */
.tracking-info-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 28px;
    box-shadow: var(--hk-shadow);
}

.tracking-info-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 16px;
}

.tracking-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tracking-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: var(--hk-gray-600);
    line-height: 1.6;
    margin-bottom: 10px;
}

.tracking-info-list li i {
    font-size: 22px;
    color: var(--hk-gray-400);
    flex-shrink: 0;
    margin-top: -4px;
}

/* Responsive Rules for Tracking Page */
@media (max-width: 991.98px) {
    .tracking-hero-bg-image {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 180px;
        background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 60%), url('../img/detail-hero-bg.jpg');
        background-position: center;
        background-size: cover;
    }

    .tracking-hero-content {
        padding: 32px 0 20px;
        text-align: center;
    }

    .tracking-hero-content h1 {
        font-size: 28px;
    }

    .tracking-hero-content p {
        max-width: 100%;
    }

    .tracking-hero-spacer {
        height: 160px;
    }

    .tracking-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .tracking-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 14px;
        padding: 12px 0;
    }

    .tracking-step-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .tracking-step-line {
        position: absolute;
        top: calc(50% + 21px);
        left: 20px;
        right: auto;
        width: 2px;
        height: calc(100%);
        bottom: auto;
    }

    .tracking-step-desc {
        display: none;
    }

    .tracking-email-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
}

/* ============================================
   KATILIM KOŞULLARI SAYFASI STİLLERİ
   ============================================ */

/* Terms Hero */
.terms-hero {
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.terms-hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0) 55%), url('../img/detail-hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.terms-hero .container {
    position: relative;
    z-index: 1;
}

.terms-hero-content {
    padding: 48px 0 52px;
}

.terms-hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 12px;
}

.terms-hero-content p {
    font-size: 15px;
    color: var(--hk-gray-600);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 0;
}

.terms-hero-spacer {
    height: 200px;
}

/* Terms Info Bar */
.terms-info-bar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 24px;
    background: var(--hk-orange-light);
    border: 1px solid #FEE0CE;
    border-radius: var(--hk-radius);
}

.terms-info-bar i {
    font-size: 20px;
    color: var(--hk-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.terms-info-bar strong {
    font-size: 13px;
    color: var(--hk-dark);
}

.terms-info-bar span {
    font-size: 12px;
    color: var(--hk-gray-600);
}

/* Campaign Card */
.terms-campaign-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    box-shadow: var(--hk-shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Campaign Header */
.terms-campaign-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--hk-border);
}

.terms-campaign-badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.terms-campaign-badge.orange {
    background: var(--hk-orange);
    color: white;
}

.terms-campaign-badge.green {
    background: #2E7D32;
    color: white;
}

.terms-campaign-tire {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    opacity: 0.9;
}

.terms-campaign-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--hk-dark);
    margin-bottom: 8px;
}

.terms-campaign-desc {
    font-size: 12px;
    color: var(--hk-gray-600);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Quick Info Grid */
.terms-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--hk-border);
}

.terms-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    border-right: 1px solid var(--hk-border);
    gap: 6px;
}

.terms-quick-item:last-child {
    border-right: none;
}

.terms-quick-item i {
    font-size: 18px;
    color: var(--hk-orange);
}

.terms-quick-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--hk-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.terms-quick-value {
    font-size: 11px;
    color: var(--hk-gray-600);
    line-height: 1.4;
}

/* Detail Terms List */
.terms-detail-list {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    flex-grow: 1;
}

.terms-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.terms-detail-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.terms-detail-icon.orange {
    background: var(--hk-orange-light);
    color: var(--hk-orange);
}

.terms-detail-icon.green {
    background: #E8F5E9;
    color: #2E7D32;
}

.terms-detail-item h6 {
    font-size: 12px;
    font-weight: 700;
    color: var(--hk-dark);
    margin-bottom: 4px;
}

.terms-detail-item p {
    font-size: 11px;
    color: var(--hk-gray-600);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Campaign Card Footer */
.terms-campaign-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--hk-gray-50);
    border-top: 1px solid var(--hk-border);
    gap: 12px;
    flex-wrap: wrap;
}

.terms-campaign-footer i.bi-info-circle {
    font-size: 14px;
    color: var(--hk-gray-500);
}

.terms-campaign-footer span {
    font-size: 11px;
    color: var(--hk-gray-600);
}

.terms-campaign-footer .link-orange {
    font-size: 12px;
    white-space: nowrap;
}

/* General Terms Section */
.terms-general-card {
    background: white;
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 32px;
    box-shadow: var(--hk-shadow);
}

.terms-general-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--hk-gray-700);
    flex-shrink: 0;
}

.terms-general-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--hk-dark);
}

.terms-general-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-general-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--hk-gray-700);
    line-height: 1.6;
    margin-bottom: 12px;
}

.terms-general-list li i {
    font-size: 16px;
    color: #2E7D32;
    flex-shrink: 0;
    margin-top: 2px;
}

.terms-general-tire {
    width: 160px;
    height: auto;
    opacity: 0.25;
}

/* Responsive Rules for Terms Page */
@media (max-width: 991.98px) {
    .terms-hero-bg-image {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 180px;
        background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 60%), url('../img/detail-hero-bg.jpg');
        background-position: center;
        background-size: cover;
    }

    .terms-hero-content {
        padding: 32px 0 20px;
        text-align: center;
    }

    .terms-hero-content h1 {
        font-size: 28px;
    }

    .terms-hero-content p {
        max-width: 100%;
    }

    .terms-hero-spacer {
        height: 160px;
    }

    .terms-quick-grid {
        grid-template-columns: 1fr;
    }

    .terms-quick-item {
        border-right: none;
        border-bottom: 1px solid var(--hk-border);
    }

    .terms-quick-item:last-child {
        border-bottom: none;
    }

    .terms-detail-list {
        grid-template-columns: 1fr;
        padding: 16px 20px;
    }

    .terms-campaign-footer {
        flex-direction: column;
        text-align: center;
    }

    .terms-general-card {
        padding: 24px 20px;
    }
}
