﻿        @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Lexend:wght@300;400;500;600;700&family=Noto+Serif:ital,wght@0,400;0,700;1,400&display=swap');

        .nav-mobile-book {
            display: none;
        }

        @media (max-width: 900px) {
            .nav-mobile-book {
                display: flex;
                align-items: center;
                margin-left: auto;
                margin-right: 12px;
                padding: 6px 14px;
                background: #B0A05F;
                color: #1a3320;
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 1px;
                text-transform: uppercase;
                text-decoration: none;
                border-radius: 50px;
                white-space: nowrap;
            }
        }

        body {
            min-height: 100vh;
        }

        /* ── Main ─────────────────────────────────────────── */
        .dashboard-main {
            padding-top: 64px;
            min-height: 100vh;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .hero-left-stack {
            position: absolute;
            top: 300px;
            left: 280px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .done-differently {
            position: static;
        }

        .done-differently img {
            display: block;
            width: 500px;
            height: auto;
            max-width: 100%;
        }

        @media (max-width: 900px) {
            .done-differently {
                position: absolute;
                top: 35px;
                right: 5px;
                left: auto;
                width: calc(67vw - 35px);
                z-index: 5;
            }
            .done-differently img {
                width: 100%;
                height: auto;
            }
            .dashboard-main { padding-top: 44px; }
        }

        .topbar {
            display: none;
        }

        .page-title {
            font-size: 20px;
            font-weight: normal;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-text);
        }

        .content-area {
            padding: 28px 36px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* ── Pages ────────────────────────────────────────── */
        .page { display: none; }
        .page.active { display: block; animation: fadeIn 0.2s ease; }

        /* ── Home Page ────────────────────────────────────── */
.hero-logo-wrap {
            padding: 10px 0 0 10px;
            position: relative;
            display: inline-block;
        }

        .hero-logo-wrap::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 160%;
            height: 160%;
            background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(255,255,255,0.72) 35%, rgba(255,255,255,0.2) 60%, transparent 75%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-logo-wrap img {
            width: 250px;
            position: relative;
            left: 10px;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .topnav-spacer { flex: 1; }

        .hero-logo-wrap {
                padding: 10px 0 0 10px;
            }
            .hero-logo-wrap img {
                width: 130px !important;
                left: 0;
            }
        }

        .hero-info-card {
            background: rgba(255, 255, 255, 0.70);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            gap: 8px;
            width: 500px;
        }

        .hero-feature {
            flex: 1;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 16px;
            padding: 8px 16px;
            box-sizing: border-box;
        }

        .hero-feature-icon {
            width: 84px;
            height: 84px;
            min-width: 84px;
            border-radius: 50%;
            border: 2px solid #B0A05F;
            background: rgb(30, 77, 43);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-feature-icon svg {
            width: 42px;
            height: 42px;
        }

        .hero-feature span {
            font-family: 'Noto Serif', serif;
            font-size: 33px;
            color: #1a3320;
            letter-spacing: 0.3px;
            line-height: 1.3;
            text-align: left;
        }

        @media (max-width: 900px) {
            .hero-info-card {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                position: absolute;
                bottom: 80px;
                left: 5px;
                right: 5px;
                top: auto;
                width: auto;
                height: auto;
                padding: 8px;
            }
            .hero-feature {
                flex: 1 1 calc(50% - 4px);
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                gap: 10px;
                padding: 0 6px;
            }
            .hero-feature-icon {
                width: 36px;
                height: 36px;
                min-width: 36px;
            }
            .hero-feature-icon svg {
                width: 18px;
                height: 18px;
            }
            .hero-feature span {
                font-size: 11px;
                text-align: left;
            }
        }

        .home-hero-section {
            width: 100vw;
            position: relative;
            left: calc(-50vw + 50%);
            background: #205E10 url('../images/Background.png') center center / cover no-repeat;
            margin-top: -28px;
            margin-bottom: 40px;
            min-height: calc(100vh - 64px);
            padding: 0 0 48px;
            box-sizing: border-box;
        }


        .home-hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 28px 36px 0;
        }

        .hero-text {
            margin-bottom: 32px;
        }

        .hero-coming {
            font-size: 22px;
            font-style: italic;
            color: var(--color-text-muted);
            margin-bottom: 12px;
        }

        .hero-headline {
            font-size: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #f0ebe0;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .hero-headline .accent { color: #B0A05F; }

        .hero-sub {
            font-size: 15px;
            color: #9fc99f;
            max-width: 540px;
            line-height: 1.7;
            margin-bottom: 28px;
        }


        .book-btn {
            display: inline-block;
            background: #B0A05F;
            color: #0B2143;
            border: 1px solid transparent;
            padding: 14px 44px;
            border-radius: 50px;
            font-family: var(--font-primary);
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: var(--transition);
        }

        .book-btn:hover {
            background: #132B4C;
            color: white;
        }

        /* ── Home Service Cards ──────────────────────────── */
        .home-services-row {
            display: flex;
            gap: clamp(10px, 1.1vw, 16px);
            margin-bottom: 32px;
        }

        .home-service-card {
            flex: 1;
            background: #f8f4ee;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 12px;
            padding: clamp(14px, 1.5vw, 22px) clamp(12px, 1.4vw, 20px) clamp(48px, 5vw, 72px);
            cursor: pointer;
            box-shadow: 0 4px 24px rgba(0,0,0,0.28);
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: clamp(10px, 1.1vw, 16px);
            user-select: none;
        }

        .home-service-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0,0,0,0.35);
        }

        @keyframes hsc-img-fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        /* Nature watermark illustrations */
        .home-service-card::after {
            content: '';
            position: absolute;
            bottom: 0; right: 0;
            width: 130px; height: 100%;
            pointer-events: none;
            opacity: 0.07;
            background-size: cover;
            background-position: bottom right;
            background-repeat: no-repeat;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
            mask-image: linear-gradient(to right, transparent 0%, black 50%);
        }

        .hsc-inclinic::after {
            background-image: url("../images/mountain_card_bg.png");
            width: 90%;
            background-size: contain;
            background-position: bottom right;
            right: -95px;
            animation: hsc-img-fadein 1.2s ease forwards;
        }

        .hsc-mobile::after {
            background-image: url("../images/forrest_card_bg.png");
            width: 75%;
            background-size: contain;
            background-position: bottom right;
            bottom: -10px;
            right: -25px;
            animation: hsc-img-fadein 1.2s ease 0.15s forwards;
        }

        .hsc-telehealth::after {
            background-image: url("../images/weeds_card_bg.png");
            width: 75%;
            background-size: contain;
            background-position: bottom right;
            right: -30px;
            animation: hsc-img-fadein 1.2s ease 0.3s forwards;
        }

        .hsc-icon {
            width: clamp(36px, 3.5vw, 50px);
            height: clamp(36px, 3.5vw, 50px);
            min-width: clamp(36px, 3.5vw, 50px);
            background: #1a3320;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            position: relative; z-index: 1;
        }

        .hsc-icon svg {
            width: clamp(16px, 1.55vw, 22px);
            height: clamp(16px, 1.55vw, 22px);
            stroke: #ffffff; fill: none;
            stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
        }

        .hsc-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        .hsc-name {
            font-size: clamp(13px, 1.2vw, 17px); font-weight: 700;
            color: #1a3320;
            letter-spacing: 0.3px;
            margin-bottom: 0;
        }

        .hsc-name::after {
            content: '';
            display: block;
            width: clamp(22px, 2vw, 30px); height: 2px;
            background: #B0A05F;
            margin: clamp(3px, 0.4vw, 5px) 0 clamp(5px, 0.55vw, 8px);
        }

        .hsc-desc {
            font-size: clamp(10px, 0.85vw, 12px);
            color: #4a6352;
            line-height: 1.6;
        }

        .hsc-book-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            background: #B0A05F;
            color: #1a3320;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 50px;
            white-space: nowrap;
            z-index: 2;
            line-height: 1;
        }

        @media (max-width: 900px) {
            .home-services-row {
                flex-direction: column;
                gap: 12px;
            }

            .home-service-card {
                padding: 14px 16px 14px;
                align-items: flex-start;
                flex: none;
                height: 90px;
                width: 100%;
                box-sizing: border-box;
            }

            .services-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .services-content-card {
                padding: 18px 16px;
                margin-bottom: 0;
            }

            .htc-icon svg {
                width: 32px;
                height: 32px;
            }

            .htc-header {
                gap: 10px;
            }

            .htc-title {
                font-size: 18px;
            }

            .htc-desc {
                font-size: 14px;
                max-width: 100%;
            }

            .content-area {
                padding-left: 12px;
                padding-right: 12px;
            }
        }

        /* ── Services Page ──────────────────────────────── */
        .services-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        @media (max-width: 900px) {
            .services-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        /* ── Content Card ───────────────────────────────── */
        .services-content-card {
            background: #1a3320;
            border-radius: 12px;
            padding: 32px 40px;
            min-height: 200px;
            width: 100%;
            display: block;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 24px rgba(0,0,0,0.28);
            margin-bottom: 24px;
            box-sizing: border-box;
        }

        .htc-topline {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .htc-flourish-svg {
            width: 48px;
            height: 24px;
            flex-shrink: 0;
        }

        .htc-topline-rule {
            flex: 1;
            height: 1px;
            background: #B0A05F;
        }

        .htc-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 14px;
        }


        .htc-icon {
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }

        .htc-icon svg {
            width: 48px; height: 48px;
        }

        .htc-title {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.3px;
        }

        .htc-title::after {
            content: none;
        }

        .htc-badge {
            display: inline-block;
            border: 1.5px solid #B0A05F;
            color: #B0A05F;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 5px 16px;
            border-radius: 999px;
            margin-bottom: 14px;
        }

        .htc-desc {
            font-size: 20px;
            color: rgba(255,255,255,0.75);
            line-height: 1.65;
            max-width: 680px;
        }

        /* ── Dark Section ────────────────────────────────── */

        /* ── Info Cards ───────────────────────────────────── */
        .info-card {
            background: #0d1a10;
            border: 1px solid rgba(176,160,95,0.15);
            border-top: 3px solid rgba(176,160,95,0.5);
            border-radius: 8px;
            padding: 40px 44px;
            margin-bottom: 28px;
            box-shadow: 0 6px 28px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }

        .info-card-label {
            font-family: var(--font-primary);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #B0A05F;
            margin-bottom: 18px;
        }

        .info-card-text {
            font-size: 20px;
            color: rgba(240,235,224,0.82);
            line-height: 1.85;
        }

        .info-card-text .highlight {
            color: #B0A05F;
        }

        /* ── Services Page ────────────────────────────────── */
        .service-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 18px 0;
            border-bottom: 1px solid var(--color-border);
        }

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

        .service-dot {
            width: 48px;
            height: 48px;
            background: rgba(176,160,95,0.08);
            border: 1px solid rgba(176,160,95,0.35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-dot svg {
            width: 20px;
            height: 20px;
            stroke: #B0A05F;
            fill: none;
            stroke-width: 1.5;
        }

        .service-name {
            font-size: 15px;
            color: var(--color-text);
        }

        .service-name small {
            display: block;
            font-size: 12px;
            color: var(--color-text-muted);
            margin-top: 2px;
        }

        /* ── Section Header ───────────────────────────────── */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-text-muted);
            font-weight: normal;
        }

        /* ── Responsive ───────────────────────────────────── */
        @media (max-width: 768px) {
            .topbar,
            .content-area {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        /* ── Modal ────────────────────────────────────────── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 500;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active { display: flex; }

        .modal {
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 36px 40px 40px;
            width: 380px;
            max-width: 92vw;
            animation: slideUp 0.3s ease;
        }

        .modal-tabs {
            display: flex;
            border-bottom: 1px solid var(--color-border);
            margin-bottom: 28px;
        }

        .modal-tab {
            flex: 1;
            background: none;
            border: none;
            padding: 10px;
            font-family: var(--font-primary);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-text-muted);
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            transition: var(--transition);
        }

        .modal-tab.active {
            color: #B0A05F;
            border-bottom-color: #B0A05F;
        }

        .modal-form { display: none; }
        .modal-form.active { display: block; }

        .modal input { margin-bottom: 14px; }

        .modal-actions {
            display: flex;
            gap: 10px;
            margin-top: 8px;
        }

        .modal-error {
            color: #ff6b6b;
            font-size: 13px;
            text-align: center;
            margin-top: 12px;
            display: none;
        }

        .modal-success {
            color: #B0A05F;
            font-size: 13px;
            text-align: center;
            margin-top: 12px;
            display: none;
        }

        /* ── Product Cards ───────────────────────────────── */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .product-card {
            background: #ffffff;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 22px 20px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            box-shadow: 0 2px 10px rgba(19,43,76,0.06);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, rgba(176,160,95,0.9), rgba(176,160,95,0.5));
        }

        .product-card:hover {
            border-color: rgba(176,160,95,0.35);
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(19,43,76,0.12);
        }

        .product-card-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 14px;
        }

        .product-name {
            font-size: 36px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-text);
            line-height: 1.4;
        }

        .product-tier {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 10px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border: 1px solid var(--color-border);
            color: var(--color-text-muted);
            white-space: nowrap;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .product-divider {
            height: 1px;
            background: var(--color-border);
            margin-bottom: 14px;
        }

        .product-ingredients {
            list-style: none;
            margin: 0;
            padding: 0;
            flex: 1;
        }

        .product-ingredients li {
            font-size: 18px;
            color: rgba(19,43,76,0.65);
            padding: 5px 0;
            border-bottom: 1px solid rgba(19,43,76,0.06);
            display: flex;
            align-items: baseline;
            gap: 8px;
            line-height: 1.4;
        }

        .product-ingredients li:last-child { border-bottom: none; }

        .product-ingredients li::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(176,160,95,0.7);
            flex-shrink: 0;
            margin-top: 4px;
        }

        .product-note {
            font-size: 11px;
            color: var(--color-text-muted);
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px solid var(--color-border);
            line-height: 1.7;
            letter-spacing: 0.3px;
        }

        .product-icon {
            position: absolute;
            bottom: 14px;
            right: 14px;
            width: 54px;
            height: 54px;
            opacity: 0.35;
            transition: opacity 0.2s ease;
            pointer-events: none;
            color: #B0A05F;
        }

        .product-card:hover .product-icon { opacity: 0.55; }

        .product-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.25;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .product-edit-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(19,43,76,0.06);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            padding: 5px 6px;
            cursor: pointer;
            color: var(--color-text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.15s ease, background 0.15s, border-color 0.15s, color 0.15s;
            z-index: 3;
            line-height: 0;
        }

        .product-card:hover .product-edit-btn { opacity: 1; }

        .product-edit-btn:hover {
            background: rgba(176,160,95,0.15);
            border-color: rgba(176,160,95,0.45);
            color: #B0A05F;
        }

        .product-edit-btn svg {
            width: 12px; height: 12px;
            stroke: currentColor; fill: none;
            stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
        }

        .modal-box {
            position: relative;
            background: #ffffff;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 40px;
            width: 420px;
            max-width: 92vw;
            animation: slideUp 0.3s ease;
            box-shadow: 0 8px 40px rgba(77, 77, 85, 0.15);
        }

        .modal-box h2 {
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-text);
            margin-bottom: 28px;
        }

        .modal-box .field { margin-bottom: 14px; }

        .modal-box label {
            display: block;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--color-text-muted);
            margin-bottom: 6px;
        }

        .modal-box select, .modal-box textarea {
            width: 100%;
            background: #ffffff;
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            padding: 12px 16px;
            color: var(--color-text);
            font-size: 14px;
            font-family: var(--font-primary);
            outline: none;
            box-sizing: border-box;
        }

        .modal-box textarea { resize: vertical; min-height: 60px; }

        .modal-close-btn {
            position: absolute;
            top: 16px; right: 20px;
            background: none; border: none;
            color: var(--color-text-muted);
            font-size: 20px; cursor: pointer;
            transition: var(--transition);
        }

        .modal-close-btn:hover { color: var(--color-text); }

        .modal-error-sm {
            color: #ff6b6b;
            font-size: 13px;
            margin-top: 12px;
            display: none;
        }

        .icon-picker-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 7px;
            margin-top: 8px;
        }

        .icon-pick-btn {
            background: var(--color-bg-mid);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 9px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.15s;
            color: var(--color-text-muted);
        }

        .icon-pick-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
        .icon-pick-btn:hover { background: #ffffff; border-color: rgba(19,43,76,0.25); color: var(--color-text); }
        .icon-pick-btn.selected { background: rgba(176,160,95,0.1); border-color: rgba(176,160,95,0.55); color: #B0A05F; }

        .ingredient-row { display: flex; gap: 8px; margin-bottom: 6px; }
        .ingredient-row input { flex: 1; }

        .btn-sm { padding: 5px 12px; font-size: 11px; letter-spacing: 0.5px; }
        .btn-danger { border-color: rgba(255,100,100,0.3); color: rgba(255,100,100,0.7); }
        .btn-danger:hover { background: rgba(255,100,100,0.1); border-color: rgba(255,100,100,0.6); color: rgba(255,100,100,0.9); }

        @media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 680px)  { .product-grid { grid-template-columns: 1fr; } }

        /* ── Service Cards ───────────────────────────────── */
        .svc-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 40px;
        }

        .svc-card {
            background: #ffffff;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 22px 20px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            box-shadow: 0 2px 10px rgba(19,43,76,0.06);
        }

        .svc-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, rgba(176,160,95,0.9), rgba(176,160,95,0.5));
        }

        .svc-card:hover {
            border-color: rgba(176,160,95,0.35);
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(19,43,76,0.12);
        }

        .svc-card-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .svc-card-desc {
            font-size: 13px;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        @media (max-width: 1100px) { .svc-card-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 680px)  { .svc-card-grid { grid-template-columns: 1fr; } }


