* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #1f2933;
    line-height: 1.6;
}

header {
    background: #ffffff;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1f5c3b;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #1f2933;
    font-weight: 600;
}

.hero {
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('../images/deck-hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #d69b3a;
    color: white;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.section {
    padding: 70px 8%;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1f5c3b;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.card h3 {
    margin-bottom: 12px;
    color: #1f5c3b;
}

.cta {
    background: #1f5c3b;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

footer {
    background: #111827;
    color: white;
    padding: 35px 8%;
    text-align: center;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav {
        margin-top: 15px;
    }

    nav a {
        display: inline-block;
        margin: 8px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    max-width: 700px;
    margin-top: 30px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

.process-section {
    background: #f8fafc;
}

.testimonial-section {
    background: #f9fafb;
}

.testimonial-section .card {
    border-left: 5px solid #d69b3a;
}

.section > p {
    max-width: 850px;
    font-size: 18px;
}

.card {
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .section h2 {
        font-size: 30px;
    }
}

.modern-hero {
    position: relative;
    min-height: 92vh;
    background: url('../images/deck-hero.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 22, 18, 0.88), rgba(10, 22, 18, 0.45), rgba(10, 22, 18, 0.15));
}

.modern-hero-content {
    position: relative;
    max-width: 760px;
    color: white;
    z-index: 2;
}

.hero-badge,
.section-label {
    display: inline-block;
    background: rgba(214, 155, 58, 0.15);
    color: #d69b3a;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: bold;
    margin-bottom: 16px;
}

.modern-hero h1 {
    font-size: 66px;
    line-height: 1.05;
    margin-bottom: 22px;
}

.modern-hero p {
    font-size: 21px;
    max-width: 650px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 13px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: #1f5c3b;
}

.modern-section {
    padding: 90px 8%;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.split-text h2,
.section-center h2,
.premium-cta h2 {
    font-size: 44px;
    color: #1f5c3b;
    margin-bottom: 18px;
    line-height: 1.15;
}

.split-text p,
.section-center p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
}

.split-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.light-bg {
    background: #f8fafc;
}

.section-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.modern-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.modern-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.14);
}

.modern-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.modern-card div {
    padding: 26px;
}

.modern-card h3 {
    color: #1f5c3b;
    margin-bottom: 10px;
}

.process-list {
    display: grid;
    gap: 18px;
}

.process-list div {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
}

.process-list strong {
    background: #1f5c3b;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.premium-cta {
    margin: 70px 8%;
    padding: 70px 30px;
    text-align: center;
    border-radius: 30px;
    background: linear-gradient(135deg, #1f5c3b, #123826);
    color: white;
}

.premium-cta h2 {
    color: white;
}

.premium-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.text-link {
    color: #1f5c3b;
    font-weight: bold;
    text-decoration: none;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .modern-hero h1 {
        font-size: 42px;
    }

    .split-section,
    .modern-cards {
        grid-template-columns: 1fr;
    }

    .reverse .split-image {
        order: 2;
    }

    .split-image img {
        height: 320px;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu-toggle {
    display: none;
    background: #1f5c3b;
    color: white;
    border: none;
    font-size: 24px;
    padding: 8px 13px;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: row;
    }

    .menu-toggle {
        display: block;
    }

    #mainNav {
        display: none;
        position: absolute;
        top: 70px;
        left: 5%;
        right: 5%;
        background: white;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    #mainNav.active {
        display: block;
    }

    #mainNav a {
        display: block;
        margin: 12px 0;
    }
}

.page-hero {
    padding: 90px 8%;
    background: linear-gradient(rgba(10,22,18,.75), rgba(10,22,18,.75)),
    url('../images/deck-hero.webp') center/cover no-repeat;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: start;
}

.contact-info h2 {
    font-size: 40px;
    color: #1f5c3b;
    margin-bottom: 15px;
}

.contact-info p {
    color: #4b5563;
    font-size: 18px;
    margin-bottom: 25px;
}

.info-card {
    background: #f8fafc;
    padding: 22px;
    border-radius: 18px;
    margin-bottom: 15px;
    border-left: 5px solid #d69b3a;
}

.info-card strong {
    display: block;
    color: #1f5c3b;
    margin-bottom: 5px;
}

.form-box {
    background: white;
    padding: 35px;
    border-radius: 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.form-box .contact-form {
    max-width: 100%;
    margin-top: 0;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 38px;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,0.09);
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 75px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card div {
    padding: 26px;
}

.service-card h3 {
    color: #1f5c3b;
    margin-bottom: 10px;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 18px;
}

.service-card a {
    color: #1f5c3b;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.portfolio-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,0.09);
    transition: 0.35s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 75px rgba(0,0,0,0.15);
}

.portfolio-image {
    height: 260px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-content {
    padding: 26px;
}

.portfolio-content span {
    color: #d69b3a;
    font-weight: bold;
    font-size: 14px;
}

.portfolio-content h3 {
    color: #1f5c3b;
    margin: 8px 0 10px;
}

.portfolio-content p {
    color: #4b5563;
}

.empty-box {
    grid-column: 1 / -1;
    text-align: center;
    background: #f8fafc;
    padding: 60px 25px;
    border-radius: 24px;
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.admin-stat-card {
    background: white;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    border-left: 5px solid #d69b3a;
}

.admin-stat-card span {
    color: #4b5563;
    font-weight: bold;
}

.admin-stat-card h3 {
    color: #1f5c3b;
    font-size: 30px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
}

.admin-body {
    background: #f3f6f5;
    color: #1f2933;
}

.admin-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: linear-gradient(180deg, #123826, #1f5c3b);
    color: white;
    padding: 32px 24px;
}

.admin-sidebar h2 {
    font-size: 26px;
    margin-bottom: 5px;
}

.admin-sidebar p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
}

.admin-sidebar nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    background: rgba(255,255,255,0.16);
}

.admin-main {
    padding: 35px;
}

.admin-topbar {
    background: white;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    margin-bottom: 28px;
}

.admin-topbar h1 {
    color: #1f5c3b;
    font-size: 36px;
    margin-bottom: 5px;
}

.admin-topbar p {
    color: #6b7280;
}

.admin-stats.modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.admin-stats.modern .admin-stat-card {
    background: white;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-left: 6px solid #d69b3a;
}

.admin-stat-card span {
    color: #6b7280;
    font-weight: 700;
}

.admin-stat-card h3 {
    color: #1f5c3b;
    font-size: 42px;
    margin: 12px 0 5px;
}

.admin-stat-card p {
    color: #6b7280;
}

.admin-stat-card .small-date {
    font-size: 20px;
}

.admin-table-card {
    background: white;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.table-header h2 {
    color: #1f5c3b;
}

.table-wrap {
    overflow-x: auto;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
}

.modern-table thead {
    background: #f8fafc;
}

.modern-table th {
    text-align: left;
    padding: 16px;
    color: #374151;
    font-size: 14px;
}

.modern-table td {
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    vertical-align: top;
    color: #374151;
}

.modern-table tr:hover {
    background: #f9fafb;
}

.status-pill {
    display: inline-block;
    background: #ecfdf5;
    color: #1f5c3b;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.message-cell {
    max-width: 260px;
}

.delete-link {
    color: #dc2626;
    font-weight: 700;
    text-decoration: none;
}

.empty-table {
    text-align: center;
    padding: 35px !important;
    color: #6b7280;
}

@media (max-width: 900px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

    .admin-sidebar nav a {
        display: inline-block;
        margin-right: 8px;
    }

    .admin-main {
        padding: 20px;
    }

    .admin-stats.modern {
        grid-template-columns: 1fr;
    }

    .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Premium Admin Upgrade */
.admin-body {
    background:
        radial-gradient(circle at top left, rgba(214,155,58,0.18), transparent 35%),
        radial-gradient(circle at top right, rgba(31,92,59,0.16), transparent 35%),
        #eef3f1;
}

.admin-layout {
    grid-template-columns: 290px 1fr;
}

.admin-sidebar {
    background: rgba(18, 56, 38, 0.96);
    backdrop-filter: blur(18px);
    border-right: 1px solid rgba(255,255,255,0.12);
    box-shadow: 20px 0 60px rgba(0,0,0,0.12);
}

.admin-sidebar h2 {
    font-size: 30px;
    letter-spacing: -1px;
}

.admin-sidebar nav a {
    position: relative;
    overflow: hidden;
}

.admin-sidebar nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    width: 4px;
    height: 60%;
    background: #d69b3a;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s;
}

.admin-sidebar nav a:hover::before,
.admin-sidebar nav a.active::before {
    opacity: 1;
}

.admin-main {
    padding: 42px;
}

.admin-topbar {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82)),
        url('../images/deck-hero.webp') center/cover;
    position: relative;
    overflow: hidden;
}

.admin-topbar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.75));
}

.admin-topbar > * {
    position: relative;
    z-index: 2;
}

.admin-topbar h1 {
    font-size: 44px;
    letter-spacing: -1.5px;
}

.admin-stats.modern .admin-stat-card,
.admin-table-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.65);
}

.admin-stats.modern .admin-stat-card {
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

.admin-stats.modern .admin-stat-card::after {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 120px;
    height: 120px;
    background: rgba(214,155,58,0.16);
    border-radius: 50%;
}

.admin-stats.modern .admin-stat-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.12);
}

.admin-stat-card h3 {
    font-size: 48px;
    letter-spacing: -1px;
}

.admin-table-card {
    border-radius: 30px;
}

.table-header {
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.modern-table {
    border-collapse: separate;
    border-spacing: 0 12px;
}

.modern-table thead {
    background: transparent;
}

.modern-table th {
    background: #f8fafc;
}

.modern-table th:first-child {
    border-radius: 14px 0 0 14px;
}

.modern-table th:last-child {
    border-radius: 0 14px 14px 0;
}

.modern-table td {
    background: white;
    border-top: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.modern-table td:first-child {
    border-radius: 16px 0 0 16px;
}

.modern-table td:last-child {
    border-radius: 0 16px 16px 0;
}

.modern-table tr:hover td {
    background: #fbfdfc;
    transform: scale(1.005);
}

.status-pill {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #bbf7d0;
}

.delete-link {
    background: #fee2e2;
    color: #b91c1c;
    padding: 8px 13px;
    border-radius: 999px;
}

.delete-link:hover {
    background: #fecaca;
}

.admin-alert {
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    font-weight: 700;
}

.admin-alert.success {
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.admin-form-card {
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(18px);
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 18px 55px rgba(0,0,0,0.08);
    margin-bottom: 28px;
}

.admin-form-card h2 {
    color: #1f5c3b;
    margin-bottom: 22px;
}

.premium-admin-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.premium-admin-form input,
.premium-admin-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    font-size: 15px;
}

.premium-admin-form textarea,
.premium-admin-form .upload-box,
.premium-admin-form button {
    grid-column: 1 / -1;
}

.upload-box {
    border: 2px dashed #d69b3a;
    background: #fffbeb;
    padding: 22px;
    border-radius: 18px;
    cursor: pointer;
}

.upload-box span {
    display: block;
    color: #92400e;
    font-weight: 700;
    margin-bottom: 10px;
}

.admin-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.admin-project-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 45px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.admin-project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.14);
}

.admin-project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.admin-project-content {
    padding: 22px;
}

.admin-project-content span {
    color: #d69b3a;
    font-weight: 700;
    font-size: 14px;
}

.admin-project-content h3 {
    color: #1f5c3b;
    margin: 8px 0 10px;
}

.admin-project-content p {
    color: #4b5563;
    margin-bottom: 10px;
}

.project-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.edit-btn {
    background: #ecfdf5;
    color: #166534;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.edit-btn:hover {
    background: #d1fae5;
}

@media (max-width: 1000px) {
    .premium-admin-form,
    .admin-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.admin-edit-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}

.edit-form {
    grid-template-columns: 1fr;
}

.admin-preview-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,0.08);
    align-self: start;
}

.admin-preview-card h2 {
    color: #1f5c3b;
    padding: 26px 26px 0;
}

.admin-preview-card img {
    width: calc(100% - 52px);
    height: 300px;
    object-fit: cover;
    margin: 22px 26px;
    border-radius: 22px;
}

.admin-preview-card div {
    padding: 0 26px 26px;
}

.admin-preview-card span {
    color: #d69b3a;
    font-weight: 700;
}

.admin-preview-card h3 {
    color: #1f5c3b;
    margin: 8px 0 10px;
}

.admin-preview-card p {
    color: #4b5563;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .admin-edit-layout {
        grid-template-columns: 1fr;
    }
}

.login-body {
    min-height: 100vh;
    background:
        linear-gradient(rgba(10,22,18,.72), rgba(10,22,18,.72)),
        url('../images/deck-hero.webp') center/cover no-repeat;
    display: grid;
    place-items: center;
    padding: 25px;
}

.login-wrapper {
    width: 100%;
    max-width: 1050px;
    display: grid;
    grid-template-columns: 1fr 420px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.login-brand {
    color: white;
    padding: 70px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-brand span {
    color: #d69b3a;
    font-weight: 800;
    margin-bottom: 18px;
}

.login-brand h1 {
    font-size: 58px;
    line-height: 1;
    margin-bottom: 20px;
}

.login-brand p {
    font-size: 19px;
    color: rgba(255,255,255,0.86);
    max-width: 520px;
}

.login-card {
    background: white;
    padding: 50px 38px;
}

.login-card h2 {
    color: #1f5c3b;
    font-size: 34px;
    margin-bottom: 8px;
}

.login-card > p {
    color: #6b7280;
    margin-bottom: 26px;
}

.login-card input {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    margin-bottom: 15px;
    font-size: 15px;
}

.login-card input:focus {
    outline: none;
    border-color: #1f5c3b;
    box-shadow: 0 0 0 4px rgba(31,92,59,0.12);
}

.login-card button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 14px;
    background: #1f5c3b;
    color: white;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-card button:hover {
    background: #123826;
    transform: translateY(-2px);
}

.login-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 700;
}

.back-site {
    display: inline-block;
    margin-top: 22px;
    color: #1f5c3b;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 850px) {
    .login-wrapper {
        grid-template-columns: 1fr;
    }

    .login-brand {
        padding: 45px 30px;
    }

    .login-brand h1 {
        font-size: 42px;
    }

    .login-card {
        padding: 38px 28px;
    }
}

.request-details-card {
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 18px 55px rgba(0,0,0,0.08);
}

.request-details-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.request-details-header h2 {
    color: #1f5c3b;
    font-size: 34px;
}

.request-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 25px;
}

.request-details-grid div,
.request-message-box {
    background: white;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.request-details-grid strong,
.request-message-box strong {
    display: block;
    color: #1f5c3b;
    margin-bottom: 8px;
}

.request-details-grid p,
.request-message-box p {
    color: #4b5563;
}

@media (max-width: 800px) {
    .request-details-header,
    .request-details-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}

.status-select {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #bbf7d0;
    background: #ecfdf5;
    color: #1f5c3b;
    font-weight: 700;
    cursor: pointer;
}

.status-select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(31,92,59,0.12);
}

.admin-filter-form {
    display: grid;
    grid-template-columns: 1fr 220px auto auto;
    gap: 12px;
    margin-bottom: 22px;
}

.admin-filter-form input,
.admin-filter-form select {
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    font-size: 15px;
}

.admin-filter-form input:focus,
.admin-filter-form select:focus {
    outline: none;
    border-color: #1f5c3b;
    box-shadow: 0 0 0 4px rgba(31,92,59,0.12);
}

.reset-btn {
    background: #f3f4f6;
    color: #374151;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}

.reset-btn:hover {
    background: #e5e7eb;
}

@media (max-width: 900px) {
    .admin-filter-form {
        grid-template-columns: 1fr;
    }
}

.home-hero {
    position: relative;
    min-height: 94vh;
    background: url('../images/deck-hero.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,22,16,0.94), rgba(8,22,16,0.62), rgba(8,22,16,0.18)),
        radial-gradient(circle at top right, rgba(214,155,58,0.22), transparent 35%);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: white;
}

.home-hero h1 {
    font-size: 70px;
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.home-hero p {
    font-size: 21px;
    max-width: 680px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 680px;
    margin-top: 40px;
}

.hero-stats div {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 20px;
    border-radius: 18px;
}

.hero-stats strong {
    display: block;
    color: #d69b3a;
    font-size: 22px;
}

.hero-stats span {
    color: rgba(255,255,255,0.86);
}

.home-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.feature-list div {
    background: #f8fafc;
    padding: 14px 16px;
    border-radius: 14px;
    color: #1f5c3b;
    font-weight: 700;
}

.image-collage {
    position: relative;
    min-height: 560px;
}

.collage-main {
    width: 82%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.18);
}

.collage-small {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 48%;
    height: 260px;
    object-fit: cover;
    border-radius: 24px;
    border: 8px solid white;
    box-shadow: 0 25px 70px rgba(0,0,0,0.16);
}

.collage-badge {
    position: absolute;
    top: 35px;
    right: 30px;
    background: white;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}

.collage-badge strong {
    display: block;
    color: #1f5c3b;
    font-size: 22px;
}

.collage-badge span {
    color: #6b7280;
}

.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.premium-service-card {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: 0.35s ease;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.premium-service-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: 0.45s ease;
}

.premium-service-card:hover img {
    transform: scale(1.08);
}

.premium-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(8,22,16,0.92));
}

.premium-service-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px;
    color: white;
}

.premium-service-card span {
    color: #d69b3a;
    font-weight: 900;
}

.premium-service-card h3 {
    font-size: 26px;
    margin: 8px 0 10px;
}

.premium-service-card p {
    color: rgba(255,255,255,0.86);
    margin-bottom: 16px;
}

.premium-service-card a {
    color: white;
    font-weight: 800;
    text-decoration: none;
}

.premium-process div {
    background: white;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.why-section {
    background:
        radial-gradient(circle at top left, rgba(214,155,58,0.12), transparent 30%),
        #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(0,0,0,0.07);
    border-top: 5px solid #d69b3a;
    transition: 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card h3 {
    color: #1f5c3b;
    margin-bottom: 10px;
}

.why-card p {
    color: #4b5563;
}

.home-cta {
    margin: 80px 8%;
    padding: 65px;
    border-radius: 34px;
    color: white;
    background:
        linear-gradient(90deg, rgba(8,22,16,0.92), rgba(8,22,16,0.72)),
        url('../images/deck-hero.webp') center/cover no-repeat;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.home-cta h2 {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.home-cta p {
    color: rgba(255,255,255,0.88);
    font-size: 18px;
}

@media (max-width: 1000px) {
    .home-hero h1 {
        font-size: 46px;
    }

    .home-intro,
    .premium-service-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .image-collage {
        min-height: auto;
    }

    .collage-main,
    .collage-small {
        position: static;
        width: 100%;
        height: 320px;
        border: none;
        margin-bottom: 18px;
    }

    .home-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 38px;
    }

    .home-cta h2 {
        font-size: 34px;
    }
}

.premium-header {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(18px);
    padding: 16px 8%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo {
    text-decoration: none;
    color: #1f5c3b;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo span {
    color: #d69b3a;
}

.premium-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.premium-nav a {
    margin-left: 0;
    padding: 10px 14px;
    border-radius: 999px;
    transition: 0.3s ease;
}

.premium-nav a:hover {
    background: #ecfdf5;
    color: #1f5c3b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    color: #1f5c3b;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}

.header-btn {
    background: #d69b3a;
    color: white;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(214,155,58,0.28);
    transition: 0.3s;
}

.header-btn:hover {
    background: #1f5c3b;
    transform: translateY(-2px);
}

@media (max-width: 950px) {
    .premium-header {
        flex-wrap: wrap;
    }

    .header-actions {
        display: none;
    }

    #mainNav {
        width: 100%;
    }

    #mainNav.active {
        display: block;
    }

    #mainNav a {
        display: block;
        margin: 8px 0;
        padding: 13px 15px;
    }
}

.chat-float {
    position: fixed;
    right: 24px;
    bottom: 90px;
    z-index: 9999;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(0,0,0,0.22);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #1f5c3b;
    color: white;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 14px 35px rgba(0,0,0,0.22);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.contact-hero {
    position: relative;
    min-height: 58vh;
    background: url('../images/contact-hero.webp') center/cover no-repeat;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 90px 8%;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(8,22,16,0.78), rgba(8,22,16,0.78)),
        radial-gradient(circle at top right, rgba(214,155,58,0.28), transparent 38%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 850px;
}

.contact-hero h1 {
    font-size: 58px;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.contact-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.88);
    max-width: 680px;
    margin: 0 auto 28px;
}

.contact-hero-points {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-hero-points span {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 800;
    color: white;
}

.premium-contact-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: start;
    background:
        radial-gradient(circle at top left, rgba(214,155,58,0.10), transparent 30%),
        #ffffff;
}

.contact-left h2 {
    font-size: 44px;
    color: #1f5c3b;
    line-height: 1.12;
    margin-bottom: 18px;
}

.contact-left > p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 28px;
}

.premium-info-grid {
    display: grid;
    gap: 16px;
}

.premium-info-card {
    display: flex;
    gap: 16px;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 22px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 14px 40px rgba(0,0,0,0.07);
    border: 1px solid #eef2f7;
    transition: 0.3s ease;
}

.premium-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.12);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #ecfdf5;
    color: #1f5c3b;
    font-size: 22px;
    font-weight: 900;
    flex-shrink: 0;
}

.premium-info-card strong {
    display: block;
    color: #1f5c3b;
    margin-bottom: 4px;
}

.premium-info-card span {
    color: #4b5563;
}

.contact-mini-cta {
    margin-top: 24px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1f5c3b, #123826);
    color: white;
    box-shadow: 0 18px 45px rgba(31,92,59,0.22);
}

.contact-mini-cta h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-mini-cta p {
    color: rgba(255,255,255,0.85);
}

.premium-form-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px);
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.75);
}

.form-card-header {
    margin-bottom: 26px;
}

.form-card-header span {
    display: inline-block;
    color: #d69b3a;
    font-weight: 900;
    margin-bottom: 8px;
}

.form-card-header h2 {
    color: #1f5c3b;
    font-size: 34px;
    margin-bottom: 8px;
}

.form-card-header p {
    color: #6b7280;
}

.premium-contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 800;
    margin-bottom: 8px;
}

.premium-contact-form input,
.premium-contact-form select,
.premium-contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    font-size: 15px;
    background: #f9fafb;
    transition: 0.25s ease;
}

.premium-contact-form input:focus,
.premium-contact-form select:focus,
.premium-contact-form textarea:focus {
    outline: none;
    border-color: #1f5c3b;
    background: white;
    box-shadow: 0 0 0 4px rgba(31,92,59,0.12);
}

.premium-submit-btn {
    border: none;
    border-radius: 999px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #d69b3a, #b7791f);
    color: white;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 16px 35px rgba(214,155,58,0.28);
    transition: 0.3s ease;
}

.premium-submit-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1f5c3b, #123826);
}

.contact-bottom-cta {
    margin: 70px 8%;
    padding: 60px;
    border-radius: 34px;
    background:
        linear-gradient(90deg, rgba(8,22,16,0.92), rgba(8,22,16,0.72)),
        url('../images/deck-cta.webp') center/cover no-repeat;
    color: white;
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.contact-bottom-cta h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-bottom-cta p {
    color: rgba(255,255,255,0.86);
    font-size: 18px;
}

@media (max-width: 950px) {
    .premium-contact-section,
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-left h2 {
        font-size: 34px;
    }

    .premium-form-card {
        padding: 26px;
    }

    .contact-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 38px;
    }

    .contact-bottom-cta h2 {
        font-size: 32px;
    }
}

.premium-footer {
    background:
        radial-gradient(circle at top left, rgba(214,155,58,0.15), transparent 30%),
        linear-gradient(135deg, #07140f, #123826);
    color: white;
    padding: 75px 8% 25px;
    margin-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 42px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-brand h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.footer-brand h2 span {
    color: #d69b3a;
}

.footer-brand p {
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 24px;
}

.footer-cta {
    display: inline-block;
    background: #d69b3a;
    color: white;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(214,155,58,0.25);
    transition: 0.3s ease;
}

.footer-cta:hover {
    background: white;
    color: #123826;
    transform: translateY(-3px);
}

.footer-col h3 {
    color: #d69b3a;
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    margin-bottom: 11px;
    transition: 0.25s ease;
}

.footer-col a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255,255,255,0.78);
    margin-bottom: 12px;
}

.footer-contact p a {
    display: inline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    margin-left: 18px;
}

.footer-bottom a:hover {
    color: #d69b3a;
}

@media (max-width: 950px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 16px;
    }
}

.transformation-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    position: relative;
    overflow: hidden;
}

.transformation-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(214,155,58,0.12);
    border-radius: 50%;
    top: -160px;
    left: -120px;
}

.transformation-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 45px;
    position: relative;
    z-index: 2;
}

.transformation-head h2 {
    font-size: 48px;
    color: #1f5c3b;
    line-height: 1.1;
    margin-bottom: 14px;
}

.transformation-head p {
    color: #4b5563;
    font-size: 18px;
}

.transformation-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    gap: 18px;
    align-items: center;
}

.transform-card {
    position: relative;
    background: white;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0,0,0,0.12);
    transition: 0.35s ease;
}

.transform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 95px rgba(0,0,0,0.18);
}

.transform-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.transform-label {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    color: white;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.before-card .transform-label {
    background: #92400e;
}

.after-card .transform-label {
    background: #1f5c3b;
}

.transform-content {
    padding: 28px;
}

.transform-content h3 {
    color: #1f5c3b;
    font-size: 26px;
    margin-bottom: 8px;
}

.transform-content p {
    color: #4b5563;
}

.transform-arrow {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d69b3a, #b7791f);
    color: white;
    display: grid;
    place-items: center;
    font-size: 42px;
    font-weight: 900;
    box-shadow: 0 20px 55px rgba(214,155,58,0.35);
}

.transformation-bottom {
    position: relative;
    z-index: 2;
    margin-top: 38px;
    background: #123826;
    color: white;
    padding: 26px 30px;
    border-radius: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.transformation-bottom h3 {
    font-size: 26px;
}

@media (max-width: 950px) {
    .transformation-head h2 {
        font-size: 36px;
    }

    .transformation-wrap {
        grid-template-columns: 1fr;
    }

    .transform-arrow {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .transform-card img {
        height: 320px;
    }

    .transformation-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.portfolio-image {
    position: relative;
    cursor: zoom-in;
}

.portfolio-image img {
    cursor: zoom-in;
}

.view-image-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: rgba(8,22,16,0.82);
    color: white;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.3s ease;
}

.portfolio-image:hover .view-image-badge {
    opacity: 1;
    transform: translateY(0);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.image-lightbox.active {
    display: flex;
}

.image-lightbox img {
    max-width: 94vw;
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 25px 90px rgba(0,0,0,0.45);
}

.lightbox-close {
    position: fixed;
    top: 22px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #111827;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    font-weight: 800;
}