/* =============================================
   Brick & Beam Homes — Stylesheet
   Design: Modern, Sophisticated, Timeless
   ============================================= */

/* --- Color Palette --- */
:root {
    --white:       #FFFFFF;
    --cream:       #FAF8F5;
    --sand:        #E8E0D8;
    --brown-light: #C4A882;
    --brown:       #8B7355;
    --brown-dark:  #5C4A32;
    --gold-light:  #D4C5A0;
    --gold:        #B8A472;
    --green-light: #C5CFC0;
    --green:       #8A9A7E;
    --green-muted: #A8B89E;
    --charcoal:    #2C2C2C;
    --text:        #3A3A3A;
    --text-light:  #6B6B6B;
    --text-muted:  #999999;
    --border:      #E5E0DA;
    --overlay:     rgba(44, 44, 44, 0.55);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: 'Montserrat', sans-serif; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

a {
    color: var(--brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--gold); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}

.top-bar a {
    color: var(--sand);
    transition: color 0.3s;
}

.top-bar a:hover { color: var(--gold-light); }

/* --- Navbar --- */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--brown);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--brown);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--brown-dark) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 24px;
}

.hero-content .tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--sand);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--brown);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--brown-dark);
    color: var(--white);
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-cream { background: var(--cream); }
.section-sand  { background: var(--sand); }
.section-dark  { background: var(--charcoal); color: var(--white); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header .label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.section-header p {
    color: var(--text-light);
    margin-top: 16px;
    font-size: 1rem;
}

.divider {
    width: 50px;
    height: 1.5px;
    background: var(--gold);
    margin: 20px auto;
}

/* --- Services Grid (Home Page) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 48px 36px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.service-card h3 {
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* --- Featured Projects (Home Page) --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.project-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--sand);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

.project-info h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.project-info p {
    font-size: 0.85rem;
    color: var(--sand);
}

/* --- Testimonial --- */
.testimonial-section {
    background: var(--charcoal);
    padding: 100px 0;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    max-width: 780px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--brown-dark), var(--charcoal));
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: var(--sand); margin-bottom: 32px; font-size: 1.05rem; }

/* --- Gallery Page --- */
.gallery-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--cream);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--sand);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Gallery placeholder for empty state */
.gallery-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
    color: var(--text-muted);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.lightbox-caption {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--sand);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-align: center;
}

/* --- About Page --- */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-image {
    aspect-ratio: 4/5;
    background: var(--sand);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.value-item h3 {
    margin: 16px 0 12px;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-detail-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* --- Forms --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* --- Alert Messages --- */
.alert {
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 0.88rem;
    border-left: 3px solid;
}

.alert-success {
    background: #f0f7f0;
    border-color: var(--green);
    color: #2d5a2d;
}

.alert-error {
    background: #fdf0f0;
    border-color: #c0392b;
    color: #922b21;
}

/* --- Page Hero (interior pages) --- */
.page-hero {
    padding: 140px 0 70px;
    text-align: center;
    background: var(--cream);
}

.page-hero .label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.page-hero p {
    color: var(--text-light);
    max-width: 540px;
    margin: 16px auto 0;
    font-size: 1rem;
}

/* --- Footer --- */
.site-footer {
    background: var(--charcoal);
    color: var(--sand);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--brown-light);
    margin-top: 2px;
}

.footer-tagline {
    color: var(--gold-light);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    margin: 8px 0 16px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.78rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-intro { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
        font-size: 0.72rem;
    }

    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    }

    .nav-links.open { display: flex; }

    .nav-links li a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child a { border-bottom: none; }

    .hero { height: 70vh; min-height: 450px; }

    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .section { padding: 64px 0; }

    .page-hero { padding: 100px 0 50px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-filters { gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 0.7rem; }
}

/* =============================================
   Admin Panel Styles
   ============================================= */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--charcoal);
    color: var(--white);
    padding: 32px 0;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow-y: auto;
}

.admin-sidebar-logo {
    padding: 0 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-logo .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.admin-sidebar-logo .logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--gold-light);
    display: block;
    margin-top: 2px;
}

.admin-nav {
    list-style: none;
    padding: 16px 0;
}

.admin-nav li a {
    display: block;
    padding: 12px 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.admin-nav li a:hover,
.admin-nav li a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border-left-color: var(--gold);
}

.admin-nav li a .nav-icon {
    margin-right: 10px;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 32px 40px;
    background: var(--cream);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.admin-header h1 {
    font-size: 1.8rem;
}

/* Admin Cards */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 28px;
    border: 1px solid var(--border);
}

.stat-card .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--charcoal);
}

.stat-card .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Admin Table */
.admin-table-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    overflow-x: auto;
}

.admin-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 14px 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 14px 20px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.admin-table tr:hover {
    background: var(--cream);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
}

.badge-new { background: #e8f5e9; color: #2e7d32; }
.badge-read { background: #f5f5f5; color: #777; }
.badge-active { background: #e8f5e9; color: #2e7d32; }
.badge-inactive { background: #fce4ec; color: #c62828; }

.action-link {
    font-size: 0.8rem;
    margin-right: 12px;
    font-weight: 500;
}

.action-link.delete {
    color: #c0392b;
}

/* Admin Forms */
.admin-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    max-width: 700px;
}

/* Admin Login */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.admin-login-box {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 48px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.admin-login-box .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
}

.admin-login-box .logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--brown);
    display: block;
    margin: 4px 0 32px;
}

.admin-login-box .form-group {
    text-align: left;
}

.admin-login-box .btn {
    width: 100%;
}

/* Admin Responsive */
@media (max-width: 992px) {
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; padding: 20px; }
    .admin-stats { grid-template-columns: 1fr; }
}
