:root {
    --primary-color: #ffd700;
    --primary-hover: #ffea00;
    --dark-bg: #0c0d0c;
    --card-bg: #161716;
    --text-color: #ffffff;
    --text-muted: #b0b0b0;
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(22, 23, 22, 0.7);
    --border: rgba(255, 255, 255, 0.08);
}

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

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Typography Refinement */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 25px;
}

.highlight {
    color: var(--primary-color);
}

/* Updated Buttons */
.btn-primary, .btn-secondary, .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 10px;
}

.btn-primary i, .btn-secondary i, .nav-cta i {
    font-size: 0.9rem;
}

.btn-primary, .nav-cta {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover, .nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid var(--border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-5px);
}

/* Header & Menu Refinement */
.main-header {
    background: rgba(12, 13, 12, 0.9);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid var(--border);
}

.header-top {
    background: #000;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info, .header-social {
    display: flex;
    gap: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.contact-info i, .header-social i {
    color: var(--primary-color);
    margin-right: 5px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--white);
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--white);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 25px;
    font-size: 0.75rem;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 2100;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url('images/hero.png') center/cover;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: var(--text-muted);
    max-width: 650px;
}

/* High-End Professional Cards */
.service-card, .gallery-item, .review-card {
    background: linear-gradient(135deg, rgba(30, 31, 30, 0.6), rgba(15, 16, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 60px 45px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    width: 65px;
    height: 65px;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
}

.service-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(40, 41, 40, 0.7), rgba(20, 21, 20, 0.95));
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover i {
    background: var(--primary-color);
    color: #000;
    transform: rotateY(180deg);
}

/* Services Overview */
.services-overview {
    padding: 120px 0;
    background: var(--dark-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more i {
    font-size: 0.7rem;
}

.read-more:hover {
    gap: 12px;
}

/* CTA Banner Modern */
.cta-banner {
    padding: 120px 0;
    background: var(--primary-color);
    color: #000;
    text-align: center;
}

.cta-banner h2 {
    color: #000;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Stats Section */
.why-choose-us {
    padding: 120px 0;
    background: #000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
}

/* =============================================
   PROFESSIONAL FOOTER
   ============================================= */

.main-footer {
    background: #070807;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Glowing top accent line */
.footer-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 40%, var(--primary-color) 60%, transparent 100%);
    opacity: 0.6;
}

.main-footer > .container {
    padding-top: 90px;
    padding-bottom: 70px;
}

/* Subtle background radial glow */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* 4-column footer grid */
.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 60px;
}

/* Brand column logo */
.footer-section.brand-col .logo a {
    font-size: 1.6rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--white);
}

.footer-section.brand-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-top: 16px;
    margin-bottom: 24px;
}

/* Trust badges */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

.badge-item i {
    color: var(--primary-color);
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    background: rgba(255, 215, 0, 0.07);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
}

/* Section headings */
.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Nav/Services link lists */
.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-section ul li a i {
    font-size: 0.55rem;
    color: var(--primary-color);
    transition: var(--transition);
    opacity: 0.7;
}

.footer-section ul li a:hover {
    color: var(--white);
    gap: 12px;
}

.footer-section ul li a:hover i {
    opacity: 1;
}

/* Contact list */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-icon i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.footer-contact-item .contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--white);
}

/* ---- Footer Bottom Bar ---- */
.footer-bottom-bar {
    background: #040504;
    border-top: 1px solid var(--border);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.brancodev {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.brancodev a {
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.brancodev a:hover span {
    color: var(--primary-hover);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1200px) {
    .footer-content { grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
    .footer-section.contact-col { grid-column: 1 / -1; }
    .footer-contact-list { flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .footer-contact-item { flex: 1 1 200px; }
}

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 4rem; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 50px; }
    .footer-section.contact-col { grid-column: unset; }
    .footer-contact-list { flex-direction: column; }
}

@media (max-width: 768px) {
    .container { padding: 0 25px; }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        height: 100vh;
        padding: 50px 0;
        transition: 0.4s;
        text-align: center;
        z-index: 1000;
    }
    .nav-links.active { left: 0; }
    .menu-toggle { display: block; }
    .header-top { display: none; }
    .hero-content h1 { font-size: 3rem; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .main-footer > .container { padding-top: 60px; padding-bottom: 50px; }
    .footer-socials { justify-content: flex-start; }
    .footer-badges { flex-direction: row; flex-wrap: wrap; }
}

/* Testimonials Preview Cinematic */
.testimonials-preview {
    padding: 180px 0;
    background: linear-gradient(rgba(12, 13, 12, 0.95), rgba(12, 13, 12, 0.95)), url('images/welding.png') center/cover fixed;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonial {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 10;
}

.testimonial-text {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 35px;
    font-style: italic;
    color: var(--white);
    letter-spacing: -0.5px;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   WORK SHOWCASE SECTION
════════════════════════════════════════════ */
.work-showcase {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.work-showcase::before {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image cluster */
.showcase-images {
    position: relative;
    height: 560px;
}

.showcase-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 72%;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.showcase-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.showcase-img-main:hover img { transform: scale(1.04); }

/* Badge on main image */
.showcase-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary-color);
    color: #000;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.showcase-badge i {
    font-size: 1.4rem;
}

.showcase-badge strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.showcase-badge span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}

/* Secondary image */
.showcase-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.showcase-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.showcase-img-secondary:hover img { transform: scale(1.04); }

.showcase-img-label {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,215,0,0.2);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Feature list */
.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.showcase-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.sf-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: rgba(255,215,0,0.07);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.showcase-feature:hover .sf-icon {
    background: var(--primary-color);
    color: #000;
    transform: rotateY(180deg);
}

.showcase-feature h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

.showcase-feature p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════
   GALLERY PREVIEW SECTION
════════════════════════════════════════════ */
.gallery-preview-section {
    padding: 120px 0;
    background: #000;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 60px;
}

/* First item spans 2 rows */
.gallery-preview-item.featured {
    grid-row: span 2;
}

.gallery-preview-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    cursor: pointer;
    background: var(--card-bg);
    border: 1px solid var(--border);
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 220px;
}

.gallery-preview-item.featured img {
    min-height: 460px;
}

/* Hover overlay */
.gallery-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay { opacity: 1; }
.gallery-preview-item:hover img { transform: scale(1.06); }

.gallery-preview-cat {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 4px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    padding: 3px 10px;
    border-radius: 20px;
}

.gallery-preview-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.gallery-preview-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.8rem;
    flex-shrink: 0;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.gallery-preview-item:hover .gallery-preview-icon { transform: scale(1); }

/* Forms & Inputs */
input, textarea, select {
    font-family: var(--font-main);
}

select option {
    background-color: #121312; 
    color: #ffffff;
    padding: 12px;
}

.form-input {
    width: 100%;
    padding: 16px 22px;
    background-color: rgba(255, 255, 255, 0.03) !important;
    background-image: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #ffffff !important;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 215, 0, 0.04) !important;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1), inset 0 2px 4px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

/* Ensure autocomplete doesn't break the look */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0px 1000px #161716 inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* ── Responsive overrides ─────────────────── */
@media (max-width: 1100px) {
    .showcase-grid { grid-template-columns: 1fr; gap: 60px; }
    .showcase-images { height: 400px; }
    .showcase-img-main { width: 68%; height: 340px; }
    .showcase-img-secondary { width: 52%; height: 200px; }
}

@media (max-width: 768px) {
    .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
    .gallery-preview-item.featured { grid-row: span 1; }
    .gallery-preview-item.featured img { min-height: 220px; }
    .showcase-images { height: 340px; }
    .showcase-img-main { width: 80%; height: 280px; }
    .showcase-img-secondary { width: 55%; height: 160px; }
    .work-showcase { padding: 80px 0; }
    .gallery-preview-section { padding: 80px 0; }
}

@media (max-width: 520px) {
    .gallery-preview-grid { grid-template-columns: 1fr; }
    .showcase-images { height: 280px; }
}

/* ═══════════════════════════════════════════
   STAT ITEM — used on homepage, about, services
═══════════════════════════════════════════ */
.stat-item {
    background: linear-gradient(135deg, rgba(30,31,30,0.5), rgba(15,16,15,0.8));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-item:hover {
    border-color: rgba(255,215,0,0.15);
    transform: translateY(-4px);
}

/* ═══════════════════════════════════════════
   SVC-BOX — sidebar cards on service pages
   (replaces admin-card in public frontend)
═══════════════════════════════════════════ */
.svc-box {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    margin-bottom: 20px;
}
.svc-box-gold {
    border-color: rgba(255,215,0,0.2);
}

/* ═══════════════════════════════════════════
   SERVICE DETAIL PAGES — responsive layout
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .svc-detail-grid { grid-template-columns: 1fr !important; }
    .svc-detail-grid > div:last-child { position: static !important; }
}
@media (max-width: 768px) {
    .svc-detail-grid > div:first-child img { border-radius: 16px; }
}
