/* ÇUVAL CENTER — Modern Design System */
:root {
    --primary: #1B4332;
    --primary-light: #2D6A4F;
    --accent: #C9A227;
    --accent-soft: #F4E9C8;
    --bg: #F7F6F3;
    --surface: #FFFFFF;
    --text: #141814;
    --text-muted: #5C6560;
    --border: rgba(20, 24, 20, 0.08);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 8px 32px rgba(20, 24, 20, 0.08);
    --shadow-lg: 0 20px 48px rgba(20, 24, 20, 0.12);
    --nav-height: 72px;
    --section-gap: clamp(4rem, 8vw, 6rem);
    --section-inner-gap: 3rem;
    --grid-gap: 1.25rem;
    --card-min-height: 100%;
    --container: 1200px;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --bs-primary: #1B4332;
    --bs-primary-rgb: 27, 67, 50;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text);
}

p {
    color: var(--text-muted);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-light);
}

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

.container-modern {
    width: min(var(--container), calc(100% - 2rem));
    margin-inline: auto;
}

.section__container {
    width: min(var(--container), calc(100% - 2rem));
    margin-inline: auto;
}

.site-main {
    display: block;
}

/* ─── Unified grids (equal columns & row height) ─── */
.grid {
    display: grid;
    gap: var(--grid-gap);
    align-items: stretch;
}

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

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

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

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

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

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

@media (min-width: 992px) {
    .grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Equal-height card base */
.card-equal {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.card-equal__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.card-equal__footer {
    margin-top: auto;
    padding-top: 1rem;
}

/* ─── Navbar ─── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.site-nav__inner {
    width: min(var(--container), 100%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo__img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: block;
}

.site-logo svg.site-logo__img {
    flex-shrink: 0;
}

.site-logo__text span {
    color: var(--primary);
}

.site-logo__mark {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__links a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    transition: color 0.2s, background 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a.active {
    color: var(--text);
    background: rgba(27, 67, 50, 0.06);
}

.site-nav__cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-modern:hover {
    transform: translateY(-1px);
}

.btn-modern--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(27, 67, 50, 0.25);
}

.btn-modern--primary:hover {
    background: var(--primary-light);
    color: #fff;
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
}

.btn-modern--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-modern--ghost:hover {
    background: var(--surface);
    color: var(--text);
    border-color: rgba(20, 24, 20, 0.15);
}

.btn-modern--accent {
    background: var(--accent);
    color: var(--text);
}

.btn-modern--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-modern--sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-modern--on-dark {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    background: transparent;
}

.btn-modern--on-dark:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .site-nav__menu {
        display: block;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--surface);
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .site-nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav__links {
        flex-direction: column;
        width: 100%;
    }

    .site-nav__links a {
        padding: 0.875rem 1rem;
        width: 100%;
    }

    .site-nav__cta {
        flex-direction: column;
        width: 100%;
        margin-top: 0.5rem;
    }

    .site-nav__cta .btn-modern {
        width: 100%;
    }
}

/* ─── Hero Bento ─── */
.hero {
    padding: calc(var(--nav-height) + 2rem) 0 var(--section-gap);
}

/* ─── Info strip ─── */
.info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--grid-gap);
    justify-content: center;
    margin-bottom: var(--section-gap);
}

.hero-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
}

.bento-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.bento-card--hero {
    grid-column: span 7;
    grid-row: span 2;
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 60%, #40916C 100%);
    border: none;
    color: #fff;
}

.bento-card--hero h1 {
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: 1rem;
}

.bento-card--hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    display: block;
}

.bento-card--image {
    grid-column: span 5;
    grid-row: span 2;
    min-height: 420px;
}

.bento-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-card--stat {
    grid-column: span 4;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bento-card--stat strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.bento-card--stat span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.bento-card--cta {
    grid-column: span 4;
    padding: 1.5rem;
    background: var(--accent-soft);
    border-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.bento-card--cta a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.bento-card--hero .eyebrow {
    color: var(--accent-soft);
}

.hero-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    text-transform: none;
    letter-spacing: normal;
}

.hero-eyebrow__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(201, 162, 39, 0.14);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: var(--radius-full);
}

.hero-eyebrow__title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: #fff;
}

.hero-eyebrow__title em {
    font-style: normal;
    color: var(--accent);
}

.eyebrow--compact {
    color: var(--primary);
    margin-bottom: 0;
}

.text-muted-sm {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 991px) {
    .bento-card--hero,
    .bento-card--image,
    .bento-card--stat,
    .bento-card--cta {
        grid-column: span 12;
        grid-row: auto;
        min-height: auto;
    }

    .bento-card--image {
        min-height: 280px;
    }

    .bento-card--hero {
        min-height: auto;
    }
}

.info-pill {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

.info-pill i {
    color: var(--primary);
}

.info-pill strong {
    color: var(--text);
    font-weight: 600;
}

/* ─── Sections ─── */
.section {
    padding: var(--section-gap) 0;
}

.section--compact {
    padding-top: 0;
}

.section-header {
    max-width: 640px;
    margin-bottom: var(--section-inner-gap);
}

.section-header.center {
    text-align: center;
    margin-inline: auto;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.05rem;
}

/* ─── Product grid ─── */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
    align-items: stretch;
}

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

@media (min-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.04);
}

.product-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.product-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(27, 67, 50, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.product-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.9rem;
    margin: 0;
}

.product-card p {
    font-size: 0.9rem;
    margin: 0;
    flex: 1 1 auto;
}

/* ─── Feature grid ─── */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
    align-items: stretch;
}

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

.feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    border-color: rgba(27, 67, 50, 0.2);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(27, 67, 50, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    margin: 0;
}

.feature-card p {
    font-size: 0.9rem;
    margin: 0;
    flex: 1 1 auto;
}

/* ─── Split section ─── */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .split {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.split__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split__checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: 0.75rem;
}

.split__checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.split__checklist i {
    color: var(--primary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* ─── Owners ─── */
.owner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
    align-items: stretch;
    max-width: 720px;
    margin-inline: auto;
}

@media (min-width: 640px) {
    .owner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.owner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.owner-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.owner-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.owner-card .role {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.owner-avatar--accent {
    background: var(--accent);
    color: var(--text);
}

.owner-card a {
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: auto;
}

/* ─── Reviews ─── */
.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
    align-items: stretch;
}

@media (min-width: 640px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .review-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.review-stars {
    color: var(--accent);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-style: normal;
    flex: 1 1 auto;
}

.review-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-top: auto;
}

.review-author span {
    display: block;
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.review-card__source {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.review-card__source .fab {
    color: #4285F4;
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}

.reviews-google-cta {
    text-align: center;
    margin-top: var(--section-inner-gap);
}

.reviews-google-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.reviews-google-cta a .fab {
    color: #4285F4;
    font-family: "Font Awesome 5 Brands";
}

/* ─── CTA Banner ─── */
.cta-banner {
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: #fff;
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ─── Page hero (subpages) ─── */
.page-hero {
    padding: calc(var(--nav-height) + 2.5rem) 0 2.5rem;
    text-align: center;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.page-hero__inner {
    max-width: 640px;
    margin-inline: auto;
}

.page-hero__logo-wrap {
    margin-bottom: 1rem;
}

.page-hero__logo,
.page-hero__logo-wrap svg {
    display: block;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 0;
}

/* ─── Contact cards ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
    align-items: stretch;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 300px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.contact-card__icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.contact-card i.contact-card__icon {
    display: block;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card__actions {
    margin-top: auto;
    padding-top: 1.25rem;
    width: 100%;
    max-width: 200px;
}

.btn-modern--block {
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 1.25rem;
}

.btn-modern--whatsapp {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(27, 67, 50, 0.25);
}

.btn-modern--whatsapp:hover {
    background: var(--primary-light);
    color: #fff;
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
}

.cta-banner .btn-modern--whatsapp {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: none;
}

.cta-banner .btn-modern--whatsapp:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: none;
}

.site-footer .btn-modern--whatsapp {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.site-footer .btn-modern--whatsapp:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    box-shadow: none;
}

.btn-modern .fab,
.btn-modern .fa {
    font-size: 1rem;
    line-height: 1;
}

.btn-modern .fab.fa-whatsapp {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}

/* ─── Map ─── */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* ─── Product page categories ─── */
.category-block + .category-block {
    margin-top: var(--section-inner-gap);
}

.category-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-title i {
    color: var(--primary);
    width: 1.25rem;
    text-align: center;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
    align-items: stretch;
}

@media (min-width: 640px) {
    .quality-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .quality-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.quality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 140px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}

.quality-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.quality-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.quality-item p {
    font-size: 0.8rem;
    margin: 0;
}

.quality-item p {
    font-size: 0.8rem;
    margin: 0;
    flex: 1 1 auto;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
    color: #fff;
}

.footer-note {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-brand img {
    flex-shrink: 0;
    display: block;
}

.footer-brand svg {
    flex-shrink: 0;
    display: block;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-links h4 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── Utilities ─── */
.text-center { text-align: center; }
.mt-section { margin-top: var(--section-inner-gap); }
.mt-4 { margin-top: 1.5rem; }
.mb-section { margin-bottom: var(--section-inner-gap); }
.bg-surface { background: var(--surface); }

@media (min-width: 992px) {
    .site-nav__menu {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
    }
}

/* Legacy template elements — hidden if present */
#spinner,
.top-bar,
.header-carousel,
.back-to-top,
.owl-nav {
    display: none !important;
}

/* Bootstrap overrides */
.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    border-radius: var(--radius-full) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

/* Legacy compat - neutralize old hover */
.product-item:hover {
    background: var(--surface) !important;
}

.product-item:hover * {
    color: inherit !important;
}

.fact-item:hover {
    margin-top: 0 !important;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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