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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, li {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    letter-spacing: -0.5px;
}

/* GNB */
.gnb-menu {
    display: flex;
    gap: 40px;
}

.gnb-item {
    position: relative;
}

.gnb-link {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.gnb-link:hover {
    color: #2d5016;
}

.gnb-sub {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.gnb-item:hover .gnb-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gnb-sub li a {
    display: block;
    padding: 10px 25px;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.2s;
}

.gnb-sub li a:hover {
    background: #f5f5f5;
    color: #2d5016;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
}

/* Main Content */
main {
    padding-top: 80px;
}

/* Hero */
.hero {
    padding: 160px 20px 100px;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #2d5016;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #2d5016;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #3d6a1f;
    transform: translateY(-2px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1rem;
    color: #666;
}

/* Services */
.services {
    padding: 100px 0;
    background: #fff;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    display: block;
    padding: 40px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}

.service-card:hover {
    background: #fff;
    border-color: #2d5016;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d5016;
    background: rgba(45, 80, 22, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-more {
    font-size: 0.9rem;
    color: #2d5016;
    font-weight: 500;
}

/* About Preview */
.about-preview {
    padding: 100px 0;
    background: #f5f5f5;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #2d5016;
    color: #2d5016;
    font-weight: 500;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #2d5016;
    color: #fff;
}

/* Quick Info */
.quick-info {
    padding: 80px 0;
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2d5016;
}

.info-item ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid #eee;
}

.info-item ul li strong {
    color: #333;
    margin-right: 10px;
}

.info-item p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-item p strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: #1a1a1a;
    color: #aaa;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 0.85rem;
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-copyright {
    text-align: right;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

/* Page Hero (Sub Pages) */
.page-hero {
    padding: 160px 20px 60px;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
    text-align: center;
}

.page-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    color: #666;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: #f9f9f9;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.content-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2d5016;
}

.content-box p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.content-box .highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5016;
    text-align: center;
    padding: 30px;
    background: rgba(45, 80, 22, 0.08);
    border-radius: 12px;
    margin: 30px 0;
}

/* Vision Box */
.vision-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.vision-item {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #2d5016;
}

.vision-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 15px;
}

.vision-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.business-item {
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}

.business-item:hover {
    border-color: #2d5016;
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
    transform: translateY(-3px);
}

.business-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.business-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2d5016;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #2d5016;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #2d5016;
}

.timeline-item .year {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
}

/* Organization Chart */
.org-chart {
    text-align: center;
    margin-top: 40px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.org-box {
    padding: 20px 40px;
    background: #2d5016;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
}

.org-box.sub {
    background: #fff;
    color: #2d5016;
    border: 2px solid #2d5016;
}

.org-box.dept {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    padding: 15px 25px;
    font-size: 0.9rem;
}

.org-connector {
    width: 2px;
    height: 30px;
    background: #2d5016;
    margin: 0 auto;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 20px;
}

.service-detail > p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #2d5016;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Certification List */
.cert-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.cert-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s;
}

.cert-item:hover {
    border-color: #2d5016;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #2d5016;
    font-weight: 700;
}

.cert-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.cert-item p {
    font-size: 0.85rem;
    color: #666;
}

/* Portfolio */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-card {
    padding: 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}

.portfolio-card:hover {
    border-color: #2d5016;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.portfolio-card .badge {
    display: inline-block;
    padding: 5px 12px;
    background: #2d5016;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.portfolio-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.portfolio-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Client List */
.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.client-item {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    transition: all 0.3s;
}

.client-item:hover {
    background: #2d5016;
    color: #fff;
}

/* Support Page */
.support-section {
    padding: 80px 0;
}

.law-list {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.law-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s;
}

.law-item:hover {
    border-color: #2d5016;
    background: #f9fff5;
}

.law-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #2d5016;
    font-weight: 600;
}

.law-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Inquiry Form */
.inquiry-form {
    max-width: 700px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5016;
}

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

.btn-submit {
    display: block;
    width: 100%;
    padding: 18px;
    background: #2d5016;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #3d6a1f;
}

/* News List */
.news-list {
    margin-top: 30px;
}

.news-item {
    display: flex;
    padding: 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.news-item:hover {
    border-color: #2d5016;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.news-date {
    min-width: 100px;
    padding-right: 25px;
    border-right: 1px solid #eee;
    margin-right: 25px;
    text-align: center;
}

.news-date .day {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
    line-height: 1;
}

.news-date .month {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.news-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.news-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-info {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2d5016;
}

.contact-info p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-info p strong {
    color: #333;
    font-weight: 600;
}

.map-placeholder {
    background: #e9e9e9;
    border-radius: 12px;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
}

/* Responsive for Sub Pages */
@media (max-width: 1024px) {
    .vision-box,
    .business-grid,
    .cert-list,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gnb {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 999;
    }

    .gnb.active {
        display: block;
    }

    .gnb-menu {
        flex-direction: column;
        gap: 0;
    }

    .gnb-item {
        border-bottom: 1px solid #eee;
    }

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

    .gnb-link {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
    }

    .gnb-sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        border-radius: 0;
        padding: 10px 0;
        margin-bottom: 10px;
    }

    .gnb-sub li a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 30px;
    }

    .page-hero {
        padding: 120px 20px 50px;
    }

    .page-hero h2 {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-box h3 {
        font-size: 1.5rem;
    }

    .service-features,
    .portfolio-grid,
    .client-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .news-item {
        flex-direction: column;
    }

    .news-date {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 15px;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Map Section Styles */
.map-container {
    margin-top: 30px;
}

.map-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.map-tab {
    padding: 12px 24px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.map-tab:hover {
    background: #eee;
}

.map-tab.active {
    background: #fff;
    border-color: #2d5016;
    color: #2d5016;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-info {
    text-align: center;
    max-width: 400px;
}

.map-icon {
    color: #2d5016;
    margin-bottom: 20px;
}

.map-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 15px;
}

.map-address {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

.map-directions {
    margin-top: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-align: left;
}

.map-directions p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.map-directions p strong {
    color: #333;
}

.map-link {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #2d5016;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
}

.map-link:hover {
    background: #3d6a1f;
    transform: translateY(-2px);
}

/* Law Item Link Styles */
.law-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.law-item a:hover {
    color: #2d5016;
}

.law-item a:hover .law-icon {
    background: #2d5016;
    color: #fff;
}

/* ============================================
   TRENDY PORTFOLIO PAGE STYLES
   ============================================ */

/* Portfolio Hero */
.portfolio-hero {
    padding: 160px 20px 60px;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
}

.portfolio-hero-content {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d5016;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 30px;
}

.portfolio-hero h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.portfolio-hero p {
    font-size: 1.1rem;
    color: #666;
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #2d5016;
    color: #2d5016;
}

.filter-btn.active {
    background: #2d5016;
    border-color: #2d5016;
    color: #fff;
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    padding: 80px 0;
    background: #fff;
}

/* Portfolio Masonry Grid */
.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Portfolio Item */
.portfolio-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.15);
}

.portfolio-item.featured {
    grid-column: span 2;
}

.portfolio-item.featured .portfolio-image {
    height: 350px;
}

/* Portfolio Image */
.portfolio-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f0e0 0%, #d4e4c8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d5016;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.4s;
}

.portfolio-item:hover .portfolio-image-placeholder {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.portfolio-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #2d5016;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Portfolio Content */
.portfolio-content {
    padding: 25px 30px 30px;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.portfolio-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.portfolio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.portfolio-partner {
    font-size: 0.85rem;
    color: #888;
}

.portfolio-partner strong {
    color: #555;
    margin-right: 5px;
}

.portfolio-year {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d5016;
    padding: 5px 12px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 20px;
}

/* Load More Button */
.portfolio-load-more {
    text-align: center;
    margin-top: 60px;
}

.btn-load-more {
    padding: 16px 50px;
    background: transparent;
    border: 2px solid #2d5016;
    color: #2d5016;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: #2d5016;
    color: #fff;
}

/* ============================================
   STATS SECTION (Performance List)
   ============================================ */

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.stats-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    padding: 35px 25px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.15);
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2d5016;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box .stat-number span {
    font-size: 1.5rem;
    color: #5a9030;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Stats Timeline */
.stats-timeline {
    position: relative;
}

.timeline-track {
    position: relative;
    padding-left: 30px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2d5016 0%, #5a9030 100%);
    border-radius: 3px;
}

.stats-timeline .timeline-item {
    position: relative;
    padding-bottom: 35px;
    padding-left: 0;
}

.stats-timeline .timeline-item:last-child {
    padding-bottom: 0;
}

.stats-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #2d5016;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.2);
}

.timeline-year {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: #2d5016;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */

.clients-section {
    padding: 100px 0;
    background: #fff;
}

.clients-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.client-group {
    background: #fafafa;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
}

.client-group:hover {
    background: #f5f8f2;
}

.client-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.client-icon {
    font-size: 1.5rem;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.client-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 15px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.12);
}

.client-logo-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f0e0 0%, #d4e4c8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d5016;
    transition: all 0.3s;
}

.client-logo-item:hover .client-logo-placeholder {
    background: #2d5016;
    color: #fff;
}

.client-logo-item span {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    text-align: center;
}

/* ============================================
   TRENDY SUPPORT PAGE STYLES
   ============================================ */

/* Support Hero */
.support-hero {
    padding: 160px 20px 60px;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
    text-align: center;
}

.support-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d5016;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 30px;
}

.support-hero h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.support-hero p {
    font-size: 1.1rem;
    color: #666;
}

/* Law Section */
.law-section {
    padding: 80px 0;
    background: #fff;
}

.law-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.law-category-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.law-category-card:hover {
    background: #fff;
    border-color: #2d5016;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
}

.law-category-card.highlight {
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
}

.law-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.law-category-icon {
    font-size: 1.8rem;
}

.law-category-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.law-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.law-links li a:hover {
    background: #2d5016;
    transform: translateX(5px);
}

.law-link-title {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.law-links li a:hover .law-link-title {
    color: #fff;
}

.law-link-arrow {
    font-size: 1.1rem;
    color: #2d5016;
    font-weight: 600;
    transition: all 0.3s;
}

.law-links li a:hover .law-link-arrow {
    color: #fff;
}

/* Inquiry Section */
.inquiry-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
}

.inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.inquiry-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.inquiry-info > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.inquiry-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inquiry-contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s;
}

.inquiry-contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.1);
}

.inquiry-contact-card .contact-icon {
    font-size: 1.5rem;
}

.inquiry-contact-card .contact-detail {
    display: flex;
    flex-direction: column;
}

.inquiry-contact-card .contact-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.inquiry-contact-card .contact-value {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.inquiry-notice {
    margin-top: 30px;
    padding: 15px 20px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 8px;
}

.inquiry-notice p {
    font-size: 0.9rem;
    color: #2d5016;
    font-weight: 500;
    margin: 0;
}

/* Inquiry Form */
.inquiry-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.inquiry-form .form-group {
    margin-bottom: 0;
}

.inquiry-form .form-group.full {
    grid-column: span 2;
}

.inquiry-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #2d5016;
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

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

.inquiry-form .btn-submit {
    width: 100%;
    padding: 18px;
    background: #2d5016;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.inquiry-form .btn-submit:hover {
    background: #3d6a1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.news-card:hover {
    border-color: #2d5016;
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.12);
    transform: translateY(-5px);
}

.news-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
    border: none;
}

.news-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: #2d5016;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.news-card-badge.news {
    background: #1a5fb4;
}

.news-card-badge.hire {
    background: #e5534b;
}

.news-card-content {
    padding: 55px 25px 30px;
}

.news-card-date {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}

.news-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 10px;
}

.news-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card.featured h4 {
    font-size: 1.3rem;
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover {
    border-color: #2d5016;
    color: #2d5016;
}

.pagination-btn.active {
    background: #2d5016;
    border-color: #2d5016;
    color: #fff;
}

.pagination-btn.next {
    width: auto;
    padding: 0 20px;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ============================================ */

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

    .portfolio-item.featured {
        grid-column: span 2;
    }

    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .client-logos {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .inquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        padding: 120px 20px 50px;
    }

    .portfolio-hero h2 {
        font-size: 2rem;
    }

    .portfolio-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .portfolio-masonry {
        grid-template-columns: 1fr;
    }

    .portfolio-item.featured {
        grid-column: span 1;
    }

    .portfolio-item.featured .portfolio-image {
        height: 250px;
    }

    .stats-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-box {
        padding: 25px 15px;
    }

    .stat-box .stat-number {
        font-size: 2.2rem;
    }

    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .client-logo-placeholder {
        width: 55px;
        height: 55px;
        font-size: 0.8rem;
    }

    .client-logo-item span {
        font-size: 0.75rem;
    }

    .support-hero {
        padding: 120px 20px 50px;
    }

    .support-hero h2 {
        font-size: 2rem;
    }

    .law-category-card {
        padding: 25px;
    }

    .law-links li a {
        padding: 12px 15px;
    }

    .inquiry-info h2 {
        font-size: 2rem;
    }

    .inquiry-form-wrap {
        padding: 25px;
    }

    .inquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .inquiry-form .form-group.full {
        grid-column: span 1;
    }

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

    .news-card.featured {
        grid-column: span 1;
    }

    .news-card.featured h4 {
        font-size: 1.1rem;
    }
}

/* ============================================
   TRENDY ABOUT PAGE STYLES
   ============================================ */

/* About Hero */
.about-hero {
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
    text-align: center;
}

.about-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d5016;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 30px;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-hero-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* About Greeting Section */
.about-greeting {
    padding: 100px 0;
    background: #fff;
}

.greeting-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.greeting-visual {
    position: relative;
}

.greeting-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8f0e0 0%, #d4e4c8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d5016;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

.greeting-quote {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #2d5016;
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    max-width: 200px;
}

.quote-icon {
    font-size: 3rem;
    line-height: 1;
    opacity: 0.3;
    display: block;
    margin-bottom: -20px;
}

.greeting-quote p {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

.quote-source {
    font-size: 0.85rem;
    opacity: 0.8;
}

.greeting-text-wrap {
    padding-top: 20px;
}

.greeting-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #2d5016;
}

.greeting-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 2;
    margin-bottom: 20px;
}

.greeting-text strong {
    color: #2d5016;
}

.greeting-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.signature-position {
    font-size: 0.9rem;
    color: #888;
}

.signature-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Mission Section */
.about-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
}

.mission-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.15);
}

.mission-card-header {
    margin-bottom: 25px;
}

.mission-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-card .mission-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
}

.mission-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2d5016 0%, #5a9030 100%);
}

/* Values Section */
.about-values {
    padding: 100px 0;
    background: #fff;
}

.section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d5016;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: #fafafa;
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    background: #fff;
    border-color: #2d5016;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d5016;
    opacity: 0.3;
    line-height: 1;
}

.value-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.value-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* History Section */
.about-history {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
}

.history-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.history-header {
    position: sticky;
    top: 120px;
}

.history-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
}

.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-history .timeline-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.about-history .timeline-item.highlight {
    background: #2d5016;
}

.about-history .timeline-item.highlight .timeline-year {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.about-history .timeline-item.highlight .event-month,
.about-history .timeline-item.highlight .event-text {
    color: rgba(255,255,255,0.9);
}

.timeline-marker .timeline-year {
    display: inline-block;
    padding: 10px 20px;
    background: #2d5016;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 30px;
}

.timeline-events {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-events li {
    display: flex;
    gap: 15px;
}

.event-month {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d5016;
    min-width: 40px;
}

.event-text {
    font-size: 0.95rem;
    color: #555;
}

/* Organization Section */
.about-organization {
    padding: 100px 0;
    background: #fff;
}

.org-chart-modern {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.org-level.ceo {
    margin-bottom: 20px;
}

.org-level.divisions {
    margin-bottom: 20px;
}

.org-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.org-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
}

.org-card.ceo-card {
    background: #2d5016;
    color: #fff;
    padding: 30px 50px;
}

.org-card .org-icon {
    font-size: 1.8rem;
}

.org-card .org-title {
    font-size: 1rem;
    font-weight: 600;
}

.org-card.division-card {
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
    border: 2px solid #2d5016;
}

.org-card.division-card .org-title {
    color: #2d5016;
}

.org-card.dept-card {
    padding: 15px 25px;
    background: #fafafa;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

.org-connector-vertical {
    width: 3px;
    height: 40px;
    background: #2d5016;
    margin: 10px 0;
}

/* ============================================
   TRENDY SERVICES PAGE STYLES
   ============================================ */

/* Services Hero */
.services-hero {
    padding: 160px 20px 60px;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
}

.services-hero-content {
    text-align: center;
    margin-bottom: 50px;
}

.services-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d5016;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 30px;
}

.services-hero h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 1.1rem;
    color: #666;
}

/* Services Navigation */
.services-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 35px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.service-nav-item .nav-icon {
    font-size: 2rem;
}

.service-nav-item .nav-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Service Detail Section */
.service-detail-section {
    padding: 100px 0;
    background: #fff;
}

.service-detail-section.alt {
    background: #fafafa;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: #2d5016;
    opacity: 0.2;
    line-height: 1;
}

.service-detail-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.service-detail-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Service Cards Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.service-info-card {
    padding: 35px;
    background: #fafafa;
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-detail-section.alt .service-info-card {
    background: #fff;
}

.service-info-card:hover {
    border-color: #2d5016;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
}

.service-info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-info-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Service Features Bar */
.service-features-bar {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #2d5016 0%, #3d6a1f 100%);
    border-radius: 16px;
}

.feature-bar-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.feature-bar-item:last-child {
    border-right: none;
}

.feature-bar-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.feature-bar-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* Environment Analysis Grid */
.env-analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.env-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.env-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.env-card-visual {
    padding: 40px;
    background: linear-gradient(135deg, #e8f0e0 0%, #d4e4c8 100%);
    text-align: center;
}

.env-icon {
    font-size: 3rem;
}

.env-card-content {
    padding: 30px;
}

.env-card-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.env-card-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.env-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(45, 80, 22, 0.1);
    color: #2d5016;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

/* Legal Notice */
.legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #2d5016;
    border-radius: 0 16px 16px 0;
}

.legal-icon {
    font-size: 2rem;
}

.legal-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

/* Certification Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.cert-card {
    padding: 30px;
    background: #fafafa;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cert-card:hover {
    border-color: #2d5016;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
}

.cert-card.main {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
}

.cert-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    background: #2d5016;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.cert-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-right: 60px;
}

.cert-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.cert-requirement {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cert-requirement span {
    padding: 8px 14px;
    background: rgba(45, 80, 22, 0.1);
    color: #2d5016;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
}

/* Architecture Section */
.architecture-content {
    margin-top: 30px;
}

.architecture-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.architecture-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8f0e0 0%, #d4e4c8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d5016;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

.architecture-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 20px;
}

.architecture-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.architecture-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.arch-feature {
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.arch-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.15);
}

.arch-feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.arch-feature h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.arch-feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: #2d5016;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #2d5016;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* Contact Hero */
.contact-hero {
    padding: 160px 20px 60px;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e0 100%);
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d5016;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 30px;
}

.contact-hero h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #666;
}

/* ============================================
   RESPONSIVE FOR ABOUT & SERVICES
   ============================================ */

@media (max-width: 1024px) {
    .greeting-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .greeting-quote {
        position: static;
        max-width: 100%;
        margin-top: 20px;
    }

    .mission-wrapper {
        grid-template-columns: 1fr;
    }

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

    .history-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-header {
        position: static;
    }

    .services-nav {
        gap: 15px;
    }

    .service-nav-item {
        padding: 20px 25px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .env-analysis-grid {
        grid-template-columns: 1fr;
    }

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

    .cert-card.main {
        grid-column: span 1;
    }

    .architecture-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .architecture-features {
        grid-template-columns: 1fr;
    }

    .service-features-bar {
        flex-direction: column;
    }

    .feature-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 15px;
    }

    .feature-bar-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 20px 60px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-greeting {
        padding: 60px 0;
    }

    .greeting-title {
        font-size: 1.5rem;
    }

    .mission-card {
        padding: 35px 25px;
    }

    .mission-card .mission-text {
        font-size: 1.1rem;
    }

    .about-values,
    .about-history,
    .about-organization {
        padding: 60px 0;
    }

    .value-card {
        flex-direction: column;
        gap: 15px;
        padding: 25px;
    }

    .about-history .timeline-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .org-card {
        width: 100%;
        max-width: 250px;
    }

    .services-hero {
        padding: 120px 20px 50px;
    }

    .services-hero h2 {
        font-size: 2rem;
    }

    .services-nav {
        flex-direction: column;
        align-items: center;
    }

    .service-nav-item {
        width: 100%;
        max-width: 300px;
        flex-direction: row;
        justify-content: center;
    }

    .service-detail-section {
        padding: 60px 0;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 10px;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-detail-title h3 {
        font-size: 1.5rem;
    }

    .service-info-card {
        padding: 25px;
    }

    .services-cta {
        padding: 60px 0;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .contact-hero {
        padding: 120px 20px 50px;
    }

    .contact-hero h2 {
        font-size: 2rem;
    }
}
