﻿:root {
    --bg: #f5f8f4;
    --surface: #ffffff;
    --surface-soft: #eef4ec;
    --text: #16251c;
    --muted: #5c6a61;
    --accent: #59d68a;
    --accent-dark: #27945d;
    --accent-soft: rgba(89, 214, 138, 0.18);
    --border: rgba(30, 60, 42, 0.12);
    --shadow: 0 28px 55px rgba(18, 38, 28, 0.16);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 14px;
    --sidebar-bg: linear-gradient(180deg, #101b13 0%, #112918 100%);
}

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

body {
    margin: 0;
    font-family: "Be Vietnam Pro", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-sm);
    transition: transform 0.4s ease, filter 0.4s ease;
}

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

h1,
 h2,
 h3,
 h4 {
    margin: 0;
    line-height: 1.2;
    color: var(--text);
    font-weight: 700;
}

p {
    margin: 0;
    color: var(--muted);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page {
    display: flex;
    gap: 40px;
    min-height: 100vh;
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 48px 64px;
}

.sidebar {
    width: 260px;
    background: var(--sidebar-bg);
    color: #f5fff7;
    padding: 32px 28px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 24px;
    height: calc(100vh - 48px);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.brand {
    font-size: 26px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.tagline {
    font-size: 14px;
    color: rgba(245, 255, 247, 0.65);
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav a {
    padding: 12px 16px;
    border-radius: 16px;
    font-weight: 500;
    color: rgba(245, 255, 247, 0.82);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(4px);
}

.nav a.active {
    background: rgba(89, 214, 138, 0.22);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(89, 214, 138, 0.4);
}

.sidebar .contact-box {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 22px;
    display: grid;
    gap: 16px;
    font-size: 14px;
    color: rgba(245, 255, 247, 0.85);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(18, 38, 28, 0.18);
}

.btn.primary {
    background: var(--accent);
    color: #05351c;
}

.btn.primary:hover,
.btn.primary:focus-visible {
    background: var(--accent-dark);
    color: #f4fff9;
}

.btn.ghost {
    background: transparent;
    border-color: rgba(18, 38, 28, 0.2);
    color: var(--text);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    background: linear-gradient(135deg, #09170f 5%, #12311d 55%, #174328 100%);
    color: #f1fff6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-media {
    position: relative;
    min-height: 420px;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 28, 18, 0.25), rgba(12, 28, 18, 0.55));
}

.hero-body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.hero .eyebrow {
    color: rgba(241, 255, 246, 0.7);
}

.hero h1 {
    font-size: 38px;
    color: #ffffff;
}

.hero p {
    color: rgba(241, 255, 246, 0.8);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 14px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat .number {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.section-header {
    display: grid;
    gap: 12px;
    max-width: 720px;
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(22, 37, 28, 0.6);
    font-weight: 600;
}

.section-description {
    font-size: 16px;
}

.surface-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border: 1px solid rgba(22, 37, 28, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.surface-card.soft {
    background: var(--surface-soft);
    box-shadow: none;
    border: 1px solid var(--border);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.metric-card {
    background: var(--surface-soft);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid rgba(89, 214, 138, 0.25);
    display: grid;
    gap: 8px;
}

.metric-card .number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-dark);
}

.metric-card .label {
    color: var(--muted);
    font-size: 14px;
}

.philosophy-grid,
.projects-grid,
.gallery-grid,
.services-grid,
.reviews-grid,
.faq-grid,
.offices-grid,
.contact-channel-grid {
    display: grid;
    gap: 24px;
}

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

.card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(22, 37, 28, 0.06);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover:not(.project-card) {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(18, 38, 28, 0.14);
    border-color: rgba(89, 214, 138, 0.2);
}

.card.soft {
    background: var(--surface-soft);
    box-shadow: none;
    border-color: var(--border);
}

.card h3 {
    font-size: 22px;
}

.card p {
    color: var(--muted);
    font-size: 15px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.tag:hover {
    background: rgba(89, 214, 138, 0.28);
    transform: scale(1.05);
}

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

/* Uniform gallery thumbnails */
.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

/* Gallery skeleton thumbnails */
.gallery-grid .skeleton-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: var(--radius-md);
    background: linear-gradient(90deg, #e8efe7 25%, #f4faf3 37%, #e8efe7 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s ease infinite;
}

.project-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(18, 38, 28, 0.16);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 0.15;
}

.project-card img {
    border-radius: 0;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-card .card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Skeleton loading for projects list */
.skeleton-card {
    overflow: hidden;
}
.skeleton-thumb {
    height: 200px;
    border-radius: 0;
    background: linear-gradient(90deg, #e8efe7 25%, #f4faf3 37%, #e8efe7 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s ease infinite;
}
.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #e8efe7 25%, #f4faf3 37%, #e8efe7 63%);
    background-size: 400% 100%;
    border-radius: 8px;
    animation: shimmer 1.2s ease infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
}

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

.service-card ul {
    display: grid;
    gap: 8px;
    padding-left: 18px;
    list-style: disc;
    color: var(--muted);
}


.review-card blockquote {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: var(--text);
    font-weight: 500;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--muted);
}

.newsletter-card {
    display: grid;
    gap: 16px;
}

.newsletter-form {
    display: flex;
    gap: 14px;
    background: var(--surface-soft);
    border-radius: 999px;
    padding: 6px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text);
}

.newsletter-form input[type="email"]:focus-visible {
    outline: none;
}

.newsletter-form button {
    border: none;
    background: var(--accent);
    color: #042f18;
    font-weight: 600;
    border-radius: 999px;
    padding: 0 24px;
    cursor: pointer;
}

.site-footer {
    background: #101b13;
    color: rgba(245, 255, 247, 0.9);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.site-footer h4 {
    color: #ffffff;
    font-size: 18px;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    color: rgba(245, 255, 247, 0.7);
    font-size: 14px;
}

.site-footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer .footer-brand p {
    color: rgba(245, 255, 247, 0.8);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(245, 255, 247, 0.55);
    border-top: 1px solid rgba(245, 255, 247, 0.1);
    padding-top: 18px;
}

.page-header {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.page-header h1 {
    font-size: 40px;
}

.page-header p {
    font-size: 16px;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.list-check {
    display: grid;
    gap: 12px;
}

.list-check li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: 15px;
}

.list-check li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-dark);
    font-size: 14px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.process-step {
    text-align: center;
    background: var(--surface-soft);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    border: 1px solid rgba(22, 37, 28, 0.08);
    display: grid;
    gap: 8px;
}

.process-step .step-index {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

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

.stepper-track {
    position: relative;
    height: 6px;
    background: rgba(18, 38, 28, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.stepper-progress {
    position: absolute;
    inset: 0;
    width: 33.33%;
    background: var(--accent);
    border-radius: 999px;
    transition: width 0.3s ease;
}

.stepper-items {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

.stepper-index {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(18, 38, 28, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #ffffff;
}

.stepper-item.active .stepper-index {
    background: var(--accent);
    color: #04361d;
}

.stepper-item.completed .stepper-index {
    background: var(--accent-dark);
    color: #f5fff7;
}

.multi-step-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-step {
    display: none;
    gap: 20px;
}

.form-step.active {
    display: grid;
}

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

.form-grid-1 {
    grid-template-columns: minmax(0, 1fr);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    border: 1px solid rgba(22, 37, 28, 0.18);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 3px rgba(89, 214, 138, 0.25);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.option-pills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.option-pill {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.option-pill:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.option-pill input {
    display: none;
}

.option-pill .title {
    font-weight: 600;
    color: var(--text);
}

.option-pill .subtitle {
    font-size: 13px;
    color: var(--muted);
}

.option-pill.selected {
    border-color: var(--accent-dark);
    background: rgba(89, 214, 138, 0.15);
    box-shadow: 0 12px 24px rgba(18, 38, 28, 0.12);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.form-actions .btn {
    min-width: 140px;
}

.highlight-box {
    background: rgba(89, 214, 138, 0.16);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    font-size: 14px;
    color: var(--text);
}

.contact-channel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-channel-card {
    text-align: center;
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(22, 37, 28, 0.08);
    display: grid;
    gap: 12px;
}


.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto;
    background: rgba(89, 214, 138, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-dark);
}

.icon-circle span[data-lucide] {
    display: inline-flex;
}

.icon-circle svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-dark);
    stroke-width: 1.75;
}

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


.office-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(22, 37, 28, 0.06);
    display: grid;
    gap: 12px;
}

.map-card img {
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-md);
}


details.faq-item {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(22, 37, 28, 0.06);
}

details.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
}

details.faq-item[open] summary {
    color: var(--accent-dark);
}

details.faq-item p {
    margin-top: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    font-size: 14px;
}

th, td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(22, 37, 28, 0.12);
    text-align: left;
}

th {
    font-weight: 600;
    color: var(--text);
    background: var(--surface-soft);
}

tr:last-child td {
    border-bottom: none;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 1280px) {
    .page {
        padding: 24px 32px 48px;
        gap: 28px;
    }

    .metrics-grid,
    .projects-grid,
    .gallery-grid,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-media {
        min-height: 280px;
    }
}

@media (max-width: 1024px) {
    .page {
        flex-direction: column;
    }

    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        border-radius: 24px;
    }

    .nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar .contact-box {
        display: none;
    }

    .content {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .metrics-grid,
    .projects-grid,
    .gallery-grid,
    .services-grid,
    .reviews-grid,
    .philosophy-grid,
    .faq-grid,
    .offices-grid,
    .contact-channel-grid,
    .process-steps,
    .two-column {
        grid-template-columns: minmax(0, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 24px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 14px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .page {
        padding: 18px 18px 36px;
    }

    .sidebar {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .hero-body {
        padding: 32px;
    }

    .surface-card {
        padding: 28px;
    }

    .card {
        padding: 24px;
    }

    .site-footer {
        grid-template-columns: minmax(0, 1fr);
        padding: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== SCROLL ANIMATIONS ========== */

/* Fade in from bottom animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to elements - Minimal for better UX */

/* Stagger animation for main project cards only */
.projects-grid .card {
    animation: fadeInUp 0.5s ease-out both;
}

.projects-grid .card:nth-child(1) { animation-delay: 0.05s; }
.projects-grid .card:nth-child(2) { animation-delay: 0.1s; }
.projects-grid .card:nth-child(3) { animation-delay: 0.15s; }
.projects-grid .card:nth-child(4) { animation-delay: 0.2s; }
.projects-grid .card:nth-child(5) { animation-delay: 0.25s; }
.projects-grid .card:nth-child(6) { animation-delay: 0.3s; }

/* Bento gallery - subtle fade in only */
.bento-gallery img {
    animation: fadeInUp 0.4s ease-out both;
}

/* Hero section animations - only on homepage */
.home .hero-media {
    animation: scaleIn 0.6s ease-out 0.1s both;
}

.home .hero-body {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}







.hero-actions .btn.ghost {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.hero-actions .btn.ghost:hover,
.hero-actions .btn.ghost:focus-visible {
    border-color: rgba(255, 255, 255, 0.9);
    color: #12311d;
    background: #ffffff;
}

/* Contact page: make two contact cards split 50/50 */
.contact .contact-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .contact .contact-channel-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Bento Grid Gallery Layout */
.bento-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.bento-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.bento-gallery img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

/* Bento grid layout patterns */
.bento-gallery .img-1 {
    grid-column: span 3;
    grid-row: span 2;
}

.bento-gallery .img-2 {
    grid-column: span 3;
    grid-row: span 1;
}

.bento-gallery .img-3 {
    grid-column: span 3;
    grid-row: span 1;
}

.bento-gallery .img-4 {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-gallery .img-5 {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-gallery .img-6 {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-gallery .img-7 {
    grid-column: span 3;
    grid-row: span 1;
}

.bento-gallery .img-8 {
    grid-column: span 3;
    grid-row: span 1;
}

.bento-gallery .img-9 {
    grid-column: span 4;
    grid-row: span 2;
}

.bento-gallery .img-10 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-gallery .img-11 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-gallery .img-12 {
    grid-column: span 2;
    grid-row: span 2;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.pagination-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent-dark);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(89, 214, 138, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover {
    transform: none;
    background: var(--surface);
    border-color: var(--border);
}

.pagination-dots {
    color: var(--muted);
    padding: 0 8px;
    user-select: none;
}

/* Gallery Back Button */
.gallery-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 24px;
    color: var(--text);
    font-weight: 600;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.gallery-back:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent-dark);
    transform: translateX(-4px);
}

/* Lightbox for Image Viewer */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 27, 19, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 75%;
    max-height: 80%;
    animation: zoomIn 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 30px rgba(89, 214, 138, 0.4);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    user-select: none;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(89, 214, 138, 0.4);
}

.lightbox-nav.prev {
    left: 40px;
}

.lightbox-nav.next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    
    .lightbox-nav.prev {
        left: 16px;
    }
    
    .lightbox-nav.next {
        right: 16px;
    }
    
    .lightbox-close {
        width: 44px;
        height: 44px;
        font-size: 24px;
        top: 16px;
        right: 16px;
    }
    
    .lightbox-content {
        max-width: 90%;
        max-height: 75%;
    }
    
    .lightbox-content img {
        max-height: 70vh;
    }
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Unified Contact Card */
.contact-unified-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
    padding: 40px 0;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.contact-method .icon-circle {
    width: 64px;
    height: 64px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.contact-method .icon-circle svg {
    width: 32px;
    height: 32px;
    color: var(--accent-dark);
}

.contact-method h3 {
    font-size: 24px;
    margin: 0;
    color: var(--text);
}

.contact-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-dark);
    margin: 8px 0;
    letter-spacing: 0.02em;
}

.contact-hint {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 16px 0;
}

.divider-vertical {
    width: 2px;
    height: 280px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--border) 10%, 
        var(--border) 90%, 
        transparent 100%
    );
}

/* QR Code styling */
.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
}

.qr-code-container img {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    border: 3px solid var(--accent-soft);
    padding: 8px;
    background: white;
    box-shadow: 0 4px 12px rgba(89, 214, 138, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(89, 214, 138, 0.3);
}

.qr-label {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    font-weight: 500;
}

/* Responsive Bento Gallery */
@media (max-width: 900px) {
    .bento-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-unified-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px 0;
    }
    
    .divider-vertical {
        display: none;
    }
    
    .contact-number {
        font-size: 28px;
    }
    
    .qr-code-container img {
        width: 160px;
        height: 160px;
    }
}
    
    .bento-gallery .img-1,
    .bento-gallery .img-2,
    .bento-gallery .img-3,
    .bento-gallery .img-4,
    .bento-gallery .img-5,
    .bento-gallery .img-6,
    .bento-gallery .img-7,
    .bento-gallery .img-8,
    .bento-gallery .img-9,
    .bento-gallery .img-10,
    .bento-gallery .img-11,
    .bento-gallery .img-12 {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .bento-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .pagination {
        gap: 8px;
    }
    
    .pagination-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}


