:root {
    /* Brand Colors */
    --color-light-green: #d8edd8;
    --color-dark-green: #07773e;
    --color-black: #000000;
    --color-red: #dd3333;
    --color-white: #ffffff;
    
    /* Extended Palette for Depth */
    --color-bg-light: #f7fbf7;
    --color-text-body: #333333;
    --color-glass-bg: rgba(255, 255, 255, 0.85);
    --color-glass-border: rgba(255, 255, 255, 0.4);
    
    /* Typography */
    --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    
    /* Layout */
    --header-height: 90px;
    --spacing-section: 6rem;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-main);
    color: var(--color-text-body);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
}

button, input, select, textarea {
    font-family: inherit;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--color-black);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; color: var(--color-dark-green); }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.glass-panel {
    background: var(--color-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(7, 119, 62, 0.2);
}

.btn-primary:hover {
    background-color: #065e31;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 119, 62, 0.3);
}

.btn-danger {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-danger:hover {
    background-color: #bb2d2d;
}

/* Language Selector Button */
.cta-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    background: #ffffff;
    border: 1px solid #ddd;
    color: var(--color-black);
    padding: 0.55rem 0.9rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    border-color: var(--color-dark-green);
    color: var(--color-dark-green);
    background: #f0f8f2;
}

/* Discreet Admin Link in Footer */
.subtle-admin-link {
    color: #999999;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.subtle-admin-link:hover {
    color: #555555;
    text-decoration: underline;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-white);
    z-index: 300;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 100%;
    width: auto;
    object-fit: contain; 
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-black);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-dark-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

/* Hero Section */
#hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-dark-green);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--color-light-green);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--color-text-body);
    max-width: 600px;
}

/* About Section */
#about {
    padding: var(--spacing-section) 0;
    background-color: var(--color-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.values-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.value-card {
    background: var(--color-bg-light);
    border-left: 4px solid var(--color-dark-green);
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.value-card:hover { transform: translateX(5px); }
.value-card h4 { color: var(--color-dark-green); margin-bottom: 0.5rem; font-size: 1.2rem; }

/* CEO Profile Section */
.ceo-profile-container {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
}

.ceo-profile-card {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fdf5f5 40%, #fcf0f0 100%);
    border: 1px solid rgba(185, 28, 28, 0.08);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    box-shadow: 0 12px 35px rgba(120, 20, 20, 0.07), 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ceo-profile-card:hover {
    box-shadow: 0 20px 50px rgba(120, 20, 20, 0.14);
    transform: translateY(-4px);
}

.ceo-avatar-wrapper {
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.ceo-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: none;
    box-shadow: 0 14px 35px rgba(100, 20, 20, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-avatar-wrapper:hover .ceo-avatar {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(100, 20, 20, 0.24);
}

.ceo-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1.1rem;
    background: #fbeae8;
    color: #991b1b;
    border: 1px solid rgba(153, 27, 27, 0.15);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 20px;
    text-transform: uppercase;
}

.ceo-info {
    flex: 1;
}

.ceo-name {
    font-size: 1.85rem;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.ceo-bio {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.ceo-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #991b1b;
    transition: all 0.3s ease;
}

.ceo-profile-card:hover .ceo-read-more {
    color: #7f1d1d;
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .ceo-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.8rem;
        gap: 1.8rem;
    }
    
    .ceo-avatar {
        width: 160px;
        height: 160px;
    }
}

/* Services Section */
#services {
    padding: var(--spacing-section) 0;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-light-green) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-dark-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.servi.crm-card:hover {
    transform: translateY(-2px);
}

/* CRM File Upload & Drag-and-Drop Dropzone */
.crm-dropzone-box {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 0.82rem;
    color: #475569;
}

.crm-dropzone-box:hover, .crm-dropzone-box.drag-over {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1d4ed8;
}

.crm-layout.dark-mode .crm-dropzone-box {
    background: #1e293b;
    border-color: #475569;
    color: #cbd5e1;
}

.crm-layout.dark-mode .crm-dropzone-box:hover, 
.crm-layout.dark-mode .crm-dropzone-box.drag-over {
    border-color: #60a5fa;
    background: #1e3a8a;
    color: #ffffff;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(7, 119, 62, 0.15);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card h3 {
    color: var(--color-dark-green);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    min-height: 2.8em;
}

.service-card-action {
    display: inline-flex;
    align-items: center;
    margin-top: 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark-green);
    transition: gap 0.25s ease;
}

.service-card:hover .service-card-action {
    gap: 0.4rem;
}

/* Service Detail Modal Popup */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-dialog {
    background: var(--color-white);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-modal-overlay.active .service-modal-dialog {
    transform: translateY(0) scale(1);
}

.service-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.service-modal-close:hover {
    background: var(--color-dark-green);
    color: var(--color-white);
    transform: rotate(90deg);
}

.service-modal-hero {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.service-modal-body {
    padding: 2rem;
}

.service-modal-title {
    font-size: 1.6rem;
    color: var(--color-dark-green);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-modal-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

.service-modal-features {
    background: var(--color-bg-light);
    border-left: 4px solid var(--color-dark-green);
    padding: 1.2rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.8rem;
}

.service-modal-features h4 {
    color: var(--color-dark-green);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.service-modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-features li {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
}

.service-modal-features li::before {
    content: "✓";
    color: var(--color-dark-green);
    font-weight: bold;
    margin-right: 0.6rem;
}

.service-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
}

/* Consultation Omnichannel Contact Modal Popup */
.consult-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
    padding: 1rem;
}

.consult-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.consult-modal-dialog {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.consult-modal-overlay.active .consult-modal-dialog {
    transform: scale(1);
}

.consult-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: #f0f0f0;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.2s ease;
}

.consult-modal-close:hover {
    background: #e74c3c;
    color: #ffffff;
}

.consult-modal-header h3 {
    font-size: 1.5rem;
    color: var(--color-dark-green);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.consult-modal-header p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.2rem;
}

.consult-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-black);
    margin-bottom: 0.8rem;
}

.consult-fb-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.consult-fb-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    flex-wrap: wrap;
}

.consult-fb-card:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.consult-fb-icon {
    font-size: 1.6rem;
}

.consult-fb-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.consult-fb-info strong {
    font-size: 0.98rem;
    color: #1e293b;
}

.consult-fb-info span {
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 0.15rem;
}

.consult-action-btns {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.consult-btn {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.consult-btn.messenger-btn {
    color: #0084ff;
    background: rgba(0, 132, 255, 0.08);
    border: 1px solid rgba(0, 132, 255, 0.2);
}

.consult-btn.messenger-btn:hover {
    background: #0084ff;
    color: #ffffff;
    border-color: #0084ff;
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.consult-btn.fanpage-btn {
    color: #475569;
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
}

.consult-btn.fanpage-btn:hover {
    background: var(--color-dark-green);
    color: #ffffff;
    border-color: var(--color-dark-green);
    box-shadow: 0 4px 12px rgba(7, 119, 62, 0.3);
}

.consult-phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.consult-phone-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--color-dark-green);
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.consult-phone-card:hover {
    background: var(--color-dark-green);
    color: var(--color-white);
    border-color: var(--color-dark-green);
    box-shadow: 0 4px 14px rgba(7, 119, 62, 0.25);
}

.phone-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.consult-phone-card strong {
    font-size: 1.05rem;
    margin-top: 0.2rem;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.92rem;
    transition: border-color 0.2s ease;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
    outline: none;
    border-color: var(--color-dark-green);
    box-shadow: 0 0 0 3px rgba(7, 119, 62, 0.12);
}

/* Destinations Section & Carousel */
#destinations {
    padding: var(--spacing-section) 0;
    background-color: var(--color-white);
    position: relative;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
}

.destinations-carousel-container {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}

.destinations-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.destination-item {
    position: relative;
    flex: 0 0 calc((100% - 3rem) / 3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

@media (max-width: 992px) {
    .destination-item {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 640px) {
    .destination-item {
        flex: 0 0 100%;
    }
}

.destination-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(7, 119, 62, 0.2);
}

.destination-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.destination-item:hover img {
    transform: scale(1.06);
}

.destination-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    color: var(--color-white);
    padding: 2.5rem 1.5rem 1.25rem;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.destination-subtext {
    font-size: 0.85rem;
    font-weight: 400;
    color: #e0e0e0;
}

/* Carousel Control Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-dark-green);
    border: 1px solid rgba(7, 119, 62, 0.25);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.25s ease;
}

.carousel-btn:hover {
    background: var(--color-dark-green);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(7, 119, 62, 0.35);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.8rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-dark-green);
    width: 26px;
    border-radius: 8px;
}

/* Success Stories Carousel */
#success {
    padding: var(--spacing-section) 0;
    background-color: var(--color-black);
    color: var(--color-white);
    position: relative;
}

#success h2 { color: var(--color-light-green); }

.success-carousel-container {
    overflow: hidden;
    width: 100%;
    border-radius: 14px;
    padding: 0.5rem 0;
}

.success-track {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 1.5rem) / 2);
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

@media (max-width: 768px) {
    .success-track {
        grid-auto-columns: 100%;
    }
}

.success-item {
    position: relative;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 36px rgba(46, 204, 113, 0.25);
    border-color: rgba(46, 204, 113, 0.5);
}

.success-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    background-color: #0d0d0d;
    transition: transform 0.4s ease;
}

.success-item:hover img {
    transform: scale(1.04);
}

.success-item-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 0 12px rgba(255, 255, 255, 0.25);
}

.success-item-zoom-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.success-item:hover .success-item-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 36px rgba(7, 119, 62, 0.5), inset 0 0 16px rgba(255, 255, 255, 0.4);
}

/* Celebrating Success Lightbox Overlay */
.success-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.success-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.success-lightbox-img {
    max-width: 86vw;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(46, 204, 113, 0.2);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background: #0a0a0a;
}

.success-lightbox-overlay.active .success-lightbox-img {
    transform: scale(1);
}

.success-lightbox-caption {
    margin-top: 1.2rem;
    color: #f0f0f0;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.success-lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    transition: all 0.25s ease;
    user-select: none;
    backdrop-filter: blur(4px);
}

.success-lightbox-btn:hover {
    background: var(--color-light-green);
    color: var(--color-black);
    border-color: var(--color-light-green);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 24px rgba(46, 204, 113, 0.6);
}

.success-lightbox-btn.prev { left: -75px; }
.success-lightbox-btn.next { right: -75px; }

@media (max-width: 850px) {
    .success-lightbox-btn.prev { left: 10px; }
    .success-lightbox-btn.next { right: 10px; }
}

.success-lightbox-close {
    position: absolute;
    top: -55px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.success-lightbox-close:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
    transform: scale(1.1);
}

/* Blog Styling */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.25rem;
    color: var(--color-dark-green);
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Admin Form Styling */
.admin-form-group {
    margin-bottom: 1.5rem;
}

.admin-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.admin-form-group input, 
.admin-form-group textarea, 
.admin-form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.admin-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Modern Footer */
footer {
    background: linear-gradient(180deg, var(--color-bg-light) 0%, #e6f3ea 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(7, 119, 62, 0.15);
    color: var(--color-text-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    color: var(--color-dark-green);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.footer-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.45rem;
    color: var(--color-dark-green);
    flex-shrink: 0;
}

.footer-col h3:not(:first-child) {
    margin-top: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a {
    color: #444444;
    transition: all 0.25 ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '›';
    color: var(--color-dark-green);
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-dark-green);
    transform: translateX(3px);
}

.footer-info-block {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-info-block strong {
    color: var(--color-black);
    display: block;
    margin-bottom: 0.2rem;
}

.footer-hotlines {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.footer-hotlines li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.footer-hotline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(7, 119, 62, 0.2);
    color: var(--color-dark-green);
    font-weight: 700;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-hotline-link:hover {
    background: var(--color-dark-green);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(7, 119, 62, 0.25);
    transform: translateY(-2px);
}

.footer-brand-meta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-bottom {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
}

/* Sticky Floating Action Bar (Zalo, Messenger & Back to Top) */
.floating-action-bar {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.floating-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.floating-btn.zalo-btn {
    background: linear-gradient(135deg, #0068FF 0%, #004bbb 100%);
    box-shadow: 0 4px 18px rgba(0, 104, 255, 0.45);
}

.floating-btn.messenger-btn {
    background: linear-gradient(135deg, #0084FF 0%, #a855f7 50%, #00c6ff 100%);
    box-shadow: 0 4px 18px rgba(0, 132, 255, 0.45);
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.08);
}

.floating-btn.zalo-btn:hover {
    box-shadow: 0 8px 24px rgba(0, 104, 255, 0.65);
}

.floating-btn.messenger-btn:hover {
    box-shadow: 0 8px 24px rgba(0, 132, 255, 0.65);
}

/* Tooltip on Hover */
.floating-btn .floating-tooltip {
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.92);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.floating-btn .floating-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(15, 23, 42, 0.92);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse Glow Effect for Zalo & Messenger */
@keyframes floatPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 104, 255, 0.6); }
    70% { box-shadow: 0 0 0 14px rgba(0, 104, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 104, 255, 0); }
}

.floating-btn.zalo-btn.pulse-effect {
    animation: floatPulse 2.5s infinite;
}

/* Sticky Back-to-Top Button */
.back-to-top {
    position: relative;
    bottom: auto;
    right: auto;
    width: 48px;
    height: 48px;
    background-color: var(--color-dark-green);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(7, 119, 62, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #055a2e;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(7, 119, 62, 0.45);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --spacing-section: 4rem;
    }
    .header-content { flex-direction: column; padding: 1rem 0; gap: 1rem; }
    header { height: auto; position: static; }
    body { padding-top: 0; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .destinations-grid { grid-template-columns: 1fr; }
    .glass-panel { padding: 2rem; }
    .values-container { grid-template-columns: 1fr; }
    .cta-container { margin-top: 0.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Modern StarAdmin-Style CRM Dashboard Layout */
.crm-layout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    background-color: #f1f5f9;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

/* Sidebar Color Theme Styles (Left Panel Only) */
.crm-layout.sidebar-navy .crm-sidebar {
    background: #0f172a;
    color: #ffffff;
}
.crm-layout.sidebar-navy .crm-nav-item:hover, 
.crm-layout.sidebar-navy .crm-nav-item.active {
    background: #3b82f6;
    color: #ffffff;
}

.crm-layout.sidebar-indigo .crm-sidebar {
    background: #1e1b4b;
    color: #ffffff;
}
.crm-layout.sidebar-indigo .crm-nav-item:hover, 
.crm-layout.sidebar-indigo .crm-nav-item.active {
    background: #6366f1;
    color: #ffffff;
}

.crm-layout.sidebar-emerald .crm-sidebar {
    background: #064e3b;
    color: #ffffff;
}
.crm-layout.sidebar-emerald .crm-nav-item:hover, 
.crm-layout.sidebar-emerald .crm-nav-item.active {
    background: #10b981;
    color: #ffffff;
}

.crm-layout.sidebar-light .crm-sidebar {
    background: #ffffff;
    color: #0f172a;
    border-right: 1px solid #cbd5e1;
}
.crm-layout.sidebar-light .crm-sidebar-brand span {
    color: #0f172a;
}
.crm-layout.sidebar-light .crm-sidebar-brand img {
    filter: none;
}
.crm-layout.sidebar-light .crm-nav-item {
    color: #475569;
}
.crm-layout.sidebar-light .crm-nav-item:hover, 
.crm-layout.sidebar-light .crm-nav-item.active {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
}

/* Workspace Mode Styles (Right Content Area) */
.crm-layout.dark-mode .crm-main-content {
    background-color: #0b0f19;
    color: #f8fafc;
}

.crm-layout.dark-mode .crm-topbar {
    background: #1e293b;
    border-bottom-color: #334155;
    color: #f8fafc;
}

.crm-layout.dark-mode .crm-topbar-left h2 {
    color: #ffffff;
}

.crm-layout.dark-mode .crm-topbar-left p {
    color: #94a3b8;
}

.crm-layout.dark-mode .crm-search-box {
    background: #0f172a;
    border-color: #334155;
}

.crm-layout.dark-mode .crm-search-box input {
    color: #f8fafc;
}

.crm-layout.dark-mode .glass-panel,
.crm-layout.dark-mode .crm-card,
.crm-layout.dark-mode .crm-kpi-card {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #f8fafc !important;
}

.crm-layout.dark-mode .crm-kpi-info h4,
.crm-layout.dark-mode h3,
.crm-layout.dark-mode h4,
.crm-layout.dark-mode label {
    color: #f8fafc !important;
}

.crm-layout.dark-mode .kpi-number {
    color: #ffffff !important;
}

.crm-layout.dark-mode input[type="text"],
.crm-layout.dark-mode input[type="tel"],
.crm-layout.dark-mode input[type="email"],
.crm-layout.dark-mode input[type="password"],
.crm-layout.dark-mode textarea,
.crm-layout.dark-mode select {
    background-color: #0f172a !important;
    border-color: #334155 !important;
    color: #f8fafc !important;
}

.crm-layout.dark-mode table {
    color: #f8fafc;
}

.crm-layout.dark-mode tr {
    border-bottom-color: #334155 !important;
}

.crm-layout.dark-mode th {
    background: #0f172a !important;
    color: #cbd5e1 !important;
}

.crm-layout.light-mode .crm-main-content {
    background-color: #f1f5f9;
    color: #0f172a;
}

.crm-layout.light-mode .crm-topbar {
    background: #ffffff;
    border-bottom-color: #e2e8f0;
    color: #0f172a;
}

.crm-sidebar {
    width: 270px;
    min-width: 270px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 1rem;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.08);
    z-index: 100;
    transition: background 0.3s ease;
}

.crm-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.crm-sidebar-brand img {
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.crm-sidebar-brand span {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.crm-nav-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.crm-nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.crm-nav-item:hover, .crm-nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateX(4px);
}

.crm-nav-badge {
    margin-left: auto;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-weight: 700;
}

.crm-main-content {
    flex: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.crm-topbar {
    background: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.crm-topbar-left h2 {
    font-size: 1.35rem;
    color: #0f172a;
    font-weight: 700;
}

.crm-topbar-left p {
    font-size: 0.85rem;
    color: #64748b;
}

.crm-topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.crm-search-box {
    position: relative;
    width: 260px;
}

.crm-search-box input {
    width: 100%;
    padding: 0.5rem 0.8rem 0.5rem 2.2rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.crm-search-box input:focus {
    border-color: #07773e;
}

.crm-search-box svg {
    position: absolute;
    left: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.crm-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.crm-kpi-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.crm-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.crm-kpi-info h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 0.3rem;
}

.crm-kpi-info .kpi-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.crm-kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.kpi-bg-green { background: #dcfce7; color: #166534; }
.kpi-bg-blue { background: #dbeafe; color: #1e40af; }
.kpi-bg-yellow { background: #fef9c3; color: #854d0e; }
.kpi-bg-purple { background: #f3e8ff; color: #6b21a8; }

.crm-charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .crm-charts-grid { grid-template-columns: 1fr; }
}

.crm-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.crm-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f1f5f9;
}

.crm-card-header h3 {
    font-size: 1.1rem;
    color: #0f172a;
}

.crm-status-pill {
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-block;
}

.status-new { background: #fef3c7; color: #92400e; }
.status-contacted { background: #dbeafe; color: #1e40af; }
.status-converted { background: #dcfce7; color: #166534; }
.status-closed { background: #fee2e2; color: #991b1b; }

/* ==========================================================================
   MODERN NEWS & MAGAZINE BLOG SCREEN STYLES
   ========================================================================== */

.news-header-section {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 2.2rem 0 1rem 0;
}

.news-top-ribbon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.news-brand-badge {
    background: var(--color-dark-green);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.news-page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0;
}

.news-header-search {
    position: relative;
    width: 260px;
}

.news-header-search input {
    width: 100%;
    padding: 0.5rem 0.8rem 0.5rem 2.2rem;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    font-size: 0.85rem;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.news-header-search input:focus {
    background: #ffffff;
    border-color: var(--color-dark-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(7, 119, 62, 0.12);
}

.news-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.news-category-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    overflow-x: auto;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #f1f5f9;
    scrollbar-width: none;
}

.news-category-bar::-webkit-scrollbar { display: none; }

.news-cat-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.news-cat-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.news-cat-btn.active {
    background: var(--color-dark-green);
    color: #ffffff;
    border-color: var(--color-dark-green);
    box-shadow: 0 4px 10px rgba(7, 119, 62, 0.2);
}

/* Horizontal Ticker Top Stories Row */
.news-ticker-section {
    padding: 1.5rem 0 0.5rem 0;
}

.news-ticker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .news-ticker-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .news-ticker-grid { grid-template-columns: 1fr; }
}

.news-ticker-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.news-ticker-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    border-color: #cbd5e1;
}

.news-ticker-thumb {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #e2e8f0;
}

.news-ticker-info {
    flex-grow: 1;
    min-width: 0;
}

.news-tag-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark-green);
    background: #e8f5e9;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 0.2rem;
}

.news-ticker-title {
    font-size: 0.83rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 3-Column Asymmetric News Magazine Layout */
/* 3-Column Asymmetric News Magazine Layout */
.news-hero-section {
    padding: 1.5rem 0 2.5rem 0;
}

.news-magazine-grid {
    display: grid;
    grid-template-columns: 300px 1fr 310px;
    gap: 1.6rem;
    align-items: stretch;
}

@media (max-width: 1180px) {
    .news-magazine-grid {
        grid-template-columns: 1fr 1fr;
    }
    .news-col-left {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .news-magazine-grid {
        grid-template-columns: 1fr;
    }
}

.news-col-left, .news-col-center, .news-col-right {
    display: flex;
    flex-direction: column;
}

.news-sec-heading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid #0f172a;
}

.news-sec-heading h3 {
    font-size: 1.02rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0;
}

.heading-accent {
    width: 12px;
    height: 12px;
    background: var(--color-dark-green);
    border-radius: 3px;
    display: inline-block;
}

.heading-accent.accent-gold { background: #d97706; }
.heading-accent.accent-purple { background: #7c3aed; }

/* Left Stack: Latest News (3 Items) */
.news-latest-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    height: 100%;
    flex-grow: 1;
}

.news-latest-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: space-between;
}

.news-latest-item:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.news-latest-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.news-latest-meta {
    font-size: 0.72rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.1rem;
}

.news-latest-title {
    font-size: 0.86rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-latest-excerpt {
    font-size: 0.76rem;
    color: #64748b;
    line-height: 1.38;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Center Hero Column (Main Spotlight + Bottom Subgrid: FX Widget & Portrait Card) */
.news-hero-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.85rem;
    height: 100%;
    flex-grow: 1;
}

.news-hero-main-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1.4;
    justify-content: space-between;
}

.news-hero-main-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.news-hero-cover-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #1e293b;
    flex-shrink: 0;
}

.news-hero-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-hero-main-card:hover .news-hero-cover-img {
    transform: scale(1.03);
}

.news-hero-badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    background: var(--color-dark-green);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.news-hero-body {
    padding: 0.75rem 1.05rem 0.65rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.news-hero-meta {
    font-size: 0.74rem;
    color: #64748b;
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.news-hero-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.32;
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.2px;
}

.news-hero-excerpt {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.48;
    margin-bottom: 0.45rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.45rem;
    border-top: 1px solid #f1f5f9;
}

/* 2-Column Subgrid: Left FX Widget + Right Portrait Card */
.news-hero-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    flex: 1;
    min-height: 220px;
}

@media (max-width: 600px) {
    .news-hero-subgrid {
        grid-template-columns: 1fr;
    }
}

/* Portrait Card (Right slot of Center Subgrid) */
.news-hero-portrait-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    height: 100%;
    min-height: 220px;
    background: #0f172a;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}

.news-hero-portrait-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.news-portrait-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    z-index: 1;
}

.news-hero-portrait-card:hover .news-portrait-bg-img {
    transform: scale(1.05);
}

.news-portrait-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.7) 45%, rgba(15, 23, 42, 0.15) 80%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.news-portrait-content {
    position: relative;
    z-index: 3;
    padding: 0.85rem 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.news-portrait-badge {
    align-self: flex-start;
    background: var(--color-dark-green);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.2px;
}

.news-portrait-title {
    font-size: 0.86rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.32;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.news-portrait-meta {
    font-size: 0.68rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Live Exchange Rate Card (Left slot of Center Subgrid) */
.sidebar-fx-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 220px;
}

.sidebar-fx-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-fx-title {
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--color-dark-green);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.sidebar-fx-live {
    font-size: 0.66rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 1px 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sidebar-fx-live .live-dot {
    width: 5px;
    height: 5px;
    background: #10b981;
    border-radius: 50%;
}

.sidebar-fx-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0.35rem 0;
}

.sidebar-fx-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.22rem 0.45rem;
    border-radius: 6px;
    background: #f8fafc;
    transition: background 0.15s ease;
}

.sidebar-fx-row:hover {
    background: #f1f5f9;
}

.sidebar-fx-currency {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.sidebar-fx-currency .fx-flag {
    font-size: 0.95rem;
    line-height: 1;
}

.sidebar-fx-currency .fx-name-wrap {
    display: flex;
    flex-direction: column;
}

.sidebar-fx-currency .fx-name-wrap strong {
    font-size: 0.74rem;
    color: #0f172a;
    line-height: 1.1;
}

.sidebar-fx-currency .fx-name-wrap span {
    font-size: 0.62rem;
    color: #64748b;
}

.sidebar-fx-val {
    text-align: right;
}

.sidebar-fx-val strong {
    font-size: 0.78rem;
    color: #047857;
    font-weight: 800;
    display: block;
    line-height: 1.1;
}

.sidebar-fx-val .fx-sub {
    font-size: 0.6rem;
    color: #94a3b8;
}

.sidebar-fx-footer {
    font-size: 0.62rem;
    color: #94a3b8;
    text-align: center;
    padding-top: 0.3rem;
    border-top: 1px solid #f1f5f9;
}

/* Right Column Trending Stack (5 Items) */
.news-col-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.news-trending-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.news-trending-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    padding: 0.55rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
}

.news-trending-card:hover {
    transform: translateX(4px);
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.news-trending-num {
    font-size: 1.1rem;
    font-weight: 900;
    color: #cbd5e1;
    line-height: 1;
}

.news-trending-card:hover .news-trending-num {
    color: var(--color-dark-green);
}

.news-trending-info {
    flex-grow: 1;
}

.news-trending-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.15rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-trending-date {
    font-size: 0.68rem;
    color: #64748b;
}

.news-promo-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 1.3rem 1.4rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-promo-badge {
    font-size: 0.68rem;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 0.8px;
    margin-bottom: 0.35rem;
}

.news-promo-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.news-promo-card p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.45;
    margin-bottom: 1rem;
}

/* Secondary Section Categorized News Blocks & Grid */
.news-category-block {
    margin-bottom: 2.8rem;
}

.news-category-block:last-child {
    margin-bottom: 1rem;
}

.news-category-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.news-category-title-group {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.news-cat-icon-badge {
    font-size: 1.4rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f1f5f9;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.news-category-main-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.news-cat-count-badge {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
}

.news-category-desc {
    width: 100%;
    font-size: 0.86rem;
    color: #64748b;
    margin-top: 0.2rem;
    margin-bottom: 0;
}

.news-cat-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-dark-green);
    text-decoration: none;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.news-cat-view-more-btn:hover {
    background: var(--color-dark-green);
    color: #ffffff;
    border-color: var(--color-dark-green);
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.5rem;
}

/* ==========================================================================
   ARTICLE READER POST VIEW STYLES (MATCHING REFERENCE NEWS FORMAT)
   ========================================================================== */

.post-reader-section {
    background: #f8fafc;
    padding: 2.5rem 0 5rem 0;
}

.post-reader-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.post-reader-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .post-reader-grid {
        grid-template-columns: 1fr;
    }
}

.post-main-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.post-top-meta-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.84rem;
    color: #64748b;
}

.post-category-tag {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--color-dark-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-timestamp {
    font-size: 0.82rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.post-article-h1 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.32;
    margin-bottom: 1.2rem;
    letter-spacing: -0.3px;
}

.post-article-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.65;
    margin-bottom: 1.8rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-dark-green);
}

.post-featured-media {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
}

.post-featured-media img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.post-image-caption {
    font-size: 0.86rem;
    font-style: italic;
    color: #64748b;
    text-align: center;
    padding: 0.6rem 1rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

/* Article Sub-Gallery Photo Grid Styles */
.post-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.post-gallery-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.post-gallery-img-wrap {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
}

.post-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-gallery-card:hover .post-gallery-img {
    transform: scale(1.05);
}

.post-gallery-caption {
    font-size: 0.82rem;
    font-style: italic;
    color: #475569;
    padding: 0.6rem 0.8rem;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.post-body-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #1e293b;
    margin-bottom: 2rem;
    white-space: normal;
}

.post-author-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* Sticky Right Sidebar */
.post-sidebar-sticky {
    position: sticky;
    top: 90px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.post-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.post-sidebar-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding-bottom: 0.6rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--color-dark-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-popular-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.post-popular-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    text-decoration: none;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.post-popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-popular-item:hover .post-popular-title {
    color: var(--color-dark-green);
}

.post-popular-thumb {
    width: 86px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #e2e8f0;
}

.post-popular-info {
    flex-grow: 1;
    min-width: 0;
}

.post-popular-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-popular-date {
    font-size: 0.74rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Article Link Embed Box Component */
.article-embed-card {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--color-dark-green);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    overflow: hidden;
}

.article-embed-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7, 119, 62, 0.12);
    border-color: #cbd5e1;
    border-left-color: var(--color-dark-green);
}

.article-embed-thumb-wrap {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
}

.article-embed-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-embed-card:hover .article-embed-thumb {
    transform: scale(1.05);
}

.article-embed-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.article-embed-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-dark-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.article-embed-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.article-embed-card:hover .article-embed-title {
    color: var(--color-dark-green);
}

.article-embed-excerpt {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-embed-footer {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

@media (max-width: 640px) {
    .article-embed-card {
        flex-direction: column;
    }
    .article-embed-thumb-wrap {
        width: 100%;
        height: 160px;
    }
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08) !important;
}

.blog-card:hover img {
    transform: scale(1.05);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Dedicated CEO Profile Page (ceo-profile.html) */
.ceo-hero-section {
    padding: 3.5rem 0 2rem 0;
}

.ceo-hero-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdf5f5 40%, #fcf0f0 100%);
    border: 1px solid rgba(185, 28, 28, 0.12);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 0 16px 40px rgba(120, 20, 20, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-start;
    gap: 3.5rem;
}

.ceo-hero-avatar-wrap {
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.ceo-hero-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 16px 40px rgba(100, 20, 20, 0.22);
    border: 4px solid #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-hero-avatar-wrap:hover .ceo-hero-avatar {
    transform: scale(1.03);
    box-shadow: 0 22px 50px rgba(100, 20, 20, 0.28);
}

.ceo-badge-glow {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1.2rem;
    background: #07773e;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(7, 119, 62, 0.25);
}

.ceo-hero-details {
    flex: 1;
}

.ceo-hero-tag {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: #fbeae8;
    color: #991b1b;
    border: 1px solid rgba(153, 27, 27, 0.15);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.ceo-hero-name {
    font-size: 2.3rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: 0.03em;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.ceo-quote-card {
    background: #ffffff;
    border-left: 4px solid #991b1b;
    border-radius: 14px;
    padding: 1.2rem 1.6rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(153, 27, 27, 0.18);
    position: absolute;
    top: 0.3rem;
    left: 0.8rem;
}

.quote-text {
    font-size: 1.12rem;
    font-weight: 700;
    color: #7f1d1d;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.ceo-hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ceo-stat-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ceo-stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    border-color: #cbd5e1;
}

.stat-number {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    color: #07773e;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 0.3rem;
}

/* CEO Letter Panel */
.ceo-letter-section, .ceo-timeline-section {
    margin-top: 2rem;
}

.ceo-content-panel {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.panel-header-ribbon {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
    color: #07773e;
}

.panel-header-ribbon h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.ceo-letter-body p {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.ceo-signature-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #cbd5e1;
}

.sig-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.sig-title {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
}

/* Core Values Section */
.ceo-values-section {
    margin-top: 3.5rem;
}

.ceo-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.ceo-value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(7, 119, 62, 0.12);
    border-color: rgba(7, 119, 62, 0.3);
}

.val-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #f0fdf4;
    border: 1px solid rgba(7, 119, 62, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 12px rgba(7, 119, 62, 0.08);
}

.ceo-value-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.ceo-value-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Timeline */
.ceo-timeline-wrapper {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.ceo-timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 4.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e2e8f0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-year {
    width: 4rem;
    font-size: 1.15rem;
    font-weight: 900;
    color: #07773e;
    text-align: right;
    flex-shrink: 0;
    padding-top: 0.2rem;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #07773e;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(7, 119, 62, 0.2);
    flex-shrink: 0;
    margin-top: 0.35rem;
    z-index: 1;
}

.timeline-card {
    flex: 1;
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.4rem 1.8rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease;
}

.timeline-item:hover .timeline-card {
    transform: translateX(4px);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.timeline-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.timeline-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Partner Section */
.ceo-partner-section {
    margin-top: 3.5rem;
}

.ceo-partner-card {
    background: linear-gradient(135deg, #07773e 0%, #05502a 100%);
    border-radius: 28px;
    padding: 3.5rem;
    color: #ffffff !important;
    text-align: center;
    box-shadow: 0 16px 40px rgba(7, 119, 62, 0.25);
}

.partner-badge {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.ceo-partner-card h2 {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ceo-partner-card p {
    max-width: 750px;
    margin: 0 auto 2rem auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f1f5f9 !important;
}

.ceo-partner-card .btn-primary {
    background: #ffffff !important;
    color: #07773e !important;
    font-weight: 800 !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
    padding: 0.8rem 2rem !important;
}

.ceo-partner-card .btn-primary:hover {
    background: #f8fafc !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 992px) {
    .ceo-hero-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.5rem 1.8rem;
    }
    .ceo-hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ceo-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ceo-hero-stats-grid {
        grid-template-columns: 1fr;
    }
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    .ceo-timeline-wrapper::before {
        left: 0.5rem;
    }
    .timeline-year {
        text-align: left;
        width: auto;
    }
}



