/* ========================================
   SINGLE CENTER PAGE - PROFESSIONAL & CLEAN
   ======================================== */

/* Container */
.center-single-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px 80px 32px;
}

/* Header */
.center-header {
    padding: 40px 0;
    margin-bottom: 40px;
}

.header-content {
    max-width: 100%;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #10C8C5 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s ease;
}

.breadcrumb a:hover {
    color: #0db3b0 !important;
}

.center-header h1 {
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 0 16px 0 !important;
    line-height: 1.3 !important;
}

.region-tag {
    display: inline-block;
    padding: 10px 18px;
    background: #dd9933;
    color: white;
    border-radius: 10px;
    font-size: 14px !important;
    font-weight: 600 !important;
    position: relative;
    box-shadow: 0 2px 8px rgba(221, 153, 51, 0.25);
}

.region-tag::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 12px;
    width: 0;
z-index:-1000;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 0px solid transparent;
    border-top: 20px solid #dd9933;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

/* Two Column Layout */
.center-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: flex-start;
}

/* Main Content */
.center-main {
    min-width: 0;
}

.content-block {
    margin-bottom: 40px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: box-shadow 0.2s ease;
}

.content-block:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Block Title with Icon */
.block-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 0 20px 0 !important;
    padding-bottom: 16px !important;
    border-bottom: 2px solid #dd9933 !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.block-title i {
    color: #10C8C5;
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
}

/* Content */
.block-content {
    color: #374151 !important;
    line-height: 1.7 !important;
    font-size: 15px !important;
}

/* WYSIWYG Content */
.wysiwyg p {
    margin-bottom: 16px !important;
    line-height: 1.7 !important;
}

.wysiwyg ul,
.wysiwyg ol {
    margin: 16px 0 16px 24px !important;
    padding: 0 !important;
}

.wysiwyg li {
    margin-bottom: 10px !important;
    line-height: 1.6 !important;
}

.wysiwyg strong {
    font-weight: 600 !important;
    color: #1f2937 !important;
}

.wysiwyg a {
    color: #10C8C5 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.15s ease;
}

.wysiwyg a:hover {
    color: #0db3b0 !important;
    text-decoration: underline !important;
}

.wysiwyg h3,
.wysiwyg h4 {
    font-weight: 600 !important;
    color: #1f2937 !important;
    margin: 24px 0 12px 0 !important;
}

/* Sidebar - STICKY (FORCING IT WITH NUKES) */
.center-sidebar {
    position: relative !important;
    height: fit-content !important;
}

.sidebar-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 120px !important;
    z-index: 100 !important;
}

/* Contact Box */
.contact-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
}

.box-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 0 24px 0 !important;
}

/* Contact Items */
.contact-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.contact-item:first-of-type {
    padding-top: 0;
}

.contact-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6f9f9;
    border-radius: 8px;
    color: #10C8C5;
}

.item-icon svg,
.item-icon i {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.item-content {
    flex: 1;
    min-width: 0;
}

.item-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af !important;
    margin-bottom: 4px !important;
}

.item-value {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
    line-height: 1.5 !important;
    word-wrap: break-word;
}

.item-value a {
    color: #10C8C5 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.15s ease;
}

.item-value a:hover {
    color: #0db3b0 !important;
}

/* Action Buttons */
.btn-action {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
    margin-top: 12px;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Hover lift effect */
.btn-action:hover {
    transform: translate3d(0, -3px, 0) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Shine effect */
.btn-action::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transition: left 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.btn-action:hover::before {
    left: 100% !important;
}

/* Icon animation */
.btn-action i,
.btn-action svg {
    transition: transform 0.25s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
    will-change: transform !important;
    position: relative !important;
    z-index: 2 !important;
}

.btn-action:hover i,
.btn-action:hover svg {
    transform: translate3d(4px, 0, 0) !important;
}

/* Text stays above shine */
.btn-action span,
.btn-action {
    position: relative !important;
    z-index: 2 !important;
}

.btn-primary {
    background: #10C8C5 !important;
    color: white !important;
}

.btn-secondary {
    background: #dd9933 !important;
    color: white !important;
}

.btn-action svg,
.btn-action i {
    flex-shrink: 0;
}

/* Sites Box */
.sites-box,
.update-profile-box {
    background: #fafbfc;
}

.update-profile-box .box-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.update-profile-box .box-title i {
    color: #dd9933;
    font-size: 18px;
}

.update-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #6b7280 !important;
    margin: 0 0 16px 0 !important;
}

.wysiwyg-compact {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.wysiwyg-compact p {
    margin-bottom: 12px !important;
}

.wysiwyg-compact a {
    color: #10C8C5 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    word-break: break-word;
}

.wysiwyg-compact a:hover {
    text-decoration: underline !important;
}

.wysiwyg-compact ul,
.wysiwyg-compact ol {
    margin: 12px 0 12px 20px !important;
}

.wysiwyg-compact li {
    margin-bottom: 8px !important;
}

/* Update Box */
.update-box {
    background: #fff9f0 !important;
    border: 2px dashed #dd9933 !important;
}

.update-box .box-title {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #dd9933 !important;
}

.update-box .box-title i {
    color: #dd9933 !important;
}

.update-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #6b7280 !important;
    margin: 0 0 16px 0 !important;
}

.btn-update {
    background: #dd9933 !important;
    color: white !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .center-layout {
        grid-template-columns: 1fr 360px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .center-single-container {
        padding: 0 20px 60px 20px;
    }

    .center-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .center-sidebar {
        order: -1;
    }

    .sidebar-sticky {
        position: static;
    }

    .center-header {
        padding: 24px 0;
        margin-bottom: 24px;
    }

    .center-header h1 {
        font-size: 28px !important;
    }

    .content-block {
        padding: 24px;
        margin-bottom: 24px;
    }

    .block-title {
        font-size: 18px !important;
    }

    .contact-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .center-single-container {
        padding: 0 16px 48px 16px;
    }

    .center-header h1 {
        font-size: 24px !important;
    }

    .content-block {
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
    }

    .item-icon {
        width: 36px;
        height: 36px;
    }
}

/* Print */
@media print {
    .breadcrumb,
    .btn-action {
        display: none !important;
    }

    .center-layout {
        grid-template-columns: 1fr;
    }

    .content-block {
        border: none;
        box-shadow: none;
        page-break-inside: avoid;
    }
}