.menu-check { display: none !important; }

#menuCheck:checked ~ .sidebar-nav {
    left: 0 !important;
}

#menuCheck:checked ~ .nav-overlay {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.nav-overlay { cursor: pointer; }

label.sidebar-close { cursor: pointer; }

body:has(#menuCheck:checked) { overflow: hidden; }

:root {
            --forest: #2D6A4F;
            --forest-dark: #1B4332;
            --forest-light: #40916C;
            --gold: #D4A24C;
            --gold-light: #E8C468;
            --gold-dark: #B8862E;
            --cream: #FAFAF5;
            --white: #FFFFFF;
            --text-dark: #1A1A1A;
            --text-body: #4A4A4A;
            --text-muted: #7A7A7A;
            --bg-warm: #F5F0E8;
            --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
            --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
            --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
            --radius: 20px;
            --radius-sm: 12px;
        }

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text-body);
            background: var(--cream);
            line-height: 1.7;
            overflow-x: hidden;
        }

img { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--text-dark);
            line-height: 1.2;
        }

.wave-separator {
            display: block;
            width: 100%;
            line-height: 0;
        }

.wave-separator svg {
            display: block;
            width: 100%;
            height: 60px;
        }

.nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
        }

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

.sidebar-nav {
            position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            height: 100vh;
            background: var(--white);
            z-index: 999;
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 4px 0 30px rgba(0,0,0,0.15);
            overflow-y: auto;
        }

.sidebar-nav.active {
            left: 0;
        }

.sidebar-header {
            padding: 28px 24px;
            border-bottom: 1px solid #EDEDED;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.sidebar-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

.sidebar-logo img {
            height: 38px;
            width: auto;
            border-radius: 8px;
        }

.sidebar-logo span {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--forest-dark);
        }

.sidebar-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: var(--cream);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text-muted);
            transition: all 0.3s;
        }

.sidebar-close:hover {
            background: var(--forest);
            color: #fff;
        }

.sidebar-links {
            list-style: none;
            padding: 16px 0;
            flex: 1;
        }

.sidebar-links li a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-dark);
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

.sidebar-links li a:hover {
            background: rgba(45, 106, 79, 0.06);
            color: var(--forest);
            border-left-color: var(--forest);
        }

.sidebar-links li a i {
            width: 20px;
            text-align: center;
            color: var(--gold);
            font-size: 0.95rem;
        }

.sidebar-footer {
            padding: 20px 24px;
            border-top: 1px solid #EDEDED;
        }

.sidebar-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px;
            background: var(--forest);
            color: #fff;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

.sidebar-cta:hover {
            background: var(--forest-dark);
        }

.top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 900;
            padding: 16px 0;
            transition: all 0.4s;
        }

.top-bar.scrolled {
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            padding: 10px 0;
        }

.top-bar .bar-inner {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.menu-toggle {
            display: flex;
            align-items: center;
            gap: 10px;
            background: none;
            border: 2px solid rgba(45, 106, 79, 0.2);
            padding: 10px 18px;
            border-radius: 50px;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--forest-dark);
            transition: all 0.3s;
        }

.menu-toggle:hover {
            background: var(--forest);
            color: #fff;
            border-color: var(--forest);
        }

.top-bar.scrolled .menu-toggle {
            color: var(--forest-dark);
        }

.menu-toggle .bar-icon {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

.menu-toggle .bar-icon span {
            width: 18px;
            height: 2px;
            background: currentColor;
            border-radius: 2px;
            transition: all 0.3s;
        }

.menu-toggle .bar-icon span:nth-child(2) { width: 14px; }

.bar-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.2rem;
        }

.bar-logo img {
            height: 40px;
            width: auto;
            border-radius: 8px;
        }

.bar-logo span {
            color: var(--forest-dark);
        }

.top-bar:not(.scrolled) .bar-logo span {
            color: #fff;
        }

.top-bar:not(.scrolled) .menu-toggle {
            color: #fff;
            border-color: rgba(255,255,255,0.35);
        }

.bar-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold);
            color: #fff;
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

.bar-cta:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 162, 76, 0.4);
        }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            overflow: hidden;
        }

.hero-image-side {
            flex: 0 0 65%;
            position: relative;
        }

.hero-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.hero-image-side::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(26,26,26,0.1) 0%, rgba(26,26,26,0.55) 100%);
        }

.hero-text-side {
            flex: 0 0 35%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 40px 60px;
            position: relative;
        }

.hero-text-inner {
            max-width: 400px;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(45, 106, 79, 0.08);
            color: var(--forest);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(45, 106, 79, 0.15);
        }

.hero-badge i { font-size: 0.7rem; }

.hero h1 {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

.hero h1 .gold { color: var(--gold); }

.hero-desc {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 10px;
            line-height: 1.7;
        }

.hero-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 28px;
            padding: 12px 16px;
            background: var(--cream);
            border-radius: var(--radius-sm);
        }

.hero-rating .stars { color: #FBBC05; font-size: 0.95rem; letter-spacing: 1px; }

.hero-rating strong { font-size: 0.95rem; color: var(--text-dark); }

.hero-rating span { font-size: 0.82rem; color: var(--text-muted); }

.hero-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 50px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

.btn-forest {
            background: var(--forest);
            color: #fff;
        }

.btn-forest:hover {
            background: var(--forest-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(45, 106, 79, 0.3);
        }

.btn-gold-outline {
            background: transparent;
            color: var(--gold-dark);
            border: 2px solid var(--gold);
        }

.btn-gold-outline:hover {
            background: var(--gold);
            color: #fff;
        }

.hero-urgency {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            font-size: 0.82rem;
            color: var(--forest);
            font-weight: 500;
        }

.hero-urgency .pulse {
            width: 8px;
            height: 8px;
            background: var(--forest);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

@keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(45,106,79,0.4); }
            50% { box-shadow: 0 0 0 8px rgba(45,106,79,0); }
        }

.devis-section {
            background: var(--forest);
            position: relative;
            padding: 70px 0;
        }

.devis-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.6;
        }

.devis-inner {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
            text-align: center;
        }

.devis-section h2 {
            color: #fff;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            margin-bottom: 8px;
        }

.devis-section h2 .gold { color: var(--gold-light); }

.devis-subtitle {
            color: rgba(255,255,255,0.75);
            font-size: 1rem;
            margin-bottom: 32px;
        }

.devis-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            text-align: left;
            border: 3px solid var(--gold);
        }

.devis-card .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

.devis-card .form-group {
            margin-bottom: 18px;
        }

.devis-card .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

.devis-card .form-group input,
        .devis-card .form-group textarea,
        .devis-card .form-group select {
            width: 100%;
            padding: 13px 16px;
            border: 2px solid #E8E8E8;
            border-radius: var(--radius-sm);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--cream);
            transition: all 0.3s;
            outline: none;
        }

.devis-card .form-group input::placeholder,
        .devis-card .form-group textarea::placeholder {
            color: #ABABAB;
        }

.devis-card .form-group input:focus,
        .devis-card .form-group textarea:focus,
        .devis-card .form-group select:focus {
            border-color: var(--forest);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(45,106,79,0.08);
        }

.devis-card .form-group textarea { resize: vertical; min-height: 90px; }

.devis-card .form-group select { cursor: pointer; }

.devis-card .form-group select option { background: #fff; }

.btn-devis-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

.btn-devis-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(45,106,79,0.35);
        }

.devis-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 18px;
            flex-wrap: wrap;
        }

.devis-trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

.devis-trust-item i { color: var(--forest); }

.section {
            padding: 90px 0;
        }

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

.section-header {
            text-align: center;
            margin-bottom: 56px;
        }

.section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--forest);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 10px;
        }

.section-label .dot {
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
        }

.section-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 14px;
            color: var(--text-dark);
        }

.section-title .gold { color: var(--gold); }

.section-desc {
            font-size: 1.05rem;
            color: var(--text-muted);
            max-width: 580px;
            margin: 0 auto;
        }

.services-section {
            background: var(--white);
        }

.timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

.timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: repeating-linear-gradient(
                to bottom,
                var(--gold) 0, var(--gold) 8px,
                transparent 8px, transparent 16px
            );
            transform: translateX(-50%);
        }

.timeline-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            position: relative;
        }

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

.timeline-item:nth-child(odd) {
            flex-direction: row;
        }

.timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

.timeline-content {
            flex: 0 0 calc(50% - 40px);
            background: var(--cream);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s;
        }

.timeline-content:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

.timeline-item:nth-child(odd) .timeline-content {
            margin-right: auto;
        }

.timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
        }

.timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            width: 18px;
            height: 18px;
            background: var(--gold);
            border: 3px solid var(--white);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 0 0 4px rgba(212,162,76,0.2);
        }

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

.timeline-body {
            padding: 24px;
        }

.timeline-icon {
            width: 42px;
            height: 42px;
            background: rgba(45,106,79,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--forest);
            font-size: 1rem;
            margin-bottom: 12px;
        }

.timeline-body h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            line-height: 1.4;
        }

.timeline-body p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

.timeline-body.no-img {
            text-align: center;
            padding: 32px 24px;
        }

.timeline-body.no-img .timeline-icon {
            margin: 0 auto 12px;
            width: 56px;
            height: 56px;
            font-size: 1.3rem;
            background: rgba(212,162,76,0.12);
            color: var(--gold-dark);
        }

.about-section {
            background: var(--cream);
        }

.about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 56px;
            align-items: center;
        }

.about-img-wrap {
            position: relative;
        }

.about-img-wrap img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
        }

.about-stamp {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: var(--shadow-md);
        }

.about-stamp .stamp-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1;
        }

.about-stamp .stamp-label {
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 2px;
        }

.about-text h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

.about-text h2 .gold { color: var(--gold); }

.about-text p {
            margin-bottom: 14px;
            line-height: 1.8;
        }

.about-values {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }

.value-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: var(--white);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            box-shadow: var(--shadow-sm);
        }

.value-tag i {
            color: var(--forest);
            font-size: 0.9rem;
        }

.gallery-section {
            background: var(--white);
            overflow: hidden;
        }

.gallery-slider-wrapper {
            position: relative;
        }

.gallery-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0 24px 20px;
        }

.gallery-slider::-webkit-scrollbar { display: none; }

.gallery-slide {
            flex: 0 0 340px;
            scroll-snap-align: start;
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

.gallery-slide img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s;
        }

.gallery-slide:hover img {
            transform: scale(1.06);
        }

.gallery-slide::after {
            content: '\f00e';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(27,67,50,0.5);
            color: #fff;
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: var(--radius);
        }

.gallery-slide:hover::after {
            opacity: 1;
        }

.gallery-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 24px;
        }

.gallery-nav button {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--forest);
            background: transparent;
            color: var(--forest);
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.gallery-nav button:hover {
            background: var(--forest);
            color: #fff;
        }

.lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.92);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

.lightbox.active { display: flex; }

.lightbox img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 10px;
        }

.lightbox-close {
            position: absolute; top: 20px; right: 30px;
            font-size: 2.2rem; color: #fff; background: none;
            border: none; cursor: pointer; z-index: 10001;
            transition: transform 0.3s;
        }

.lightbox-close:hover { transform: scale(1.2); }

.lightbox-arrow {
            position: absolute; top: 50%; transform: translateY(-50%);
            font-size: 1.8rem; color: #fff;
            background: rgba(255,255,255,0.1);
            border: none; cursor: pointer;
            padding: 14px 18px; border-radius: 10px;
            transition: background 0.3s; z-index: 10001;
        }

.lightbox-arrow:hover { background: rgba(255,255,255,0.2); }

.lb-prev { left: 20px; }

.lb-next { right: 20px; }

.testimonials-section {
            background: var(--bg-warm);
        }

.testimonials-carousel {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
            overflow: hidden;
        }

.carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

.carousel-slide {
            flex: 0 0 100%;
            padding: 0 10px;
        }

.review-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px;
            box-shadow: var(--shadow-md);
            text-align: center;
            position: relative;
        }

.review-card::before {
            content: '\201C';
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: rgba(45,106,79,0.1);
            position: absolute;
            top: 10px;
            left: 24px;
            line-height: 1;
        }

.review-stars {
            color: #FBBC05;
            font-size: 1.1rem;
            letter-spacing: 2px;
            margin-bottom: 18px;
        }

.review-text {
            font-size: 1rem;
            color: var(--text-body);
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

.review-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
        }

.review-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--forest), var(--forest-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.2rem;
        }

.review-author-info { text-align: left; }

.review-author-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-dark);
        }

.review-author-badge {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

.carousel-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 30px;
        }

.carousel-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid #D4D4D4;
            background: var(--white);
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

.carousel-btn:hover {
            border-color: var(--forest);
            color: var(--forest);
        }

.carousel-dots {
            display: flex;
            gap: 8px;
        }

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

.carousel-dot.active {
            background: var(--forest);
            transform: scale(1.2);
        }

.google-link-wrap {
            text-align: center;
            margin-top: 32px;
        }

.google-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: var(--white);
            border: 2px solid #E2E2E2;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s;
            box-shadow: var(--shadow-sm);
        }

.google-link:hover {
            border-color: var(--forest);
            color: var(--forest);
        }

.google-link .g-icon { color: #4285F4; }

.google-link .g-stars { color: #FBBC05; font-size: 0.85rem; }

.hours-section {
            background: var(--white);
        }

.hours-flex {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: start;
        }

.hours-info h2 {
            font-size: 2rem;
            margin-bottom: 14px;
        }

.hours-info p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 20px;
        }

.hours-phone-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--cream);
            border-radius: var(--radius-sm);
            border: 1px solid #EDEDED;
        }

.hours-phone-icon {
            width: 52px;
            height: 52px;
            background: var(--forest);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

.hours-phone-text strong {
            display: block;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

.hours-phone-text a {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--forest);
        }

.hours-schedule {
            background: var(--cream);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid #EDEDED;
        }

.hours-schedule-header {
            background: var(--forest);
            color: #fff;
            padding: 16px 24px;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 24px;
            border-bottom: 1px solid #EDEDED;
            transition: background 0.3s;
        }

.hours-row:last-child { border-bottom: none; }

.hours-row:hover { background: rgba(45,106,79,0.03); }

.hours-row.today {
            background: rgba(45,106,79,0.06);
            border-left: 3px solid var(--forest);
        }

.hours-day {
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--text-dark);
        }

.hours-time {
            font-size: 0.92rem;
            color: var(--text-muted);
        }

.hours-closed {
            color: #DC2626;
            font-weight: 600;
            font-size: 0.85rem;
        }

.contact-section {
            background: var(--cream);
        }

.contact-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 50px;
        }

.contact-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #EDEDED;
        }

.contact-card h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.contact-card h3 i { color: var(--forest); }

.contact-card .form-group {
            margin-bottom: 18px;
        }

.contact-card .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

.contact-card .form-group input,
        .contact-card .form-group textarea {
            width: 100%;
            padding: 13px 16px;
            border: 2px solid #E8E8E8;
            border-radius: var(--radius-sm);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--cream);
            outline: none;
            transition: all 0.3s;
        }

.contact-card .form-group input:focus,
        .contact-card .form-group textarea:focus {
            border-color: var(--forest);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(45,106,79,0.08);
        }

.contact-card .form-group textarea {
            resize: vertical;
            min-height: 110px;
        }

.contact-card .form-group input::placeholder,
        .contact-card .form-group textarea::placeholder { color: #ABABAB; }

.btn-contact-submit {
            width: 100%;
            padding: 14px;
            background: var(--forest);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

.btn-contact-submit:hover {
            background: var(--forest-dark);
            box-shadow: 0 8px 24px rgba(45,106,79,0.3);
        }

#formStatus p {
            margin-top: 12px;
            padding: 10px 16px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
        }

.contact-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

.contact-info-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: var(--white);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            border: 1px solid #EDEDED;
            transition: all 0.3s;
        }

.contact-info-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

.contact-info-icon {
            width: 46px;
            height: 46px;
            background: rgba(45,106,79,0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--forest);
            font-size: 1rem;
            flex-shrink: 0;
        }

.contact-info-text strong {
            display: block;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

.contact-info-text span,
        .contact-info-text a {
            font-size: 0.88rem;
            color: var(--text-muted);
        }

.contact-info-text a:hover { color: var(--forest); }

.contact-map {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid #EDEDED;
            flex: 1;
            min-height: 260px;
        }

.contact-map iframe { border-radius: var(--radius); }

.footer {
            background: var(--forest-dark);
            color: rgba(255,255,255,0.8);
            padding: 60px 0 0;
        }

.footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
            gap: 32px;
            padding-bottom: 40px;
        }

.footer-brand p {
            font-size: 0.88rem;
            line-height: 1.7;
            margin: 14px 0 18px;
            color: rgba(255,255,255,0.6);
        }

.footer-social {
            display: flex;
            gap: 10px;
        }

.footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.7);
            transition: all 0.3s;
        }

.footer-social a:hover {
            background: var(--gold);
            color: #fff;
            transform: translateY(-3px);
        }

.footer-col h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
        }

.footer-col ul li a:hover {
            color: var(--gold-light);
            padding-left: 4px;
        }

.footer-mini-form p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            margin-bottom: 14px;
        }

.footer-mini-form form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.footer-mini-form input,
        .footer-mini-form textarea {
            width: 100%;
            padding: 10px 14px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.88rem;
            outline: none;
            transition: all 0.3s;
        }

.footer-mini-form input::placeholder,
        .footer-mini-form textarea::placeholder {
            color: rgba(255,255,255,0.3);
        }

.footer-mini-form input:focus,
        .footer-mini-form textarea:focus {
            border-color: var(--gold);
        }

.footer-mini-form textarea { resize: none; min-height: 60px; }

.footer-mini-btn {
            padding: 10px;
            background: var(--gold);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

.footer-mini-btn:hover { background: var(--gold-dark); }

.footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 18px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

.footer-bottom p,
        .footer-bottom a {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.45);
        }

.footer-bottom a:hover { color: var(--gold-light); }

.modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 11000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

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

.modal-content {
            background: #fff;
            color: var(--text-dark);
            border-radius: var(--radius);
            padding: 40px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

.modal-content h2 {
            font-size: 1.4rem;
            margin-bottom: 24px;
            color: var(--forest-dark);
        }

.modal-content h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            margin: 18px 0 8px;
            color: var(--forest-dark);
        }

.modal-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 6px;
        }

.modal-close-btn {
            position: absolute;
            top: 16px;
            right: 20px;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #ABABAB;
            cursor: pointer;
        }

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

.reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

.reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

.reveal-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

.reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

.reveal-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

.reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

@media (max-width: 1024px) {
            .hero {
                flex-direction: column;
                min-height: auto;
            }
            .hero-image-side {
                flex: none;
                height: 50vh;
            }
            .hero-text-side {
                flex: none;
                padding: 40px 24px 50px;
            }
            .timeline::before { left: 24px; }
            .timeline-item,
            .timeline-item:nth-child(even) {
                flex-direction: column;
                padding-left: 56px;
            }
            .timeline-content { flex: none; width: 100%; }
            .timeline-dot {
                left: 24px;
                top: 24px;
            }
            .about-grid { grid-template-columns: 1fr; gap: 36px; }
            .about-img-wrap img { height: 350px; }
            .hours-flex { grid-template-columns: 1fr; gap: 32px; }
            .contact-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
        }

@media (max-width: 768px) {
            .hero-image-side { height: 40vh; }
            .hero h1 { font-size: 1.8rem; }
            .gallery-slide { flex: 0 0 280px; }
            .gallery-slide img { height: 220px; }
            .devis-card { padding: 28px 20px; }
            .devis-card .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .section { padding: 64px 0; }
        }

@media (max-width: 640px) {
            .hero-image-side { height: 35vh; }
            .hero-text-side { padding: 30px 18px 40px; }
            .hero-actions { gap: 10px; }
            .btn { padding: 12px 20px; font-size: 0.88rem; }
            .bar-cta { display: none; }
            .gallery-slide { flex: 0 0 260px; }
            .gallery-slide img { height: 200px; }
            .about-stamp { width: 90px; height: 90px; bottom: -12px; right: -8px; }
            .about-stamp .stamp-number { font-size: 1.6rem; }
            .about-stamp .stamp-label { font-size: 0.55rem; }
            .review-card { padding: 28px 20px; }
            .contact-card { padding: 28px 20px; }
        }

.portfolio-section {
            background: var(--white);
        }

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

.portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-sm);
        }

.portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

.portfolio-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

.portfolio-item:hover img {
            transform: scale(1.08);
        }

.portfolio-item::after {
            content: '\f00e';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(45, 106, 79, 0.85);
            color: white;
            font-size: 2rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

.portfolio-item:hover::after {
            opacity: 1;
        }

.video-section {
            background: var(--bg-warm);
        }

.video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

.video-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-md);
            background: #000;
        }

.video-item video {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

@media (max-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .portfolio-item img {
                height: 250px;
            }
            .video-grid {
                gap: 20px;
            }
            .video-item video {
                height: 350px;
            }
        }

@media (max-width: 768px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .portfolio-item img {
                height: 280px;
            }
            .video-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .video-item video {
                height: 300px;
            }
        }

html, body { overflow-x: hidden; max-width: 100%; }

img { max-width: 100%; height: auto; }

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

@media (max-width: 640px) { .sct-container { padding: 0 18px; } }

.sct-tpl-service-city { font-family: 'DM Sans', sans-serif; color: #4A4A4A; background: #FAFAF5; line-height: 1.7; }

.sct-tpl-service-city h1, .sct-tpl-service-city h2, .sct-tpl-service-city h3, .sct-tpl-service-city h4 {
    font-family: 'Playfair Display', Georgia, serif; color: #1A1A1A; line-height: 1.25;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.sct-tpl-service-city .sct-hero-container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.sct-tpl-service-city .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-service-city .sct-hero-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-hero-text, .sct-tpl-service-city .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-service-city .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.85);
}

.sct-tpl-service-city .sct-breadcrumb a { color: rgba(255,255,255,0.85); transition: color 0.3s; }

.sct-tpl-service-city .sct-breadcrumb a:hover { color: #E8C468; }

.sct-tpl-service-city .sct-bc-sep { color: rgba(255,255,255,0.45); }

.sct-tpl-service-city .sct-bc-current { color: #E8C468; font-weight: 600; }

.sct-tpl-service-city .sct-hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px;
}

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(232,196,104,0.35);
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    color: #fff;
}

.sct-tpl-service-city .sct-hero-badge i { color: #E8C468; font-size: 0.75rem; }

.sct-tpl-service-city .sct-hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-hero-text h1 .sct-gold { color: #E8C468; }

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
    max-width: 600px;
}

.sct-tpl-service-city .sct-hero-btns {
    display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px;
}

.sct-tpl-service-city .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.sct-tpl-service-city .sct-btn-primary { background: #D4A24C; color: #fff; }

.sct-tpl-service-city .sct-btn-primary:hover { background: #B8862E; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(212,162,76,0.4); }

.sct-tpl-service-city .sct-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }

.sct-tpl-service-city .sct-btn-outline:hover { background: #fff; color: #1B4332; border-color: #fff; }

.sct-tpl-service-city .sct-hero-trust {
    display: flex; flex-wrap: wrap; gap: 18px;
}

.sct-tpl-service-city .sct-hero-trust-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: rgba(255,255,255,0.85);
}

.sct-tpl-service-city .sct-hero-trust-item i { color: #E8C468; }

.sct-tpl-service-city .sct-hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.25);
    border-top: 4px solid #D4A24C;
    color: #1A1A1A;
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-size: 1.3rem; font-weight: 700;
    margin-bottom: 22px; color: #1B4332;
    display: flex; align-items: center; gap: 10px;
}

.sct-tpl-service-city .sct-hero-card h3 i { color: #D4A24C; }

.sct-tpl-service-city .sct-hero-card-list {
    list-style: none; padding: 0; margin: 0 0 24px;
}

.sct-tpl-service-city .sct-hero-card-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #EDEDED;
    font-size: 0.92rem;
    color: #4A4A4A;
}

.sct-tpl-service-city .sct-hero-card-list li:last-child { border-bottom: none; }

.sct-tpl-service-city .sct-hero-card-list li i {
    color: #2D6A4F; font-size: 0.95rem; margin-top: 4px;
    width: 18px; text-align: center;
}

.sct-tpl-service-city .sct-hero-card-list li strong { color: #1A1A1A; display: block; margin-bottom: 2px; }

.sct-tpl-service-city .sct-hero-card .sct-btn { width: 100%; justify-content: center; background: #2D6A4F; color: #fff; }

.sct-tpl-service-city .sct-hero-card .sct-btn:hover { background: #1B4332; }

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
}

.sct-tpl-service-city .sct-stats-band {
    background: #F5F0E8;
    padding: 50px 0;
    border-bottom: 1px solid #E8E0D0;
}

.sct-tpl-service-city .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sct-tpl-service-city .sct-stats-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-stat-item { text-align: center; }

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 800;
    color: #2D6A4F; line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.85rem; color: #7A7A7A;
    text-transform: uppercase; letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-stat-value { font-size: 2rem; }
}

.sct-tpl-service-city .sct-section { padding: 80px 0; }

.sct-tpl-service-city .sct-section-header { text-align: center; margin-bottom: 50px; max-width: 720px; margin-left: auto; margin-right: auto; }

.sct-tpl-service-city .sct-section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 700;
    color: #2D6A4F;
    text-transform: uppercase; letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-tag::before { content: ''; width: 6px; height: 6px; background: #D4A24C; border-radius: 50%; }

.sct-tpl-service-city .sct-section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800; color: #1A1A1A;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-section-title .sct-gold { color: #D4A24C; }

.sct-tpl-service-city .sct-section-desc {
    font-size: 1.02rem; color: #7A7A7A;
    max-width: 600px; margin: 0 auto;
}

.sct-tpl-service-city .sct-intro-section { background: #fff; padding: 80px 0; }

.sct-tpl-service-city .sct-intro-content {
    max-width: 820px; margin: 0 auto;
    font-size: 1.02rem; color: #4A4A4A;
}

.sct-tpl-service-city .sct-intro-content p { margin-bottom: 18px; line-height: 1.8; }

.sct-tpl-service-city .sct-intro-content strong { color: #1B4332; font-weight: 700; }

.sct-tpl-service-city .sct-services-section { background: #FAFAF5; }

.sct-tpl-service-city .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-city .sct-services-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.4s;
    display: flex; flex-direction: column;
}

.sct-tpl-service-city .sct-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

.sct-tpl-service-city .sct-service-card-img {
    width: 100%; height: 200px; object-fit: cover;
}

.sct-tpl-service-city .sct-service-card-body { padding: 24px; flex: 1; }

.sct-tpl-service-city .sct-service-card-body h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem; font-weight: 700;
    color: #1A1A1A; margin-bottom: 10px;
}

.sct-tpl-service-city .sct-service-card-body p {
    font-size: 0.92rem; color: #7A7A7A; line-height: 1.65;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
}

.sct-tpl-service-city .sct-processus-section { background: #fff; }

.sct-tpl-service-city .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

.sct-tpl-service-city .sct-processus-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-process-step {
    text-align: center;
    padding: 28px 18px;
    background: #FAFAF5;
    border-radius: 16px;
    position: relative;
    border-top: 3px solid #D4A24C;
}

.sct-tpl-service-city .sct-process-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #2D6A4F, #1B4332);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(45,106,79,0.25);
}

.sct-tpl-service-city .sct-process-num {
    position: absolute; top: 14px; right: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 800;
    color: rgba(212,162,76,0.3);
    line-height: 1;
}

.sct-tpl-service-city .sct-process-step h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.98rem; font-weight: 700;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-process-step p {
    font-size: 0.85rem; color: #7A7A7A; line-height: 1.55;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
}

.sct-tpl-service-city .sct-why-section { background: #F5F0E8; }

.sct-tpl-service-city .sct-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sct-tpl-service-city .sct-why-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-why-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }

.sct-tpl-service-city .sct-why-icon {
    width: 64px; height: 64px;
    background: rgba(45,106,79,0.1);
    color: #2D6A4F;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    margin-bottom: 10px; color: #1A1A1A;
}

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.88rem; color: #7A7A7A; line-height: 1.6;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
}

.sct-tpl-service-city .sct-zones-section { background: #fff; }

.sct-tpl-service-city .sct-zones-list {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
    max-width: 900px; margin: 0 auto;
}

.sct-tpl-service-city .sct-zone-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: #FAFAF5;
    border: 1px solid #E8E0D0;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1B4332;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-zone-tag i { color: #D4A24C; font-size: 0.78rem; }

.sct-tpl-service-city .sct-zone-tag:hover { background: #2D6A4F; color: #fff; border-color: #2D6A4F; }

.sct-tpl-service-city .sct-zone-tag:hover i { color: #E8C468; }

.sct-tpl-service-city .sct-usecase-section { background: #FAFAF5; }

.sct-tpl-service-city .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-service-city .sct-usecase-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-usecase-img {
    width: 100%; height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.sct-tpl-service-city .sct-usecase-text h2 {
    font-size: 1.9rem; font-weight: 800; margin-bottom: 18px;
}

.sct-tpl-service-city .sct-usecase-text h2 .sct-gold { color: #D4A24C; }

.sct-tpl-service-city .sct-usecase-content { font-size: 0.98rem; color: #4A4A4A; }

.sct-tpl-service-city .sct-usecase-content p { margin-bottom: 14px; line-height: 1.75; }

.sct-tpl-service-city .sct-usecase-content strong { color: #1B4332; }

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 30px; }
    .sct-tpl-service-city .sct-usecase-img { height: 320px; }
}

.sct-tpl-service-city .sct-engagements-section { background: #1B4332; color: #fff; }

.sct-tpl-service-city .sct-engagements-section .sct-section-title { color: #fff; }

.sct-tpl-service-city .sct-engagements-section .sct-section-tag { color: #E8C468; }

.sct-tpl-service-city .sct-engagements-section .sct-section-desc { color: rgba(255,255,255,0.75); }

.sct-tpl-service-city .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-city .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-engagement-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(232,196,104,0.2);
    padding: 32px 26px;
    border-radius: 16px;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover { background: rgba(255,255,255,0.08); border-color: #D4A24C; transform: translateY(-4px); }

.sct-tpl-service-city .sct-engagement-icon {
    width: 56px; height: 56px;
    background: #D4A24C;
    color: #fff;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    font-size: 1.3rem;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem; font-weight: 700; color: #fff;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.92rem; color: rgba(255,255,255,0.78); line-height: 1.7;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; }
}

.sct-tpl-service-city .sct-local-spec { background: #fff; padding: 70px 0; }

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 850px; margin: 0 auto;
    padding: 38px 32px;
    background: linear-gradient(135deg, #FAFAF5 0%, #F5F0E8 100%);
    border-left: 4px solid #D4A24C;
    border-radius: 16px;
}

.sct-tpl-service-city .sct-local-spec-inner h2 {
    font-size: 1.5rem; font-weight: 700;
    color: #1B4332; margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
}

.sct-tpl-service-city .sct-local-spec-inner h2 i { color: #D4A24C; }

.sct-tpl-service-city .sct-local-spec-inner p { font-size: 0.98rem; line-height: 1.75; color: #4A4A4A; }

.sct-tpl-service-city .sct-local-spec-inner strong { color: #1B4332; }

.sct-tpl-service-city .sct-faq-section { background: #FAFAF5; }

.sct-tpl-service-city .sct-faq-list {
    max-width: 820px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 14px;
}

.sct-tpl-service-city .sct-faq-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 3px solid #D4A24C;
}

.sct-tpl-service-city .sct-faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    font-weight: 600; color: #1A1A1A; font-size: 0.98rem;
    list-style: none;
}

.sct-tpl-service-city .sct-faq-question::-webkit-details-marker { display: none; }

.sct-tpl-service-city .sct-faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2D6A4F;
    font-size: 0.8rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-faq-item[open] .sct-faq-question::after { transform: rotate(180deg); }

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 24px 22px;
    font-size: 0.93rem;
    color: #4A4A4A;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-faq-answer strong { color: #1B4332; }

.sct-tpl-service-city .sct-maillage-section { background: #fff; padding: 60px 0; border-top: 1px solid #EEE9DD; }

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section { border-top: 1px solid #EEE9DD; padding-top: 60px; }

.sct-tpl-service-city .sct-maillage-section h2 {
    font-size: 1.4rem; font-weight: 700;
    color: #1B4332; text-align: center;
    margin-bottom: 28px;
}

.sct-tpl-service-city .sct-maillage-section h2 .sct-gold { color: #D4A24C; }

.sct-tpl-service-city .sct-maillage-list {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
    max-width: 1000px; margin: 0 auto;
}

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px;
    background: #FAFAF5;
    border: 1px solid #E8E0D0;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #1B4332;
    font-weight: 500;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-maillage-list a:hover {
    background: #2D6A4F; color: #fff; border-color: #2D6A4F;
}

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #2D6A4F 0%, #1B4332 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.sct-tpl-service-city .sct-cta-final-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 20px; }

.sct-tpl-service-city .sct-cta-final h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #fff; margin-bottom: 14px;
}

.sct-tpl-service-city .sct-cta-final h2 .sct-gold { color: #E8C468; }

.sct-tpl-service-city .sct-cta-final p {
    color: rgba(255,255,255,0.85);
    font-size: 1.02rem; margin-bottom: 30px;
}

.sct-tpl-service-city .sct-cta-final-btns {
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-section,
    .sct-tpl-service-city .sct-intro-section { padding: 60px 0; }
    .sct-tpl-service-city .sct-stats-band { padding: 40px 0; }
}

.sct-tpl-service-hub { font-family: 'DM Sans', sans-serif; color: var(--text-body, #4A4A4A); background: var(--cream, #FAFAF5); line-height: 1.7; }

.sct-tpl-service-hub h1, .sct-tpl-service-hub h2, .sct-tpl-service-hub h3, .sct-tpl-service-hub h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--text-dark, #1A1A1A); line-height: 1.25; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(27,67,50,0.92) 0%, rgba(45,106,79,0.85) 100%), url('/images/service_1_1773271362_69b1f9423d7f3.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(212,162,76,0.18), transparent 60%);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-service-hub .sct-hero-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-hero-text, .sct-tpl-service-hub .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-breadcrumb a { color: rgba(255,255,255,0.85); transition: color .3s; }

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: #fff; }

.sct-tpl-service-hub .sct-breadcrumb i { font-size: 0.65rem; color: rgba(255,255,255,0.4); }

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,162,76,0.18);
    color: #E8C468;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 18px;
    border: 1px solid rgba(212,162,76,0.35);
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-hero-text h1 .sct-gold { color: #E8C468; }

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 30px;
    max-width: 600px;
}

.sct-tpl-service-hub .sct-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all .3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.sct-tpl-service-hub .sct-btn-gold {
    background: #D4A24C;
    color: #fff;
}

.sct-tpl-service-hub .sct-btn-gold:hover {
    background: #B8862E;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(212,162,76,0.4);
}

.sct-tpl-service-hub .sct-btn-ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

.sct-tpl-service-hub .sct-btn-ghost:hover {
    background: #fff;
    color: #1B4332;
    border-color: #fff;
}

.sct-tpl-service-hub .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
}

.sct-tpl-service-hub .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sct-tpl-service-hub .sct-hero-trust i { color: #E8C468; }

.sct-tpl-service-hub .sct-hero-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    color: var(--text-dark, #1A1A1A);
    border-top: 4px solid #D4A24C;
}

.sct-tpl-service-hub .sct-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1B4332;
}

.sct-tpl-service-hub .sct-hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.sct-tpl-service-hub .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #EDEDED;
    font-size: 0.93rem;
    color: #4A4A4A;
}

.sct-tpl-service-hub .sct-hero-card-list li:last-child { border-bottom: none; }

.sct-tpl-service-hub .sct-hero-card-list i { color: #2D6A4F; margin-top: 4px; }

.sct-tpl-service-hub .sct-hero-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #1B4332;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    transition: all .3s;
}

.sct-tpl-service-hub .sct-hero-card-cta:hover { background: #2D6A4F; transform: translateY(-2px); }

.sct-tpl-service-hub .sct-stats-band {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid #F0F0E8;
}

.sct-tpl-service-hub .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sct-tpl-service-hub .sct-stats-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-stat-item {
    text-align: center;
    padding: 10px;
}

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #2D6A4F;
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.88rem;
    color: #7A7A7A;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.sct-tpl-service-hub .sct-section { padding: 90px 0; }

.sct-tpl-service-hub .sct-section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }

.sct-tpl-service-hub .sct-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #2D6A4F;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-tag::before { content: ''; width: 6px; height: 6px; background: #D4A24C; border-radius: 50%; }

.sct-tpl-service-hub .sct-section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: #1A1A1A;
}

.sct-tpl-service-hub .sct-section-title .sct-gold { color: #D4A24C; }

.sct-tpl-service-hub .sct-section-desc { font-size: 1.05rem; color: #7A7A7A; }

.sct-tpl-service-hub .sct-intro-section { background: #fff; }

.sct-tpl-service-hub .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
    font-size: 1.04rem;
    line-height: 1.85;
    color: #4A4A4A;
}

.sct-tpl-service-hub .sct-intro-content p { margin-bottom: 22px; }

.sct-tpl-service-hub .sct-intro-content p:last-child { margin-bottom: 0; }

.sct-tpl-service-hub .sct-intro-content strong { color: #1B4332; font-weight: 600; }

.sct-tpl-service-hub .sct-services-section { background: #FAFAF5; }

.sct-tpl-service-hub .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-hub .sct-services-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all .4s;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.sct-tpl-service-hub .sct-service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sct-tpl-service-hub .sct-service-card-body { padding: 26px; }

.sct-tpl-service-hub .sct-service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1B4332;
}

.sct-tpl-service-hub .sct-service-card-body p {
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-processus-section { background: #fff; }

.sct-tpl-service-hub .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.sct-tpl-service-hub .sct-processus-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-process-step {
    text-align: center;
    padding: 30px 18px;
    background: #FAFAF5;
    border-radius: 16px;
    position: relative;
    transition: all .3s;
}

.sct-tpl-service-hub .sct-process-step:hover {
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.sct-tpl-service-hub .sct-process-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4A24C 0%, #B8862E 100%);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 16px rgba(212,162,76,0.35);
}

.sct-tpl-service-hub .sct-process-step h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-process-step p {
    font-size: 0.85rem;
    color: #7A7A7A;
    line-height: 1.6;
}

.sct-tpl-service-hub .sct-why-section { background: #F5F0E8; }

.sct-tpl-service-hub .sct-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sct-tpl-service-hub .sct-why-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-why-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 18px;
    text-align: center;
    border-bottom: 4px solid #D4A24C;
    transition: all .3s;
}

.sct-tpl-service-hub .sct-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(45,106,79,0.1);
    color: #2D6A4F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.9rem;
    color: #7A7A7A;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-usecase-section { background: #fff; }

.sct-tpl-service-hub .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.sct-tpl-service-hub .sct-usecase-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-usecase-img-wrap {
    position: relative;
}

.sct-tpl-service-hub .sct-usecase-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.sct-tpl-service-hub .sct-usecase-stamp {
    position: absolute;
    bottom: -22px;
    right: -22px;
    width: 130px;
    height: 130px;
    background: #D4A24C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(212,162,76,0.4);
}

.sct-tpl-service-hub .sct-usecase-stamp i { font-size: 1.5rem; margin-bottom: 6px; }

.sct-tpl-service-hub .sct-usecase-stamp span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; text-align: center; padding: 0 10px; }

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 22px;
    color: #1A1A1A;
}

.sct-tpl-service-hub .sct-usecase-text h2 .sct-gold { color: #D4A24C; }

.sct-tpl-service-hub .sct-usecase-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sct-tpl-service-hub .sct-usecase-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #F0EFE8;
    font-size: 0.97rem;
}

.sct-tpl-service-hub .sct-usecase-list li:last-child { border-bottom: none; }

.sct-tpl-service-hub .sct-usecase-list i {
    color: #2D6A4F;
    background: rgba(45,106,79,0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.sct-tpl-service-hub .sct-usecase-list strong { color: #1B4332; }

.sct-tpl-service-hub .sct-engagements-section { background: #1B4332; color: #fff; position: relative; overflow: hidden; }

.sct-tpl-service-hub .sct-engagements-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.sct-tpl-service-hub .sct-engagements-section .sct-container { position: relative; z-index: 1; }

.sct-tpl-service-hub .sct-engagements-section .sct-section-title { color: #fff; }

.sct-tpl-service-hub .sct-engagements-section .sct-section-tag { color: #E8C468; }

.sct-tpl-service-hub .sct-engagements-section .sct-section-desc { color: rgba(255,255,255,0.78); }

.sct-tpl-service-hub .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sct-tpl-service-hub .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-engagement-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all .4s;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-6px);
    border-color: rgba(212,162,76,0.4);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4A24C 0%, #B8862E 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 24px rgba(212,162,76,0.4);
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-faq-section { background: #FAFAF5; }

.sct-tpl-service-hub .sct-faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all .3s;
}

.sct-tpl-service-hub .sct-faq-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 26px;
    font-weight: 600;
    color: #1B4332;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1.02rem;
    position: relative;
}

.sct-tpl-service-hub .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #D4A24C;
    font-size: 0.85rem;
    transition: transform .3s;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-faq-item[open] summary::after { content: '\f068'; }

.sct-tpl-service-hub .sct-faq-answer {
    padding: 0 26px 24px;
    font-size: 0.96rem;
    color: #4A4A4A;
    line-height: 1.75;
    border-top: 1px solid #F0EFE8;
    padding-top: 18px;
}

.sct-tpl-service-hub .sct-maillage-section { background: #fff; padding: 80px 0; }

.sct-tpl-service-hub .sct-maillage-section.sct-alt { background: #FAFAF5; }

.sct-tpl-service-hub .sct-maillage-header { text-align: center; max-width: 720px; margin: 0 auto 40px; }

.sct-tpl-service-hub .sct-maillage-header h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: #1A1A1A;
}

.sct-tpl-service-hub .sct-maillage-header h2 .sct-gold { color: #D4A24C; }

.sct-tpl-service-hub .sct-maillage-header p { color: #7A7A7A; font-size: 1rem; }

.sct-tpl-service-hub .sct-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-cities-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-city-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #EDEDE5;
    border-radius: 12px;
    color: #1B4332;
    font-size: 0.93rem;
    font-weight: 500;
    transition: all .3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.sct-tpl-service-hub .sct-city-link:hover {
    background: #2D6A4F;
    color: #fff;
    border-color: #2D6A4F;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(45,106,79,0.25);
}

.sct-tpl-service-hub .sct-city-link i { color: #D4A24C; font-size: 0.8rem; transition: color .3s; }

.sct-tpl-service-hub .sct-city-link:hover i { color: #E8C468; }

.sct-tpl-service-hub .sct-other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-other-services-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-other-service-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 14px;
    color: #1A1A1A;
    font-weight: 600;
    transition: all .3s;
    border-left: 3px solid #D4A24C;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.sct-tpl-service-hub .sct-other-service-link:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-left-color: #2D6A4F;
}

.sct-tpl-service-hub .sct-other-service-link i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(45,106,79,0.1);
    color: #2D6A4F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, #2D6A4F 0%, #1B4332 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212,162,76,0.2), transparent 50%);
}

.sct-tpl-service-hub .sct-cta-final .sct-container { position: relative; z-index: 1; }

.sct-tpl-service-hub .sct-cta-final h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-cta-final h2 .sct-gold { color: #E8C468; }

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin: 0 auto 32px;
}

.sct-tpl-service-hub .sct-cta-final-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 130px 0 80px; }
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-usecase-img-wrap img { height: 380px; }
    .sct-tpl-service-hub .sct-cities-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-hub .sct-other-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-section { padding: 70px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 110px 0 60px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 0.98rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 24px; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-usecase-img-wrap img { height: 280px; }
    .sct-tpl-service-hub .sct-usecase-stamp { width: 100px; height: 100px; bottom: -16px; right: -10px; }
    .sct-tpl-service-hub .sct-cities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sct-tpl-service-hub .sct-city-link { padding: 12px 14px; font-size: 0.88rem; }
    .sct-tpl-service-hub .sct-other-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-section-header { margin-bottom: 40px; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; }
    .sct-tpl-service-hub .sct-faq-item summary { padding: 18px 20px; font-size: 0.95rem; }
    .sct-tpl-service-hub .sct-faq-answer { padding: 18px 20px 20px; }
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(27,67,50,0.92) 0%, rgba(45,106,79,0.85) 100%), url('/images/service_2_1773271381_69b1f955c866b.webp') center/cover no-repeat;
    color: #fff;
}

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

.sct-tpl-zone {
    font-family: 'DM Sans', sans-serif;
    color: #4A4A4A;
    background: #FAFAF5;
    line-height: 1.7;
}

.sct-tpl-zone h1, .sct-tpl-zone h2, .sct-tpl-zone h3, .sct-tpl-zone h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #1A1A1A;
    line-height: 1.2;
}

.sct-tpl-zone .sct-section { padding: 90px 0; }

@media (max-width: 640px) { .sct-tpl-zone .sct-section { padding: 60px 0; } }

.sct-tpl-zone .sct-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #2D6A4F;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-label .sct-dot {
    width: 6px; height: 6px;
    background: #D4A24C;
    border-radius: 50%;
}

.sct-tpl-zone .sct-section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: #1A1A1A;
}

.sct-tpl-zone .sct-section-title .sct-gold { color: #D4A24C; }

.sct-tpl-zone .sct-section-desc {
    font-size: 1.05rem;
    color: #7A7A7A;
    max-width: 720px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sct-tpl-zone .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sct-tpl-zone .sct-hero-grid > * { min-width: 0; }

.sct-tpl-zone .sct-hero-text, .sct-tpl-zone .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.sct-tpl-zone .sct-breadcrumb a { color: rgba(255,255,255,0.85); }

.sct-tpl-zone .sct-breadcrumb a:hover { color: #E8C468; }

.sct-tpl-zone .sct-breadcrumb .sct-sep { color: rgba(255,255,255,0.4); }

.sct-tpl-zone .sct-breadcrumb .sct-current { color: #E8C468; font-weight: 600; }

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 162, 76, 0.18);
    color: #E8C468;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 162, 76, 0.3);
}

.sct-tpl-zone .sct-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-hero h1 .sct-gold { color: #E8C468; }

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.7;
}

.sct-tpl-zone .sct-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.sct-tpl-zone .sct-btn-gold {
    background: #D4A24C;
    color: #fff;
}

.sct-tpl-zone .sct-btn-gold:hover {
    background: #B8862E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,162,76,0.4);
}

.sct-tpl-zone .sct-btn-ghost {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.sct-tpl-zone .sct-btn-ghost:hover {
    background: #fff;
    color: #1B4332;
    border-color: #fff;
}

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.sct-tpl-zone .sct-hero-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sct-tpl-zone .sct-hero-card-icon {
    width: 50px;
    height: 50px;
    background: #D4A24C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.sct-tpl-zone .sct-hero-card-head h3 {
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.sct-tpl-zone .sct-hero-card-head p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.sct-tpl-zone .sct-hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sct-tpl-zone .sct-hero-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
}

.sct-tpl-zone .sct-hero-card-list li i {
    color: #E8C468;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-card { padding: 24px; }
}

.sct-tpl-zone .sct-stats-band {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid #EDEDED;
}

.sct-tpl-zone .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sct-tpl-zone .sct-stats-grid > * { min-width: 0; }

.sct-tpl-zone .sct-stat-item {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid #EDEDED;
}

.sct-tpl-zone .sct-stat-item:last-child { border-right: none; }

.sct-tpl-zone .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #2D6A4F;
    margin-bottom: 4px;
    line-height: 1;
}

.sct-tpl-zone .sct-stat-value .sct-gold { color: #D4A24C; }

.sct-tpl-zone .sct-stat-label {
    font-size: 0.85rem;
    color: #7A7A7A;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sct-tpl-zone .sct-stat-item { border-right: none; }
}

.sct-tpl-zone .sct-intro-section {
    background: #FAFAF5;
}

.sct-tpl-zone .sct-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: center;
}

.sct-tpl-zone .sct-intro-grid > * { min-width: 0; }

.sct-tpl-zone .sct-intro-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.sct-tpl-zone .sct-intro-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.sct-tpl-zone .sct-intro-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.sct-tpl-zone .sct-intro-img-badge i {
    color: #D4A24C;
    font-size: 1.2rem;
}

.sct-tpl-zone .sct-intro-img-badge span {
    font-weight: 700;
    color: #1A1A1A;
    font-size: 0.92rem;
}

.sct-tpl-zone .sct-intro-text h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-intro-text h2 .sct-gold { color: #D4A24C; }

.sct-tpl-zone .sct-intro-text p {
    margin-bottom: 14px;
    line-height: 1.8;
    color: #4A4A4A;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-zone .sct-intro-img-wrap img { height: 360px; }
}

.sct-tpl-zone .sct-services-section {
    background: #fff;
}

.sct-tpl-zone .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.sct-tpl-zone .sct-services-grid > * { min-width: 0; }

.sct-tpl-zone .sct-service-card {
    background: #FAFAF5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    border: 1px solid #EDEDED;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
    border-color: #D4A24C;
}

.sct-tpl-zone .sct-service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sct-tpl-zone .sct-service-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-service-icon {
    width: 46px;
    height: 46px;
    background: rgba(45,106,79,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D6A4F;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-service-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
    line-height: 1.4;
}

.sct-tpl-zone .sct-service-card p {
    font-size: 0.92rem;
    color: #7A7A7A;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.sct-tpl-zone .sct-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2D6A4F;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-service-link:hover {
    color: #D4A24C;
    gap: 12px;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
}

.sct-tpl-zone .sct-zones-section {
    background: #FAFAF5;
}

.sct-tpl-zone .sct-zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sct-tpl-zone .sct-zones-grid > * { min-width: 0; }

.sct-tpl-zone .sct-zone-tag {
    background: #fff;
    border-radius: 12px;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #EDEDED;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-zone-tag:hover {
    border-color: #D4A24C;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sct-tpl-zone .sct-zone-tag i {
    color: #D4A24C;
    font-size: 1rem;
}

.sct-tpl-zone .sct-zone-tag span {
    font-weight: 600;
    color: #1A1A1A;
    font-size: 0.92rem;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(2, 1fr); }
}

.sct-tpl-zone .sct-usecase-section {
    background: #fff;
}

.sct-tpl-zone .sct-usecase-card {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    border-radius: 24px;
    padding: 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-usecase-card::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    right: -10px;
    font-size: 12rem;
    color: rgba(212,162,76,0.08);
    line-height: 1;
}

.sct-tpl-zone .sct-usecase-card .sct-section-label { color: #E8C468; }

.sct-tpl-zone .sct-usecase-card .sct-section-label .sct-dot { background: #E8C468; }

.sct-tpl-zone .sct-usecase-card h2 {
    color: #fff;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.sct-tpl-zone .sct-usecase-card h2 .sct-gold { color: #E8C468; }

.sct-tpl-zone .sct-usecase-content {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 760px;
}

.sct-tpl-zone .sct-usecase-content p { margin-bottom: 14px; }

@media (max-width: 640px) {
    .sct-tpl-zone .sct-usecase-card { padding: 32px 24px; }
}

.sct-tpl-zone .sct-engagements-section {
    background: #FAFAF5;
}

.sct-tpl-zone .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-zone .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-zone .sct-engagement-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-top: 4px solid #D4A24C;
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4A24C 0%, #B8862E 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.sct-tpl-zone .sct-engagement-card p {
    font-size: 0.92rem;
    color: #7A7A7A;
    line-height: 1.65;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; gap: 20px; }
}

.sct-tpl-zone .sct-local-spec {
    background: #fff;
}

.sct-tpl-zone .sct-local-spec-card {
    background: #FAFAF5;
    border-left: 5px solid #D4A24C;
    border-radius: 16px;
    padding: 36px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-local-spec-card .sct-spec-icon {
    width: 54px;
    height: 54px;
    background: rgba(212,162,76,0.18);
    color: #B8862E;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-local-spec-card h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-local-spec-card p {
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 12px;
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-local-spec-card { padding: 28px 24px; }
}

.sct-tpl-zone .sct-faq-section {
    background: #FAFAF5;
}

.sct-tpl-zone .sct-faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid #EDEDED;
}

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    font-weight: 700;
    color: #1A1A1A;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    list-style: none;
}

.sct-tpl-zone .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-zone .sct-faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #D4A24C;
    font-size: 0.9rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-faq-item[open] summary::after {
    content: '\f068';
}

.sct-tpl-zone .sct-faq-item .sct-faq-body {
    padding: 0 26px 22px;
    color: #4A4A4A;
    line-height: 1.75;
    font-size: 0.95rem;
}

.sct-tpl-zone .sct-maillage-section {
    background: #fff;
}

.sct-tpl-zone .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FAFAF5;
    border: 1px solid #EDEDED;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1B4332;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-maillage-list a:hover {
    background: #2D6A4F;
    color: #fff;
    border-color: #2D6A4F;
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-maillage-list a i {
    color: #D4A24C;
    font-size: 0.8rem;
}

.sct-tpl-zone .sct-maillage-list a:hover i {
    color: #E8C468;
}

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sct-tpl-zone .sct-cta-final-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-cta-final h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-cta-final h2 .sct-gold { color: #E8C468; }

.sct-tpl-zone .sct-cta-final p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.sct-tpl-zone .sct-cta-final-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 10px 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.4s;
}

.page-hero {
    position: relative;
    padding: 180px 24px 100px;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 60%, var(--forest-light) 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 162, 76, 0.2);
    color: var(--gold-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 162, 76, 0.3);
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.page-hero h1 .gold { color: var(--gold-light); }

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}

.breadcrumb a:hover { color: var(--gold-light); }

.breadcrumb i { font-size: 0.7rem; opacity: 0.6; }

.sitemap-section {
    padding: 80px 0;
    background: var(--cream);
}

.sitemap-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 106, 79, 0.06);
    transition: all 0.3s;
}

.sitemap-block:hover {
    box-shadow: var(--shadow-md);
}

.sitemap-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px dashed rgba(212, 162, 76, 0.3);
}

.sitemap-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(45, 106, 79, 0.25);
}

.sitemap-block-title {
    flex: 1;
}

.sitemap-block-title h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.sitemap-block-title h2 .gold { color: var(--gold); }

.sitemap-block-title p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.sitemap-count {
    background: rgba(45, 106, 79, 0.08);
    color: var(--forest);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: var(--cream);
    border: 1.5px solid rgba(45, 106, 79, 0.12);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s;
    line-height: 1.3;
}

.chip:hover {
    background: var(--forest);
    color: #fff;
    border-color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 106, 79, 0.25);
}

.chip i {
    color: var(--gold);
    font-size: 0.78rem;
    transition: color 0.3s;
}

.chip:hover i {
    color: var(--gold-light);
}

.chip.chip-primary {
    background: var(--forest);
    color: #fff;
    border-color: var(--forest);
}

.chip.chip-primary i { color: var(--gold-light); }

.chip.chip-primary:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
}

.sub-block {
    margin-top: 24px;
    padding: 22px 24px;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--gold);
}

.sub-block:first-of-type { margin-top: 8px; }

.sub-block h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-block h3 i {
    color: var(--gold-dark);
    font-size: 0.95rem;
}

.sub-block .chips-grid .chip {
    background: var(--white);
    font-size: 0.85rem;
    padding: 9px 16px;
}

.sitemap-cta {
    margin-top: 16px;
    padding: 48px 36px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    border-radius: var(--radius);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sitemap-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 162, 76, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.sitemap-cta h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.sitemap-cta h2 .gold { color: var(--gold-light); }

.sitemap-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.sitemap-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 162, 76, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--forest-dark);
    border-color: #fff;
}

.footer {
    background: var(--forest-dark);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 30px;
    position: relative;
}

.footer .container {
    max-width: 1240px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 16px 0 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}

.footer-mini-form p {
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.footer-mini-form input,
.footer-mini-form textarea {
    width: 100%;
    padding: 11px 14px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: all 0.3s;
}

.footer-mini-form input::placeholder,
.footer-mini-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer-mini-form input:focus,
.footer-mini-form textarea:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}

.footer-mini-form textarea {
    resize: vertical;
    min-height: 70px;
}

.footer-mini-btn {
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sitemap-block {
        padding: 32px 24px;
    }
    .sitemap-block-header {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 140px 20px 80px;
    }
    .page-hero h1 {
        font-size: 2.1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .sitemap-block {
        padding: 28px 20px;
    }
    .sitemap-block-header {
        gap: 12px;
    }
    .sitemap-block-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    .sub-block {
        padding: 18px 16px;
    }
    .chip {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* === HEADER MENU RULES (extracted from home inline) === */

.top-bar { background: transparent !important; }
.top-bar.scrolled { background: rgba(255,255,255,0.97) !important; }
#menuCheck:checked ~ .sidebar-nav { left: 0 !important; }
#menuCheck:checked ~ .nav-overlay { display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important; }
.nav-overlay { cursor: pointer; }
label.sidebar-close { cursor: pointer; }
body:has(#menuCheck:checked) { overflow: hidden; }
/* ====== SIDEBAR NAVIGATION ====== */
        .nav-overlay { position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s; }
.nav-overlay.active { opacity: 1;
            visibility: visible; }
.sidebar-nav { position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            height: 100vh;
            background: var(--white);
            z-index: 999;
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 4px 0 30px rgba(0,0,0,0.15);
            overflow-y: auto; }
.sidebar-nav.active { left: 0; }
.sidebar-header { padding: 28px 24px;
            border-bottom: 1px solid #EDEDED;
            display: flex;
            align-items: center;
            justify-content: space-between; }
.sidebar-logo { display: flex;
            align-items: center;
            gap: 10px; }
.sidebar-logo img { height: 38px;
            width: auto;
            border-radius: 8px; }
.sidebar-logo span { font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--forest-dark); }
.sidebar-close { width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: var(--cream);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text-muted);
            transition: all 0.3s; }
.sidebar-close:hover { background: var(--forest);
            color: #fff; }
.sidebar-links { list-style: none;
            padding: 16px 0;
            flex: 1; }
.sidebar-links li a { display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-dark);
            transition: all 0.3s;
            border-left: 3px solid transparent; }
.sidebar-links li a:hover { background: rgba(45, 106, 79, 0.06);
            color: var(--forest);
            border-left-color: var(--forest); }
.sidebar-links li a i { width: 20px;
            text-align: center;
            color: var(--gold);
            font-size: 0.95rem; }
.sidebar-footer { padding: 20px 24px;
            border-top: 1px solid #EDEDED; }
.sidebar-cta { display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px;
            background: var(--forest);
            color: #fff;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s; }
.sidebar-cta:hover { background: var(--forest-dark); }
/* Top Bar */
        .top-bar { position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 900;
            padding: 16px 0;
            transition: all 0.4s; }
.top-bar.scrolled { background: rgba(255,255,255,0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            padding: 10px 0; }
.top-bar .bar-inner { max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between; }
.menu-toggle { display: flex;
            align-items: center;
            gap: 10px;
            background: none;
            border: 2px solid rgba(45, 106, 79, 0.2);
            padding: 10px 18px;
            border-radius: 50px;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--forest-dark);
            transition: all 0.3s; }
.menu-toggle:hover { background: var(--forest);
            color: #fff;
            border-color: var(--forest); }
.top-bar.scrolled .menu-toggle { color: var(--forest-dark); }
/* On hero (not scrolled), make toggle white */
        .menu-toggle .bar-icon { display: flex;
            flex-direction: column;
            gap: 4px; }
.menu-toggle .bar-icon span { width: 18px;
            height: 2px;
            background: currentColor;
            border-radius: 2px;
            transition: all 0.3s; }
.menu-toggle .bar-icon span:nth-child(2) { width: 14px; }
.bar-logo { display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.2rem; }
.bar-logo img { height: 40px;
            width: auto;
            border-radius: 8px; }
.bar-logo span { color: var(--forest-dark); }
.top-bar:not(.scrolled) .bar-logo span { color: #fff; }
.top-bar:not(.scrolled) .menu-toggle { color: #fff;
            border-color: rgba(255,255,255,0.35); }
.bar-cta { display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold);
            color: #fff;
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s; }
.bar-cta:hover { background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 162, 76, 0.4); }
.bar-cta { display: none; }
