/* ========================================
   Maurice Hangl – Hausmeisterservice
   Modern Light Theme
   ======================================== */

/* --- Self-hosted Fonts --- */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/inter-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/inter-800.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/plus-jakarta-sans-400.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/plus-jakarta-sans-500.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/plus-jakarta-sans-600.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/plus-jakarta-sans-700.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/plus-jakarta-sans-800.woff2') format('woff2'); }

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #57c123;
    --color-primary-dark: #469e1c;
    --color-primary-light: #eaf6e3;
    --color-primary-rgb: 87, 193, 35;

    --color-secondary: #5a5e5b;
    --color-accent: #57c123;

    --color-bg: #ffffff;
    --color-bg-alt: #f5f6f7;
    --color-bg-card: #ffffff;

    --color-text: #151716;
    --color-text-secondary: #5a5e5b;
    --color-text-light: #8a8e8b;

    --color-border: #dee2e6;
    --color-border-light: #f0f1f2;

    --gradient-primary: linear-gradient(135deg, #57c123 0%, #469e1c 100%);
    --gradient-text: linear-gradient(135deg, #469e1c 0%, #57c123 50%, #3a8516 100%);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: clip;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

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

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

ul {
    list-style: none;
}

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

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

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Section Styles --- */
.section {
    padding: 100px 0;
}

.section__header {
    margin-bottom: 60px;
}

.section__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn--primary {
    background: var(--gradient-primary);
    color: #151716;
    box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--color-primary-rgb), 0.4);
}

.btn--primary:active {
    transform: translateY(0);
}

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

.btn--outline:hover {
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.btn--white {
    background: #151716;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--sm {
    padding: 9px 20px;
    font-size: 13px;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(21, 23, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text);
}

.navbar__logo-imgs {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.navbar__logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
}

.navbar__logo-img--dark  { opacity: 1; }
.navbar__logo-img--light { opacity: 0; }

.navbar.scrolled .navbar__logo-img--dark  { opacity: 0; }
.navbar.scrolled .navbar__logo-img--light { opacity: 1; }

.footer__logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.navbar__brand-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.navbar__brand {
    color: #fff;
}

.navbar__tagline {
    font-size: 11px;
    font-weight: 400;
    color: var(--color-text-light);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.navbar.scrolled .navbar__tagline {
    color: #fff;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar__link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 0;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
}

.navbar__link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--color-primary);
    background: none;
}

.navbar__link:hover::after,
.navbar__link.active::after {
    transform: scaleX(1);
}

.navbar__cta {
    padding: 10px 24px;
    font-size: 14px;
}

.navbar__cta--mobile {
    display: none;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
}

.navbar__toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1.2px);
    transform: scale(1.01);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(21, 23, 22, 0.8) 0%,
        rgba(21, 23, 22, 0.65) 30%,
        rgba(21, 23, 22, 0.75) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 60px;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.hero__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.hero__stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.hero__stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 4px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg);
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
    animation: bounce-scroll 2s ease-in-out infinite;
    transition: box-shadow 0.3s ease;
}

.hero__scroll-btn:hover {
    box-shadow: var(--shadow-lg);
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* --- About --- */
.about {
    background: var(--color-bg-alt);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__portrait {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.image-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-border-light);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.about__experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: #151716;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.about__experience-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.about__experience-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.about__text {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
    color: var(--color-text);
}

.about__feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__feature-icon svg {
    width: 18px;
    height: 18px;
}

/* --- Services --- */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.5s var(--ease-out);
}

.service-card:hover .service-card__icon {
    background: var(--gradient-primary);
    color: #151716;
    transform: scale(1.1);
}

.service-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.service-card__text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: gap 0.3s ease;
}

.service-card__link:hover {
    gap: 12px;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 20px 0;
}

.cta-banner__inner {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.cta-banner__inner::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.cta-banner__title {
    font-size: 32px;
    font-weight: 800;
    color: #151716;
    margin-bottom: 8px;
}

.cta-banner__text {
    font-size: 16px;
    color: #3a3d3b;
}

/* --- Gallery --- */
.gallery {
    background: var(--color-bg-alt);
}

/* Filter tabs */
.gallery__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery__filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-border);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery__filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.gallery__filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #151716;
    box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
}

/* Grid */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery__item.hidden {
    display: none;
}

.gallery__item.is-hiding {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}

.gallery__item.is-showing {
    animation: galleryItemIn 0.4s var(--ease-out) both;
}

@keyframes galleryItemIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
    display: block;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.06);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 23, 22, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__overlay::after {
    content: '';
    width: 44px;
    height: 44px;
    background: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3Cpath d='M11 8v6M8 11h6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* Empty state */
.gallery__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-light);
    font-size: 16px;
    display: none;
}

.gallery__empty.visible {
    display: block;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { top: 50%; left: 24px;  transform: translateY(-50%); }
.lightbox__next  { top: 50%; right: 24px; transform: translateY(-50%); }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: var(--font-sans);
    user-select: none;
}

/* --- Testimonials --- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.5s var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-card__name {
    font-size: 15px;
    color: var(--color-text);
    display: block;
}

.testimonial-card__role {
    font-size: 13px;
    color: var(--color-text-light);
}

/* --- Contact --- */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.contact__detail span {
    font-size: 15px;
    color: var(--color-text-secondary);
}

.contact__phone-link {
    font-size: 15px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact__phone-link:hover {
    color: var(--color-primary);
}

.contact__form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    outline: none;
}

.form__input::placeholder {
    color: var(--color-text-light);
}

.form__input:focus {
    border-color: var(--color-primary);
    background: var(--color-bg);
    box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.1);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a7a82' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Footer --- */
.footer {
    background: #151716;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer__desc {
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
}

.footer__title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer__links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer__links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer__links--contact li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 14px;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: #fff;
}

/* --- Animations --- */

/* Fade Up */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal Left */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Reveal Right */
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Stagger children */
.fade-up[data-delay="100"] { transition-delay: 100ms; }
.fade-up[data-delay="200"] { transition-delay: 200ms; }
.fade-up[data-delay="300"] { transition-delay: 300ms; }
.fade-up[data-delay="400"] { transition-delay: 400ms; }
.fade-up[data-delay="500"] { transition-delay: 500ms; }

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

    .about__experience-badge {
        right: 20px;
        bottom: -10px;
    }

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

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

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

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

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

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

@media (max-width: 768px) {
    .navbar__nav,
    .navbar__cta {
        display: none;
    }

    .navbar__nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(21, 23, 22, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
        animation: slideDown 0.4s var(--ease-out);
    }

    .navbar__nav.active .navbar__link {
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 12px 16px;
    }

    .navbar__nav.active .navbar__link::after {
        display: none;
    }

    .navbar__nav.active .navbar__link:hover,
    .navbar__nav.active .navbar__link.active {
        color: var(--color-primary);
    }

    .navbar__cta--mobile {
        display: flex;
        justify-content: center;
        margin-top: 8px;
        width: 100%;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar__toggle {
        display: flex;
    }

    .hero__content {
        padding-top: 100px;
    }

    .hero__title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero__stats {
        gap: 20px;
    }

    .hero__stat-number {
        font-size: 28px;
    }

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

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

    .gallery__overlay {
        opacity: 1;
    }

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }
}

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

    .gallery__filter-btn {
        padding: 6px 14px;
        font-size: 13px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

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

    .contact__form-wrapper {
        padding: 24px;
    }

    .cta-banner__inner {
        padding: 32px 24px;
    }

    .cta-banner__title {
        font-size: 24px;
    }
}

/* ── Cookie Consent ─────────────────────────────────────────── */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 340px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--color-border-light);
    padding: 24px;
    transform: translateY(calc(100% + 32px));
    opacity: 0;
    transition: transform 0.5s var(--ease-out), opacity 0.5s ease;
    pointer-events: none;
}

.cookie-consent.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-consent.is-hiding {
    transform: translateY(calc(100% + 32px));
    opacity: 0;
    pointer-events: none;
}

.cookie-consent__icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cookie-consent__icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary-dark);
}

.cookie-consent__title {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.cookie-consent__text {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-consent__link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
    white-space: nowrap;
}

.cookie-consent__link:hover {
    color: var(--color-primary-dark);
}

.cookie-consent__btn {
    flex: 1;
    justify-content: center;
}

@media (max-width: 400px) {
    .cookie-consent {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 12px;
    }
}

/* ── Service Area Map ────────────────────────────────────────── */
.service-area {
    background: var(--color-bg-alt);
}

.service-area__header {
    text-align: center;
    margin-bottom: 48px;
}

.service-area__subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-top: 16px;
}

.service-area__map {
    height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-marker {
    background: none;
    border: none;
}

.map-marker__dot {
    width: 20px;
    height: 20px;
    background: #57c123;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(87, 193, 35, 0.5);
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal-left,
    .reveal-right,
    .fade-up {
        opacity: 1 !important;
        transform: none !important;
    }
}
