/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    color: #2c3e2c;
    background: #f5f7f4;
    -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #2d572c 0%, #3a6e39 100%);
    color: #fff;
    padding: 48px 24px 40px;
}

.header-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

#logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
    padding: 6px;
    flex-shrink: 0;
}

.header-text h1 {
    font-size: 2em;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.tagline {
    font-size: 1.05em;
    opacity: 0.92;
    margin-top: 4px;
    font-weight: 500;
}

.region {
    font-size: 0.88em;
    opacity: 0.72;
    margin-top: 6px;
}

/* ===== NAV ===== */
nav {
    background: #fff;
    border-bottom: 1px solid #e0e8de;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.nav-inner {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 24px;
    justify-content: center;
}

.nav-pill {
    text-decoration: none;
    color: #2d572c;
    font-size: 0.88em;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #d4e2d2;
    background: #f5f9f4;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-pill:hover {
    background: #2d572c;
    color: #fff;
    border-color: #2d572c;
}

/* ===== MAIN / SERVICE CARDS ===== */
main {
    max-width: 900px;
    margin: 32px auto 0;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e8de;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    box-shadow: 0 6px 24px rgba(45, 87, 44, 0.08);
    transform: translateY(-2px);
}

.card-inner {
    display: flex;
    gap: 24px;
    padding: 28px 32px;
    align-items: flex-start;
}

.card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #f0f6ef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a6e39;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-content h2 {
    font-size: 1.3em;
    font-weight: 600;
    color: #2d572c;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card-content p {
    font-size: 0.95em;
    color: #4a5e4a;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Price box */
.price-box {
    background: #f8faf7;
    border: 1px solid #e8efe6;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.price-box p {
    margin-bottom: 4px;
    font-size: 0.92em;
    color: #3a5039;
}

.price-box p:last-child {
    margin-bottom: 0;
}

.price-note {
    color: #7a917a;
    font-size: 0.88em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2d572c;
    color: #fff;
    padding: 10px 22px;
    border: 2px solid #2d572c;
    border-radius: 8px;
    font-size: 0.92em;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover {
    background: #3a6e39;
    border-color: #3a6e39;
}

.btn-outline {
    background: transparent;
    color: #2d572c;
}

.btn-outline:hover {
    background: #2d572c;
    color: #fff;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    margin-top: 48px;
    background: #fff;
    border-top: 1px solid #e0e8de;
    border-bottom: 1px solid #e0e8de;
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.6em;
    font-weight: 700;
    color: #2d572c;
    margin-bottom: 12px;
}

.contact-name {
    font-size: 1.15em;
    font-weight: 600;
    color: #2d572c;
}

.contact-role {
    color: #5a735a;
    font-size: 0.95em;
    margin-top: 2px;
    margin-bottom: 14px;
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.badge {
    font-size: 0.78em;
    font-weight: 500;
    color: #2d572c;
    background: #f0f6ef;
    border: 1px solid #d4e2d2;
    padding: 4px 12px;
    border-radius: 16px;
}

.contact-cta {
    font-size: 0.95em;
    color: #4a5e4a;
    margin-bottom: 20px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-photo {
    flex-shrink: 0;
}

.contact-photo img {
    border-radius: 16px;
    object-fit: cover;
}

/* ===== CREDENTIALS ===== */
.credentials-section {
    background: #f5f7f4;
    padding: 48px 0;
}

.credentials-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.credentials-inner h2 {
    text-align: center;
    font-size: 1.6em;
    color: #2d572c;
    margin-bottom: 24px;
}

.cred-group {
    margin-bottom: 8px;
}

.cred-group details {
    background: #fff;
    border: 1px solid #e0e8de;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.cred-group details[open] {
    box-shadow: 0 2px 12px rgba(45, 87, 44, 0.06);
}

.cred-group summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: #2d572c;
    list-style: none;
    user-select: none;
    transition: background 0.15s;
}

.cred-group summary::-webkit-details-marker {
    display: none;
}

.cred-group summary::after {
    content: '';
    margin-left: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid #7a917a;
    border-bottom: 2px solid #7a917a;
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.cred-group details[open] summary::after {
    transform: rotate(45deg);
}

.cred-group summary:hover {
    background: #fafcfa;
}

.cred-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f6ef;
    border-radius: 8px;
    color: #3a6e39;
    flex-shrink: 0;
}

.cred-count {
    font-size: 0.72em;
    font-weight: 500;
    color: #7a917a;
    background: #f0f4ef;
    padding: 2px 10px;
    border-radius: 10px;
    margin-left: 4px;
}

.cred-group ul {
    list-style: none;
    padding: 0 20px 16px;
    margin: 0;
}

.cred-group li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f4ef;
    font-size: 0.92em;
}

.cred-group li:last-child {
    border-bottom: none;
}

.cred-name {
    color: #2c3e2c;
    flex: 1;
    min-width: 0;
}

.cred-place {
    color: #8a9e8a;
    font-size: 0.88em;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== BUSINESS INFO ===== */
.business-section {
    background: #fff;
    border-top: 1px solid #e0e8de;
    padding: 40px 24px;
}

.business-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.business-inner h2 {
    font-size: 1.3em;
    color: #2d572c;
    margin-bottom: 16px;
}

.business-grid {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.business-grid > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.biz-label {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a9e8a;
    font-weight: 600;
}

.biz-value {
    font-size: 0.95em;
    color: #2c3e2c;
    font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
    background: #2d572c;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 20px 24px;
    font-size: 0.85em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    #logo {
        width: 72px;
        height: 72px;
    }

    .header-text h1 {
        font-size: 1.5em;
    }

    .nav-inner {
        gap: 6px;
        padding: 10px 16px;
    }

    .nav-pill {
        font-size: 0.82em;
        padding: 5px 12px;
    }

    main {
        padding: 0 16px;
        margin-top: 24px;
    }

    .card-inner {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
    }

    .card-content h2 {
        font-size: 1.15em;
    }

    .contact-inner {
        flex-direction: column-reverse;
        text-align: center;
        padding: 32px 16px;
        gap: 24px;
    }

    .contact-badges {
        justify-content: center;
    }

    .contact-actions {
        justify-content: center;
    }

 

    .credentials-inner {
        padding: 0 16px;
    }

    .cred-group li {
        flex-direction: column;
        gap: 2px;
    }

    .cred-place {
        text-align: left;
    }

    .business-grid {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .header-text h1 {
        font-size: 1.3em;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-actions {
        flex-direction: column;
    }
}
