/* ===========================
   ABOUT PAGES - Premium CSS
   =========================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a3d17 0%, #112d0f 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--color-gold);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.25rem;
    position: relative;
}

/* ===== History Page ===== */
.intro-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--color-gold);
    line-height: 1.8;
    color: #374151;
    font-size: 1.05rem;
}

.intro-card p {
    margin-bottom: 0.75rem;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-left: 3rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-gold), var(--color-primary));
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    background: var(--color-gold);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--color-gold);
    z-index: 2;
}

.timeline-year {
    min-width: 80px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-gold);
    padding-top: 0.25rem;
}

.timeline-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    flex: 1;
    transition: all 0.3s;
}

.timeline-card:hover {
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
    transform: translateX(4px);
}

.timeline-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== Vision Page ===== */
.vision-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(45, 90, 39, 0.1);
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.08);
}

.vision-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.15);
}

.vision-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a3d17;
    line-height: 1.7;
}

.vision-quote-mark {
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: 800;
    line-height: 0;
    vertical-align: -0.25em;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.mission-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.35s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(45, 90, 39, 0.1);
    border-color: var(--color-gold);
}

.mission-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary), #1a5c1e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
}

.mission-text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.35s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid var(--color-gold);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.value-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* ===== Personnel Page ===== */
.personnel-page-container {
    background: var(--color-bg-body);
}

.exec-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a3d17;
    margin-top: 4rem;
    /* Increased from 1rem */
    margin-bottom: 3rem;
    /* Reduced from 10rem - titles shouldn't have huge bottom gaps */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.exec-grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 300px;
    margin: 0 auto 2.5rem;
}

/* ========================================
   กรอบสไตล์ไทย - Thai Ornamental Frames
   ======================================== */

/* ---- Corner Ornaments Base ---- */
.corner-tl,
.corner-tr,
.corner-bl,
.corner-br {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}

/* ===== ผู้อำนวยการ - กรอบทอง Royal Grand ===== */
.thai-frame-gold {
    border: none !important;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #d4af37, #f5d76e, #d4af37, #b8962e, #d4af37) border-box !important;
    border: 4px solid transparent !important;
    box-shadow:
        0 0 0 2px rgba(212, 175, 55, 0.3),
        0 0 0 6px rgba(212, 175, 55, 0.1),
        0 0 0 8px rgba(212, 175, 55, 0.05),
        0 20px 60px rgba(212, 175, 55, 0.15) !important;
    position: relative;
    overflow: visible !important;
}

.thai-frame-gold:hover {
    box-shadow:
        0 0 0 2px rgba(212, 175, 55, 0.5),
        0 0 0 6px rgba(212, 175, 55, 0.2),
        0 0 0 8px rgba(212, 175, 55, 0.1),
        0 0 40px rgba(212, 175, 55, 0.25),
        0 25px 70px rgba(212, 175, 55, 0.2) !important;
}

/* Gold corners - large ornate L-brackets */
.thai-frame-gold .corner-tl,
.thai-frame-gold .corner-tr,
.thai-frame-gold .corner-bl,
.thai-frame-gold .corner-br {
    width: 42px;
    height: 42px;
}

.thai-frame-gold .corner-tl {
    top: 8px;
    left: 8px;
    border-top: 5px solid #d4af37;
    border-left: 5px solid #d4af37;
    border-radius: 6px 0 0 0;
    box-shadow: -2px -2px 0 0 rgba(245, 215, 110, 0.5);
}

.thai-frame-gold .corner-tr {
    top: 8px;
    right: 8px;
    border-top: 5px solid #d4af37;
    border-right: 5px solid #d4af37;
    border-radius: 0 6px 0 0;
    box-shadow: 2px -2px 0 0 rgba(245, 215, 110, 0.5);
}

.thai-frame-gold .corner-bl {
    bottom: 8px;
    left: 8px;
    border-bottom: 5px solid #d4af37;
    border-left: 5px solid #d4af37;
    border-radius: 0 0 0 6px;
    box-shadow: -2px 2px 0 0 rgba(245, 215, 110, 0.5);
}

.thai-frame-gold .corner-br {
    bottom: 8px;
    right: 8px;
    border-bottom: 5px solid #d4af37;
    border-right: 5px solid #d4af37;
    border-radius: 0 0 6px 0;
    box-shadow: 2px 2px 0 0 rgba(245, 215, 110, 0.5);
}

/* Top and bottom diamond ornaments */
.thai-frame-gold::before,
.thai-frame-gold::after {
    content: '❖';
    position: absolute;
    color: #d4af37;
    font-size: 1.3rem;
    z-index: 11;
    text-shadow:
        0 0 10px rgba(212, 175, 55, 0.7),
        0 0 20px rgba(212, 175, 55, 0.3);
    background: white;
    padding: 0 6px;
    line-height: 1;
}

.thai-frame-gold::before {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.thai-frame-gold::after {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== รองผู้อำนวยการ - กรอบเขียว-ทอง Elegant ===== */
.thai-frame-green {
    border: none !important;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #2d5a27, #4a8a3f, #2d5a27, #d4af37, #2d5a27) border-box !important;
    border: 3px solid transparent !important;
    box-shadow:
        0 0 0 2px rgba(45, 90, 39, 0.15),
        0 0 0 5px rgba(45, 90, 39, 0.06),
        0 12px 40px rgba(45, 90, 39, 0.1) !important;
    position: relative;
    overflow: visible !important;
}

.thai-frame-green:hover {
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #d4af37, #f5d76e, #d4af37, #2d5a27, #d4af37) border-box !important;
    box-shadow:
        0 0 0 2px rgba(212, 175, 55, 0.2),
        0 0 0 5px rgba(212, 175, 55, 0.08),
        0 0 25px rgba(212, 175, 55, 0.12),
        0 20px 50px rgba(45, 90, 39, 0.12) !important;
}

/* Green corners - elegant L-brackets with gold */
.thai-frame-green .corner-tl,
.thai-frame-green .corner-tr,
.thai-frame-green .corner-bl,
.thai-frame-green .corner-br {
    width: 32px;
    height: 32px;
}

.thai-frame-green .corner-tl {
    top: 6px;
    left: 6px;
    border-top: 3px solid #d4af37;
    border-left: 3px solid #d4af37;
    border-radius: 4px 0 0 0;
    box-shadow: -1px -1px 0 0 rgba(212, 175, 55, 0.3);
}

.thai-frame-green .corner-tr {
    top: 6px;
    right: 6px;
    border-top: 3px solid #d4af37;
    border-right: 3px solid #d4af37;
    border-radius: 0 4px 0 0;
    box-shadow: 1px -1px 0 0 rgba(212, 175, 55, 0.3);
}

.thai-frame-green .corner-bl {
    bottom: 6px;
    left: 6px;
    border-bottom: 3px solid #d4af37;
    border-left: 3px solid #d4af37;
    border-radius: 0 0 0 4px;
    box-shadow: -1px 1px 0 0 rgba(212, 175, 55, 0.3);
}

.thai-frame-green .corner-br {
    bottom: 6px;
    right: 6px;
    border-bottom: 3px solid #d4af37;
    border-right: 3px solid #d4af37;
    border-radius: 0 0 4px 0;
    box-shadow: 1px 1px 0 0 rgba(212, 175, 55, 0.3);
}

.thai-frame-green::before,
.thai-frame-green::after {
    content: '◆';
    position: absolute;
    color: #d4af37;
    font-size: 0.7rem;
    z-index: 11;
    background: white;
    padding: 0 5px;
    line-height: 1;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

.thai-frame-green::before {
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.thai-frame-green::after {
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.exec-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.exec-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.exec-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.4s;
    position: relative;
}

.exec-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.exec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.12);
}

.exec-card:hover::after {
    transform: scaleX(1);
}

.exec-card-inner {
    text-align: center;
}

.exec-img-box {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    border-bottom: 4px solid var(--color-gold);
    transition: all 0.3s;
}

.exec-card:hover .exec-img-box {
    border-bottom-color: var(--color-primary);
}

.exec-card:hover .exec-img-box img {
    transform: scale(1.03);
}

.exec-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.exec-card-inner .exec-name {
    padding-top: 1.25rem;
}

.exec-name {
    font-size: 1.3rem;
    /* Increased from 1.05rem */
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.exec-role {
    font-size: 1.1rem;
    /* Increased from 0.85rem */
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.exec-dept {
    font-size: 1rem;
    /* Increased from 0.8rem */
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.exec-email {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.2s;
}

.exec-email:hover {
    color: var(--color-primary);
}

/* Staff Section */
.staff-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #374151;
    margin-top: 6rem;
    /* Increased to push it down from the executives above */
    margin-bottom: 3rem;
    /* Reduced from 10rem */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.staff-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 10rem;
    /* Move the 'breathability' here instead of on the title */
}

/* เจ้าหน้าที่ - กรอบฟ้า สไตล์ไทย */
.staff-card {
    background: white;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #93c5fd;
    transition: all 0.3s;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.05), 0 4px 12px rgba(59, 130, 246, 0.06);
    overflow: hidden;
    position: relative;
}

.staff-card:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 12px 30px rgba(59, 130, 246, 0.12);
}

.staff-img-box {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-bottom: 3px solid #60a5fa;
}

.staff-card:hover .staff-img-box {
    border-bottom-color: #2563eb;
}

.staff-card:hover .staff-img-box img {
    transform: scale(1.03);
}

.staff-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.staff-name {
    font-size: 1.2rem;
    /* Increased from 0.95rem */
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.35rem;
    padding: 1.25rem 1rem 0;
}

.staff-dept {
    font-size: 1rem;
    /* Increased from 0.8rem */
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    padding: 0 1rem;
}

.staff-email {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--color-gold);
    text-decoration: none;
    word-break: break-all;
}

.staff-email:hover {
    color: var(--color-primary);
}

/* ===== Contact Page ===== */
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-icon.address {
    background: #dcfce7;
    color: #16a34a;
}

.contact-icon.phone {
    background: #dbeafe;
    color: #2563eb;
}

.contact-icon.email {
    background: #fef3c7;
    color: #d97706;
}

.contact-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.contact-text {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    margin-top: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.form-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--color-primary), #1a5c1e);
    color: white;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.25);
}

/* ================================================
   NEW PREMIUM ABOUT PAGE COMPONENTS
   ================================================ */

/* Content Wrapper */
.about-content-wrapper {
    padding: 2.5rem 0 3rem;
    background: var(--color-bg-body);
}

/* Hero Card */
.about-hero-card {
    background: white;
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 10rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}

.about-hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--color-primary), #1a5c1e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 6px 15px rgba(45, 90, 39, 0.2);
}

.about-hero-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a3d17;
    margin-bottom: 0.15rem;
}

.about-hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.about-hero-body p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
}

/* Section Header */
.about-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-section-badge {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), #b8962e);
    border-radius: 14px;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.about-section-header h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.4rem;
}

.about-section-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Premium Timeline */
.premium-timeline {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
}

.premium-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-gold), var(--color-primary), var(--color-gold));
    border-radius: 10px;
}

.premium-timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.premium-timeline-dot {
    position: absolute;
    left: -4rem;
    top: 0;
    width: 48px;
    height: 48px;
    background: white;
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.premium-timeline-dot span {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-gold);
}

.premium-timeline-dot.current {
    background: linear-gradient(135deg, var(--color-primary), #1a5c1e);
    border-color: var(--color-primary);
}

.premium-timeline-dot.current i {
    color: white;
    font-size: 1rem;
}

.premium-timeline-content {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.premium-timeline-content:hover {
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.08);
    transform: translateX(4px);
}

.premium-timeline-content.highlight {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-color: rgba(45, 90, 39, 0.15);
}

.premium-timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), #b8962e);
    color: white;
    padding: 0.2rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.premium-timeline-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.4rem;
}

.premium-timeline-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Premium Vision Card */
.premium-vision-card {
    background: linear-gradient(135deg, #1a3d17 0%, #112d0f 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(26, 61, 23, 0.15);
}

.premium-vision-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.premium-vision-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.4rem;
    color: var(--color-gold);
}

.premium-vision-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.premium-vision-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    border: none;
    padding: 0;
    font-style: italic;
    position: relative;
}

/* Premium Mission Cards */
.premium-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.premium-mission-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.35s;
}

.premium-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(45, 90, 39, 0.1);
    border-color: var(--color-gold);
}

.premium-mission-num {
    min-width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), #1a5c1e);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.premium-mission-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.35rem;
}

.premium-mission-body p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Premium Value Cards */
.premium-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.premium-value-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.35s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.premium-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.premium-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.premium-value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.4rem;
}

.premium-value-card p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.premium-value-line {
    width: 40px;
    height: 3px;
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== Premium Contact Page ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    align-items: start;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.premium-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.premium-contact-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.premium-contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.premium-contact-body h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.premium-contact-body p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.phone-number {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #16a34a !important;
}

.working-hours {
    font-size: 0.82rem !important;
    color: #9ca3af !important;
    margin-top: 0.25rem !important;
}

.premium-email-link {
    color: var(--color-gold);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.premium-email-link:hover {
    color: var(--color-primary);
}

.premium-map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    margin-top: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* Premium Form */
.premium-form-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.premium-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.premium-form-header i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.premium-form-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.premium-form-header p {
    font-size: 0.85rem;
    color: #9ca3af;
}

.premium-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    display: block;
}

.premium-input-wrap {
    position: relative;
}

.premium-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
}

.premium-input {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
    background: #fafafa;
}

.premium-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
    background: white;
}

.premium-textarea {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
    background: #fafafa;
    resize: vertical;
}

.premium-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
    background: white;
}

.premium-submit-btn {
    background: linear-gradient(135deg, var(--color-primary), #1a5c1e);
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 15px rgba(45, 90, 39, 0.2);
}

.premium-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 90, 39, 0.3);
}

/* ================================================
   NEW V2 ABOUT PAGES (HISTORY & VISION)
   ================================================ */

.v2-page-wrapper {
    padding: 3rem 0;
    background: #f8fafc;
}

/* V2 Headings */
.v2-section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.v2-heading-text {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    display: inline-block;
}

.v2-text-gold {
    color: #d4af37;
}

.v2-text-green {
    color: #15803d;
}

.v2-heading-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

.v2-heading-ornament span {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.v2-heading-ornament i {
    color: #15803d;
    font-size: 0.8rem;
}

/* V2 Hero History */
.v2-history-hero {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.v2-history-content {
    flex: 1;
}

.v2-hero-subtitle {
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.v2-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.v2-hero-title span {
    color: #1a5c1e;
    font-weight: 400;
    font-style: italic;
    background: linear-gradient(135deg, #15803d, #166534);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v2-hero-divider {
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.v2-history-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.v2-history-graphic {
    flex: 0.8;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-graphic-circle1 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    z-index: 1;
}

.v2-graphic-circle2 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px dashed #bbf7d0;
    transform: rotate(45deg);
    z-index: 2;
    top: 20px;
    left: 20px;
}

.v2-graphic-icon {
    font-size: 8rem;
    color: #1a5c1e;
    z-index: 3;
    filter: drop-shadow(0 20px 30px rgba(21, 128, 61, 0.2));
}

/* V2 Alternating Timeline */
.v2-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.v2-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #d4af37, #16a34a, #d4af37);
    transform: translateX(-50%);
    border-radius: 2px;
}

.v2-timeline-event {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.v2-timeline-event.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.v2-timeline-node {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid #d4af37;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.15);
}

.v2-timeline-node.highlight {
    width: 32px;
    height: 32px;
    background: #1a5c1e;
    border-color: #1a5c1e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -4px;
    box-shadow: 0 0 0 8px rgba(26, 92, 30, 0.2);
}

.v2-timeline-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    width: calc(100% - 40px);
    /* Space from center */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s;
}

.v2-timeline-event.left .v2-timeline-card {
    margin-right: 40px;
}

.v2-timeline-event.right .v2-timeline-card {
    margin-left: 40px;
}

.v2-timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.v2-card-year {
    display: inline-block;
    color: #d4af37;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.v2-card-year.highlight-year {
    color: #16a34a;
}

.v2-timeline-card.highlight-card {
    border: 2px solid #16a34a;
    background: #f0fdf4;
}

.v2-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.v2-card-desc {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* V2 Vision Quote */
.v2-vision-quote-container {
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
}

.v2-quote-mark,
.v2-quote-mark-bottom {
    font-size: 6rem;
    color: #fca5a5;
    /* soft placeholder color, will override */
    background: linear-gradient(135deg, #d4af37, #fde047);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    position: absolute;
    z-index: 0;
}

.v2-quote-mark {
    top: 2rem;
    left: 20%;
}

.v2-quote-mark-bottom {
    bottom: 2rem;
    right: 20%;
    transform: rotate(180deg);
}

.v2-vision-box {
    position: relative;
    z-index: 1;
}

.v2-vision-label {
    display: block;
    color: #64748b;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.v2-vision-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #0f172a;
    line-height: 1.5;
    margin: 0;
}

.v2-vision-box h2 span {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #166534, #15803d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin: 0.5rem 0;
}

/* V2 Mission Grid */
.v2-mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.v2-mission-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.4s;
    text-align: center;
}

.v2-mission-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: #f8fafc;
    line-height: 1;
    z-index: 0;
    transition: color 0.4s;
}

.v2-mission-content {
    position: relative;
    z-index: 1;
}

.v2-mission-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.v2-mission-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.v2-mission-hover-ring {
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #d4af37);
    opacity: 0;
    filter: blur(20px);
    transition: all 0.4s;
    z-index: 0;
}

.v2-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.v2-mission-card:hover .v2-mission-number {
    color: #f1f5f9;
}

.v2-mission-card:hover .v2-mission-hover-ring {
    opacity: 0.2;
    bottom: -20px;
}

/* V2 Values Grid */
.v2-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.v2-value-item {
    text-align: center;
}

.v2-val-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.v2-value-item:hover .v2-val-circle {
    transform: scale(1.1);
}

.v2-val-circle.gold {
    background: linear-gradient(135deg, #fbbf24, #d97706);
}

.v2-val-circle.blue {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.v2-val-circle.green {
    background: linear-gradient(135deg, #34d399, #16a34a);
}

.v2-val-circle.red {
    background: linear-gradient(135deg, #f87171, #dc2626);
}

.v2-value-item h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.v2-val-divider {
    width: 30px;
    height: 3px;
    background: #e2e8f0;
    margin: 0 auto 1rem;
    transition: width 0.3s, background 0.3s;
}

.v2-value-item:hover .v2-val-divider {
    width: 50px;
    background: #d4af37;
}

.v2-value-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .v2-history-hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .v2-hero-divider {
        margin: 0 auto 1.5rem;
    }

    .v2-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 3.5rem 0 3rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .premium-mission-grid {
        grid-template-columns: 1fr;
    }

    .premium-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exec-grid-3 {
        grid-template-columns: 1fr;
    }

    .exec-grid-2 {
        grid-template-columns: 1fr;
    }

    .staff-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-vision-card {
        padding: 2.5rem 1.5rem;
    }

    .premium-timeline {
        padding-left: 3.5rem;
    }

    .about-hero-card {
        flex-direction: column;
    }

    /* V2 Reponsive */
    .v2-timeline-line {
        left: 20px;
        transform: none;
    }

    .v2-timeline-event,
    .v2-timeline-event.right {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
    }

    .v2-timeline-event.left .v2-timeline-card,
    .v2-timeline-event.right .v2-timeline-card {
        margin: 0;
        width: 100%;
    }

    .v2-timeline-node {
        left: 20px;
        transform: translateX(-50%);
    }

    .v2-timeline-node.highlight {
        left: 20px;
    }

    .v2-vision-box h2 {
        font-size: 1.6rem;
    }

    .v2-vision-box h2 span {
        font-size: 2.2rem;
    }

    .v2-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .premium-values-grid {
        grid-template-columns: 1fr;
    }

    .staff-grid-3 {
        grid-template-columns: 1fr;
    }

    .v2-mission-grid,
    .v2-values-grid {
        grid-template-columns: 1fr;
    }
}