/* Tuana Tatil Köyü — Doğa temalı butik otel */

:root {
    --green-dark: #2d5a3d;
    --green: #3d7a52;
    --green-light: #5a9e6f;
    --cream: #f5f0e8;
    --cream-dark: #e8dfd0;
    --wood: #8b6914;
    --wood-light: #c4a35a;
    --white: #ffffff;
    --text: #2c2c2c;
    --text-muted: #5c5c5c;
    --shadow: 0 4px 24px rgba(45, 90, 61, 0.12);
    --radius: 12px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Nunito', 'Segoe UI', sans-serif;
    --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.7;
    background-color: #eef3e8;
    background-image:
        radial-gradient(ellipse at 12% 8%, rgba(90, 158, 111, 0.18), transparent 42%),
        radial-gradient(ellipse at 88% 12%, rgba(139, 105, 20, 0.10), transparent 38%),
        radial-gradient(ellipse at 50% 100%, rgba(45, 90, 61, 0.08), transparent 50%),
        linear-gradient(180deg, #f4f1e8 0%, #e8efe3 45%, #e4ebe0 100%);
    padding-bottom: 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.3;
    color: var(--green-dark);
}

a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-light); }

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.main-header {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.97), rgba(248,245,238,0.95));
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-dark);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
}

.brand-icon { color: var(--green); font-size: 1.5rem; }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.86rem;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--green-dark); }

.nav-menu .nav-cta a.btn-primary,
.nav-menu .nav-cta a.btn-primary:hover,
.nav-menu .nav-cta a.btn-primary:focus {
    color: #ffffff !important;
}

.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--font-sans);
}

.btn-primary,
a.btn-primary,
.nav-menu .nav-cta a.btn-primary {
    background: var(--green-dark);
    color: #ffffff;
    border-color: var(--green-dark);
}

.btn-primary:hover,
a.btn-primary:hover,
.nav-menu .nav-cta a.btn-primary:hover {
    background: var(--green);
    border-color: var(--green);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--green-dark) center/cover no-repeat;
    color: var(--white);
    padding: 2rem 1rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,90,61,0.25), rgba(45,90,61,0.15));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-content .hero-badge,
.hero-content h1,
.hero-content p {
    text-shadow:
        -2px -2px 0 #000,
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000,
         0   -2px 0 #000,
         0    2px 0 #000,
        -2px  0   0 #000,
         2px  0   0 #000;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Video showcase */
.video-showcase {
    position: relative;
    padding: 0 0 4.5rem;
    margin-top: -2.5rem;
    z-index: 2;
}

.video-showcase-inner {
    display: grid;
    gap: 1.75rem;
    background:
        linear-gradient(160deg, rgba(45, 90, 61, 0.96), rgba(61, 122, 82, 0.9)),
        linear-gradient(45deg, rgba(139, 105, 20, 0.18), transparent 55%);
    border-radius: 28px;
    padding: clamp(1.5rem, 3vw, 2.75rem);
    box-shadow: 0 28px 60px rgba(45, 90, 61, 0.28);
    color: var(--white);
    overflow: hidden;
}

.press-showcase {
    background:
        linear-gradient(160deg, rgba(45, 90, 61, 0.94), rgba(45, 90, 61, 0.82)),
        radial-gradient(circle at top right, rgba(196, 163, 90, 0.22), transparent 45%);
}

.video-showcase-copy {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.video-kicker {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.video-showcase-copy h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.65rem;
}

.video-showcase-copy p {
    opacity: 0.92;
    max-width: 520px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0f1f15;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    aspect-ratio: 16 / 9;
}

.video-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #0f1f15;
}

@media (min-width: 900px) {
    .video-showcase-inner {
        grid-template-columns: 0.85fr 1.15fr;
        align-items: center;
        gap: 2.5rem;
    }

    .video-showcase-copy {
        text-align: left;
        margin: 0;
    }

    .video-showcase-copy p {
        margin: 0;
    }
}

/* Page header */
.page-header {
    background: var(--green-dark) center/cover no-repeat;
    color: var(--white);
    padding: 5rem 0 3.5rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0.75rem 0 0.5rem;
}

.page-header p { opacity: 0.9; max-width: 560px; margin: 0 auto; }

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section-alt {
    background:
        radial-gradient(ellipse at 10% 0%, rgba(90, 158, 111, 0.08), transparent 40%),
        radial-gradient(ellipse at 90% 100%, rgba(139, 105, 20, 0.06), transparent 42%),
        linear-gradient(180deg, #fbf8f2 0%, #f3eee5 100%);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); }

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45,90,61,0.18);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-image img { transform: scale(1.06); }

.card-body { padding: 1.5rem; }

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-body h3 { margin-bottom: 0.5rem; font-size: 1.35rem; }
.card-body p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }

/* Feature highlight */
.highlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.highlight-card:nth-child(even) .highlight-image { order: 2; }
.highlight-card:nth-child(even) .highlight-text { order: 1; }

.highlight-image { min-height: 280px; }
.highlight-image img { width: 100%; height: 100%; object-fit: cover; }

.highlight-text {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-text h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.highlight-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* Rooms */
.room-card .room-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.room-features li {
    background: var(--cream);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--green-dark);
    font-weight: 600;
}

.room-price {
    font-weight: 700;
    color: var(--wood);
    margin-bottom: 1rem;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-content p { margin-bottom: 1rem; color: var(--text-muted); }

.about-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.about-showcase-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-showcase-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.about-showcase-copy h2 {
    margin-bottom: 0.75rem;
}

.about-showcase-copy p {
    color: var(--text-muted);
}

.about-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.about-facility-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 240px;
    box-shadow: var(--shadow);
}

.about-facility-card img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.about-facility-card:hover img {
    transform: scale(1.06);
}

.about-facility-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    background: linear-gradient(180deg, transparent 25%, rgba(16, 35, 24, 0.78));
    color: #fff;
}

.about-facility-overlay h3 {
    color: #fff;
    margin-bottom: 0.25rem;
}

.about-facility-overlay span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-mission-grid .about-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.about-mission-grid .about-content p {
    text-align: left;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius);
}

.value-item i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 0.75rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

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

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

.gallery-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--cream-dark);
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    transition: all 0.2s;
    font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
}

/* Content blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p { margin-bottom: 1.25rem; color: var(--text-muted); }

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feature-list i {
    color: var(--green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Map */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

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

.map-actions {
    text-align: center;
    margin-top: 1.25rem;
}

.contact-map-section {
    padding-top: 0;
}

.directions-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.directions-box h3 { margin-bottom: 1rem; }
.directions-box ol { padding-left: 1.25rem; color: var(--text-muted); }
.directions-box li { margin-bottom: 0.5rem; }

/* Forms */
.form-section { padding: 4rem 0; }

.page-header + .section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 12% 18%, rgba(90, 158, 111, 0.16), transparent 42%),
        radial-gradient(ellipse at 88% 12%, rgba(196, 163, 90, 0.18), transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(45, 90, 61, 0.10), transparent 55%),
        linear-gradient(165deg, #f3ebe0 0%, #e7f0e4 48%, #efe4d4 100%);
}

.page-header + .section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%232d5a3d' stroke-opacity='0.14' stroke-width='1.4'%3E%3Cpath d='M20 140 C40 100 35 70 55 40'/%3E%3Cpath d='M55 70 C70 55 68 35 82 18'/%3E%3Cpath d='M90 140 C108 105 104 72 122 48'/%3E%3Cpath d='M122 78 C134 64 132 48 144 34'/%3E%3C/g%3E%3Cg fill='%238b6914' fill-opacity='0.12'%3E%3Ccircle cx='52' cy='38' r='3'/%3E%3Ccircle cx='80' cy='20' r='2.2'/%3E%3Ccircle cx='120' cy='50' r='2.6'/%3E%3Ccircle cx='142' cy='36' r='2'/%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='120' viewBox='0 0 220 120'%3E%3Cg fill='%23244934' fill-opacity='0.08'%3E%3Cpath d='M10 120 L28 58 L46 120 Z'/%3E%3Cpath d='M40 120 L62 40 L84 120 Z'/%3E%3Cpath d='M78 120 L96 70 L114 120 Z'/%3E%3Cpath d='M130 120 L152 48 L174 120 Z'/%3E%3Cpath d='M170 120 L190 66 L210 120 Z'/%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.35), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.25), transparent 26%);
    background-size: 180px 180px, 260px 140px, auto, auto;
    background-position: 0 0, bottom left, center, center;
    background-repeat: repeat, repeat-x, no-repeat, no-repeat;
}

.page-header + .section > .container {
    position: relative;
    z-index: 1;
}

.contact-section {
    padding: 4.5rem 0;
}

.contact-pattern {
    display: none;
}

.contact-section-inner {
    position: relative;
    z-index: 1;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background:
        linear-gradient(165deg, rgba(255,255,255,0.96), rgba(247, 242, 233, 0.94));
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 90, 61, 0.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background:
        linear-gradient(165deg, rgba(255,255,255,0.96), rgba(240, 247, 236, 0.94));
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 90, 61, 0.08);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    flex-shrink: 0;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.2s;
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* CTA band */
.cta-band {
    background:
        linear-gradient(135deg, rgba(45, 90, 61, 0.92), rgba(61, 122, 82, 0.88)),
        radial-gradient(circle at 20% 20%, rgba(196, 163, 90, 0.25), transparent 40%),
        linear-gradient(160deg, #2d5a3d, #3d7a52);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { opacity: 0.9; margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Breadcrumb */
.breadcrumb { margin-bottom: 0.5rem; }
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    justify-content: center;
}

.breadcrumb-list a { color: rgba(255,255,255,0.85); }
.breadcrumb-list a:hover { color: var(--white); }
.breadcrumb-list .active span { color: var(--wood-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* Footer — forest atmosphere */
.main-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,0.88);
    padding: 4rem 0 0;
    background:
        linear-gradient(180deg, rgba(24, 48, 32, 0.25) 0%, transparent 28%),
        linear-gradient(160deg, #1a3324 0%, #244a32 42%, #1f3d29 100%);
}

.footer-canopy,
.footer-forest {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-canopy {
    background-image:
        radial-gradient(ellipse 120px 70px at 8% 0%, rgba(20, 40, 28, 0.55), transparent 70%),
        radial-gradient(ellipse 160px 90px at 28% -5%, rgba(28, 55, 36, 0.5), transparent 72%),
        radial-gradient(ellipse 140px 80px at 52% 0%, rgba(18, 38, 26, 0.6), transparent 70%),
        radial-gradient(ellipse 170px 95px at 78% -8%, rgba(30, 58, 38, 0.48), transparent 72%),
        radial-gradient(ellipse 130px 75px at 96% 0%, rgba(22, 44, 30, 0.55), transparent 70%);
    opacity: 0.95;
}

.footer-forest {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='140' viewBox='0 0 180 140'%3E%3Cg fill='%2315261c' fill-opacity='0.35'%3E%3Cpath d='M20 140 L35 70 L50 140 Z'/%3E%3Cpath d='M45 140 L62 55 L79 140 Z'/%3E%3Cpath d='M75 140 L90 80 L105 140 Z'/%3E%3Cpath d='M100 140 L120 48 L140 140 Z'/%3E%3Cpath d='M135 140 L150 85 L165 140 Z'/%3E%3C/g%3E%3Cg fill='%230f1a14' fill-opacity='0.28'%3E%3Cpath d='M0 140 L18 95 L36 140 Z'/%3E%3Cpath d='M55 140 L72 88 L89 140 Z'/%3E%3Cpath d='M110 140 L128 92 L146 140 Z'/%3E%3Cpath d='M150 140 L168 100 L180 140 L150 140 Z'/%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23c4a35a' stroke-opacity='0.12' stroke-width='1'%3E%3Cpath d='M10 110 C30 70 25 40 40 20'/%3E%3Cpath d='M40 45 C52 35 48 22 58 12'/%3E%3Cpath d='M70 110 C85 75 80 45 95 25'/%3E%3Cpath d='M95 50 C105 38 102 26 110 16'/%3E%3C/g%3E%3Ccircle cx='38' cy='22' r='2.2' fill='%235a9e6f' fill-opacity='0.22'/%3E%3Ccircle cx='93' cy='28' r='1.8' fill='%235a9e6f' fill-opacity='0.2'/%3E%3Ccircle cx='58' cy='14' r='1.5' fill='%23c4a35a' fill-opacity='0.18'/%3E%3C/svg%3E"),
        radial-gradient(ellipse at 30% 80%, rgba(90, 158, 111, 0.12), transparent 45%),
        radial-gradient(ellipse at 75% 70%, rgba(139, 105, 20, 0.10), transparent 40%);
    background-size: 220px 170px, 140px 140px, auto, auto;
    background-position: bottom left, top right, center, center;
    background-repeat: repeat-x, repeat, no-repeat, no-repeat;
    opacity: 0.9;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.5rem; }
.footer-section a { color: rgba(255,255,255,0.8); }
.footer-section a:hover { color: var(--white); }
.footer-section p { margin-bottom: 0.5rem; font-size: 0.92rem; }
.footer-section i { margin-right: 0.5rem; color: var(--wood-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.75;
    background: linear-gradient(180deg, transparent, rgba(10, 20, 14, 0.35));
}

.footer-credit {
    margin-top: 0.55rem;
    opacity: 1;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.footer-credit a:hover {
    color: var(--wood-light);
}

/* Mobile action bar */
.mobile-action-bar {
    display: none;
}

/* WhatsApp float (desktop) */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5rem;
}

.lightbox[hidden] { display: none; }

.lightbox-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(90vw, 1100px);
    width: 100%;
}

.lightbox img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.lightbox-counter {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 3;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(145deg, var(--green-dark), var(--green));
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 24px rgba(45, 90, 61, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 3;
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.08);
    background: linear-gradient(145deg, var(--green), var(--green-light));
    box-shadow:
        0 12px 32px rgba(45, 90, 61, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(1.02);
}

.lightbox-nav:disabled,
.lightbox-nav[hidden] {
    display: none;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

@media (max-width: 768px) {
    .lightbox {
        padding: 1.5rem 3.5rem;
    }

    .lightbox-nav {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .lightbox-prev { left: 0.65rem; }
    .lightbox-next { right: 0.65rem; }
}

/* 404 */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
}

.error-page h1 { font-size: 6rem; color: var(--green-light); }
.error-page p { color: var(--text-muted); margin: 1rem 0 2rem; }

/* Responsive */
@media (max-width: 992px) {
    .about-grid,
    .about-showcase,
    .about-facilities-grid,
    .split-section,
    .highlight-card,
    .contact-grid { grid-template-columns: 1fr; }

    .about-facilities-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card:nth-child(even) .highlight-image { order: 0; }
    .highlight-card:nth-child(even) .highlight-text { order: 0; }

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

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

    .nav-menu {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--cream);
    }

    .nav-cta { margin: 1rem 0 0; }
    .nav-cta .btn { width: 100%; }

    .video-showcase {
        margin-top: -1.5rem;
        padding-bottom: 3rem;
    }

    .video-showcase-inner {
        border-radius: 20px;
        padding: 1.25rem;
    }

    .form-row { grid-template-columns: 1fr; }
    .hero { min-height: 70vh; }
    .section { padding: 3rem 0; }

    .whatsapp-float { display: none; }

    body {
        padding-bottom: 72px;
    }

    .mobile-action-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        height: 64px;
        width: 100%;
        box-shadow: 0 -8px 28px rgba(20, 40, 28, 0.28);
    }

    .mobile-action {
        position: relative;
        flex: 1 1 50%;
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        color: #fff;
        font-weight: 800;
        font-size: 1.05rem;
        letter-spacing: 0.02em;
        text-decoration: none;
        overflow: hidden;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-action i {
        font-size: 1.35rem;
    }

    .mobile-action-whatsapp {
        background: linear-gradient(160deg, #3b8f5a, #2f6f46);
        color: rgba(255, 255, 255, 0.78);
        filter: saturate(0.78) brightness(0.92);
    }

    .mobile-action-whatsapp:hover,
    .mobile-action-whatsapp:active {
        color: rgba(255, 255, 255, 0.9);
    }

    .mobile-action-call {
        background:
            linear-gradient(135deg, #c4a35a 0%, #e0b85d 45%, #8b6914 100%);
        color: #fff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
        animation: callGlow 2.2s ease-in-out infinite;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    }

    .mobile-action-call i {
        animation: callRing 1.6s ease-in-out infinite;
        transform-origin: 50% 50%;
    }

    .mobile-action-call .call-pulse {
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
        transform: translateX(-120%);
        animation: callShine 2.8s linear infinite;
        pointer-events: none;
    }

    .mobile-action-call::after {
        content: '';
        position: absolute;
        inset: 6px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        pointer-events: none;
        animation: callBorder 2.2s ease-in-out infinite;
    }
}

@keyframes callGlow {
    0%, 100% {
        filter: brightness(1);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.25),
            0 0 0 0 rgba(196, 163, 90, 0.45);
    }
    50% {
        filter: brightness(1.12);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.4),
            0 0 22px 2px rgba(224, 184, 93, 0.55);
    }
}

@keyframes callRing {
    0%, 100% { transform: rotate(0deg) scale(1); }
    10% { transform: rotate(-12deg) scale(1.08); }
    20% { transform: rotate(12deg) scale(1.08); }
    30% { transform: rotate(-8deg) scale(1.05); }
    40% { transform: rotate(8deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1); }
}

@keyframes callShine {
    0% { transform: translateX(-120%); }
    45%, 100% { transform: translateX(120%); }
}

@keyframes callBorder {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.85; }
}

/* Video gallery */
.videos-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(90, 158, 111, 0.14), transparent 42%),
        radial-gradient(ellipse at 90% 20%, rgba(196, 163, 90, 0.16), transparent 40%),
        linear-gradient(180deg, #f7f2e8 0%, #eaf2e7 55%, #f3ebe0 100%);
}

.videos-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%232d5a3d' stroke-opacity='0.15' stroke-width='1.3'%3E%3Cpath d='M18 120 C34 82 30 58 48 34'/%3E%3Cpath d='M48 58 C60 46 58 30 70 16'/%3E%3Cpath d='M82 120 C98 86 94 60 112 38'/%3E%3C/g%3E%3Cg fill='%238b6914' fill-opacity='0.12'%3E%3Ccircle cx='46' cy='34' r='2.5'/%3E%3Ccircle cx='68' cy='18' r='2'/%3E%3Ccircle cx='110' cy='40' r='2.3'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 160px 160px;
}

.videos-showcase .container {
    position: relative;
    z-index: 1;
}

.videos-header .videos-kicker {
    display: inline-block;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--wood);
    margin-bottom: 0.65rem;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.video-card {
    position: relative;
    background:
        linear-gradient(165deg, rgba(255,255,255,0.96), rgba(243, 246, 239, 0.98));
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(45, 90, 61, 0.14);
    border: 1px solid rgba(45, 90, 61, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(45, 90, 61, 0.2);
}

.video-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    align-items: stretch;
}

.video-card-media {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #102318;
}

.video-card-featured .video-card-media {
    aspect-ratio: auto;
    min-height: 320px;
    height: 100%;
}

.video-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.video-card:hover .video-card-media img {
    transform: scale(1.05);
}

.video-card-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 35, 24, 0.05), rgba(16, 35, 24, 0.45)),
        radial-gradient(circle at 70% 20%, rgba(196, 163, 90, 0.18), transparent 40%);
    pointer-events: none;
}

.video-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
}

.video-play-badge {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    background: linear-gradient(145deg, rgba(45, 90, 61, 0.94), rgba(139, 105, 20, 0.88));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.25s ease;
}

.video-card:hover .video-play-badge {
    transform: translate(-50%, -50%) scale(1.08);
}

.video-card-body {
    padding: 1.35rem 1.45rem 1.55rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-card-featured .video-card-body {
    padding: 2rem;
    background:
        linear-gradient(160deg, rgba(45, 90, 61, 0.06), rgba(196, 163, 90, 0.08)),
        #fbf8f1;
}

.video-card-body h3 {
    font-size: 1.28rem;
    margin-bottom: 0.45rem;
}

.video-card-body p {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin-bottom: 0.85rem;
}

.video-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    color: var(--green-dark);
}

.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(8, 16, 12, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.video-lightbox[hidden] { display: none; }

.video-lightbox-dialog {
    width: min(960px, 100%);
}

.video-lightbox-dialog video {
    width: 100%;
    max-height: 75vh;
    background: #000;
    border-radius: 14px;
}

.video-lightbox-title {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 0.85rem;
    font-weight: 700;
}

.video-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.4rem;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 900px) {
    .video-gallery-grid,
    .video-card-featured {
        grid-template-columns: 1fr;
    }

    .video-card-featured {
        grid-column: auto;
    }

    .video-card-featured .video-card-media {
        min-height: 220px;
    }
}

/* Blog */
.blog-hero .blog-hero-kicker {
    display: inline-block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.blog-hero-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    opacity: 0.92;
    font-size: 0.95rem;
}

.blog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.blog-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(45, 90, 61, 0.15);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.88rem;
    transition: 0.2s ease;
}

.blog-chip:hover,
.blog-chip.active {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    border-color: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(165deg, rgba(255,255,255,0.96), rgba(244, 248, 239, 0.94));
    box-shadow: 0 14px 36px rgba(45, 90, 61, 0.12);
    min-height: 100%;
}

.blog-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 360px;
}

.blog-card-media {
    position: relative;
    display: block;
    min-height: 240px;
    overflow: hidden;
}

.blog-card-featured .blog-card-media {
    min-height: 100%;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.06);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(16, 35, 24, 0.45));
}

.blog-card-category {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
}

.blog-accent-history .blog-card-category {
    background: linear-gradient(135deg, #8b6914, #c4a35a);
    color: #fff;
}

.blog-accent-nature .blog-card-category {
    background: linear-gradient(135deg, #2d5a3d, #5a9e6f);
    color: #fff;
}

.blog-card-body {
    padding: 1.6rem 1.7rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.blog-meta i { margin-right: 0.35rem; color: var(--green); }

.blog-card-body h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

.blog-card-body h2 a {
    color: var(--green-dark);
}

.blog-card-body h2 a:hover {
    color: var(--green);
}

.blog-card-body p {
    color: var(--text-muted);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
    font-weight: 800;
    color: var(--green-dark);
}

.blog-read-more:hover {
    gap: 0.75rem;
}

.blog-empty {
    text-align: center;
    color: var(--text-muted);
}

.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
    align-items: start;
}

.blog-article-main {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246, 249, 242, 0.95));
    border-radius: 24px;
    padding: clamp(1.25rem, 3vw, 2.25rem);
    box-shadow: var(--shadow);
}

.blog-article-cover {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 16 / 9;
}

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

.blog-article-lead {
    font-size: 1.15rem;
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(45, 90, 61, 0.12);
}

.blog-article-content p {
    color: var(--text-muted);
    margin-bottom: 1.15rem;
    font-size: 1.05rem;
}

.blog-tips {
    margin: 2rem 0;
    padding: 1.4rem 1.5rem;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(45, 90, 61, 0.08), rgba(139, 105, 20, 0.08)),
        #f7f4ec;
    border: 1px solid rgba(45, 90, 61, 0.1);
}

.blog-tips h2 {
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.blog-tips ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-muted);
}

.blog-tips li { margin-bottom: 0.45rem; }

.blog-article-cta {
    margin-top: 2rem;
    padding: 1.6rem;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(45, 90, 61, 0.1), rgba(196, 163, 90, 0.12)),
        #eef5ef;
}

.blog-article-cta h3 {
    margin-bottom: 0.4rem;
}

.blog-article-cta p {
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.blog-sidebar-card {
    background:
        linear-gradient(165deg, rgba(255,255,255,0.96), rgba(241, 246, 238, 0.95));
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.blog-sidebar-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
}

.blog-related-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.blog-related-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.75rem;
    align-items: center;
    color: inherit;
}

.blog-related-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-related-item strong {
    display: block;
    font-size: 0.92rem;
    color: var(--green-dark);
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

.blog-related-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .blog-card-featured {
        grid-template-columns: 1fr;
    }

    .blog-article-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-media {
        min-height: 210px;
    }
}
