:root {
    --primary-red: #ff0000;
    --primary-red-hover: #cc0000;
    --bg-dark: #000000;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --card-bg: rgba(20, 20, 25, 0.7);
    --card-border: rgba(255, 255, 255, 0.15);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* REMOVED min-height: 100dvh — this was causing the "PowerPoint" feel */
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 80px 0;
    position: relative;
}

/* Only the hero gets full viewport height */
.hero { min-height: 100dvh; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 11px 26px; border-radius: 30px; font-weight: 600;
    font-size: 0.9rem; cursor: pointer; transition: var(--transition); gap: 8px;
    font-family: var(--font-main);
}
.btn-primary {
    background-color: var(--primary-red); color: var(--text-light);
    border: 2px solid var(--primary-red); box-shadow: 0 0 15px rgba(255,0,0,0.4);
}
.btn-primary:hover { background-color: transparent; box-shadow: 0 0 25px rgba(255,0,0,0.6); }
.btn-outline {
    background-color: transparent; color: var(--text-light);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--text-light); background-color: rgba(255,255,255,0.05); }
.btn-lg { padding: 13px 36px; font-size: 1rem; border-radius: 40px; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.section-subtitle {
    display: block; color: var(--primary-red); font-size: 0.78rem;
    font-weight: 600; letter-spacing: 2.5px; margin-bottom: 8px; text-transform: uppercase;
}

/* ===== GLOW LINE ===== */
.glow-line {
    width: 100%; height: 2px; position: absolute; bottom: 0; left: 0;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,0.8), transparent);
    box-shadow: 0 0 30px 4px rgba(255,0,0,0.5);
}

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 9999; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-container { display: flex; justify-content: space-between; align-items: center; height: 70px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 1.15rem; font-weight: 700; color: var(--text-light); }
.logo-sub { font-size: 0.6rem; font-weight: 600; color: var(--primary-red); letter-spacing: 1px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--text-light); }
.nav-links a.active { color: var(--primary-red); }

.header-actions { display: flex; align-items: center; gap: 15px; }
.header-actions .btn { font-size: 0.82rem; padding: 9px 22px; }
.hamburger {
    display: none; background: none; border: none;
    color: var(--text-light); font-size: 1.4rem; cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none; flex-direction: column;
    background: rgba(10,10,10,0.98); position: absolute;
    top: 70px; left: 0; width: 100%; padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted); font-weight: 500; font-size: 0.9rem;
}
.mobile-menu a.active { color: var(--text-light); }
.mobile-btn { margin-top: 16px; text-align: center; }

/* ===== HERO ===== */
.hero {
    background: radial-gradient(ellipse at 50% 100%, rgba(255,0,0,0.12) 0%, transparent 60%);
    padding-top: 110px;
}
.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-content { flex: 1; max-width: 550px; }

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; background-color: rgba(255,0,0,0.1);
    color: var(--primary-red); border: 1px solid var(--primary-red);
    border-radius: 25px; font-size: 0.72rem; font-weight: 600;
    margin-bottom: 20px; letter-spacing: 1px;
}
.badge i { font-size: 0.78rem; }

.hero-content p {
    color: var(--text-muted); font-size: 0.95rem;
    margin-bottom: 30px; text-align: justify; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-image img {
    max-width: 100%; height: auto;
    filter: drop-shadow(0 0 40px rgba(255,0,0,0.15));
}

/* ===== STATS / MARQUEE ===== */
.stats-section { text-align: center; padding: 40px 0 60px; }

.marquee-wrapper {
    width: 100%; overflow: hidden; padding: 16px 0;
    margin-bottom: 40px;
}
.marquee-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}
.marquee-item {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.85rem; font-weight: 500; color: var(--text-light);
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0 22px; flex-shrink: 0;
}
.marquee-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background-color: var(--primary-red); flex-shrink: 0;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stats-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.stat-box {
    background: transparent; border: 1.5px solid var(--card-border);
    border-radius: 18px; padding: 28px 42px; min-width: 190px;
    text-align: center; transition: var(--transition);
}
.stat-box:hover { border-color: rgba(255,255,255,0.35); transform: translateY(-4px); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--text-light); }
.stat-plus {
    color: var(--primary-red); font-size: 1.3rem; margin: 6px 0;
    font-weight: 700;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }

/* ===== ABOUT / SIAPA KAMI ===== */
.about-section { overflow: hidden; padding: 80px 0; }
.about-bg {
    position: absolute; top: 0; width: 50%; height: 100%;
    background-size: cover; background-position: center; z-index: 0;
}
.about-bg-left { left: 0; background-image: url('img/PC Bilt (Left).webp'); }
.about-bg-right { right: 0; background-image: url('img/PC Bilt (Right).webp'); }
.about-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}
.about-container {
    position: relative; z-index: 2;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 40px;
}
.about-container h2 { flex: 0.8; font-size: 3rem; line-height: 1.1; margin: 0; }

.about-cards { flex: 1.5; display: flex; flex-direction: column; gap: 18px; }
.stacked-card {
    background: rgba(20,20,25,0.4); backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.25); border-radius: 14px;
    padding: 26px; width: 90%; margin-left: auto;
}
.stacked-card:first-child p { text-align: center; }
.offset-card { margin-right: auto; margin-left: 0; }
.offset-card p { text-align: left; }
.stacked-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin: 0; font-weight: 400; }

/* ===== SOLUTIONS / PENJUALAN & PELAYANAN ===== */
.solutions-section {
    background-image: url('img/Keyboard Fade.webp');
    background-size: cover; background-position: center;
    padding: 80px 0;
}
.solutions-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.95) 100%);
    z-index: 0;
}
.solutions-container { position: relative; z-index: 1; text-align: center; }

.solution-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-top: 40px; text-align: left;
}
.solution-card {
    background: rgba(50,50,55,0.6); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
    padding: 28px;
}
.solution-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; }
.card-title-icon { color: var(--primary-red); margin-right: 6px; }
.solution-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ===== BENEFITS / KENAPA HARUS MEMILIH KAMI ===== */
.benefits-section { background: var(--bg-dark); padding: 80px 0; }
.section-desc { color: var(--text-muted); max-width: 800px; margin-bottom: 24px; font-size: 0.9rem; line-height: 1.6; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.tag {
    padding: 6px 16px; border-radius: 25px; font-size: 0.78rem;
    cursor: default; display: inline-flex; align-items: center; gap: 6px;
}
.tag-outline {
    border: 1px solid rgba(255,255,255,0.2); color: var(--text-light);
    background: transparent;
}
.tag-outline i { color: var(--primary-red); font-size: 0.72rem; }

.benefits-list { display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
    display: flex; gap: 18px;
    background: transparent; border: 1px solid var(--card-border);
    padding: 22px 24px; border-radius: 14px; align-items: flex-start;
}
.benefit-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(255,0,0,0.12); color: var(--primary-red);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.benefit-text h3 { font-size: 1rem; margin-bottom: 6px; font-weight: 700; }
.benefit-text p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* ===== SERVICES / DAFTAR LAYANAN ===== */
.services-section { background: var(--bg-dark); padding: 80px 0; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 18px; margin-top: 30px;
}
.service-card {
    border-radius: 14px; padding: 24px; position: relative;
    overflow: hidden; min-height: 250px; display: flex;
    flex-direction: column; border: 1px solid var(--card-border);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.3); }
.service-card.has-bg { background-size: cover; background-position: center; }
.service-card.dark-card { background-color: rgba(15,15,15,0.9); }

.service-icon {
    width: 38px; height: 38px; background: var(--primary-red);
    color: white; border-radius: 9px; display: flex;
    align-items: center; justify-content: center;
    font-size: 1rem; margin-bottom: 14px;
}
.service-badge {
    position: absolute; top: 16px; right: 16px;
    padding: 3px 12px; border-radius: 12px;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px;
}
.badge-red { background: var(--primary-red); color: white; }
.badge-white { background: rgba(255,255,255,0.92); color: #111; }

.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; }
.service-card p { color: var(--text-muted); font-size: 0.8rem; flex-grow: 1; margin-bottom: 14px; line-height: 1.5; }

.service-link {
    color: var(--primary-red); font-weight: 700; font-size: 0.78rem;
    display: flex; align-items: center; gap: 6px;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.service-link:hover { color: #ff3333; }

.catalog-card {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
}
.catalog-title { font-size: 1.5rem; color: var(--primary-red); margin-bottom: 8px; }
.catalog-icon { font-size: 3.2rem; color: var(--primary-red); margin: 12px 0; }
.catalog-link { font-size: 0.9rem; font-weight: 800; }

/* ===== CTA ===== */
.cta-section {
    text-align: center; padding: 80px 0 60px;
    background: radial-gradient(ellipse at center 60%, rgba(255,0,0,0.18) 0%, transparent 55%);
}
.cta-container h2 {
    font-size: 2rem; margin-bottom: 20px;
    line-height: 1.25; text-transform: uppercase; font-weight: 800;
}
.cta-container p {
    color: var(--text-light); font-size: 0.95rem; font-weight: 400;
    max-width: 700px; margin: 0 auto 35px; line-height: 1.6; font-style: italic;
}
.cta-buttons {
    display: flex; justify-content: center; gap: 16px;
    margin-bottom: 50px; flex-wrap: wrap;
}
.cta-buttons .btn-outline { border: 2px solid rgba(255,255,255,0.5); }

.cta-layout-wrapper {
    display: flex; flex-direction: column; align-items: center;
    gap: 30px; margin-top: 10px; width: 100%;
}
.cta-info-row {
    display: flex; justify-content: space-between; gap: 40px;
    flex-wrap: wrap; text-align: left; align-items: flex-start;
    width: 100%; max-width: 900px;
}
.cta-info-block { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-info-block.align-right { align-items: flex-end; text-align: right; }
.cta-info-title { color: var(--text-muted); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

.social-icons { display: flex; gap: 20px; }
.social-icons a {
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); font-size: 2rem; transition: var(--transition);
}
.social-icons a:hover { color: var(--primary-red); transform: translateY(-3px); }

.cta-location {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--text-light); font-size: 0.95rem; max-width: 400px; font-weight: 500;
}
.align-right .cta-location { flex-direction: row-reverse; }
.cta-location i { color: var(--primary-red); font-size: 1.3rem; margin-top: 2px; }

.cta-map-wrapper {
    width: 100%; max-width: 900px; height: 350px;
    border-radius: 16px; overflow: hidden; position: relative;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 1; /* For leaflet zoom controls */
}
.btn-directions-float {
    position: absolute; bottom: 20px; right: 20px;
    z-index: 1000; box-shadow: 0 4px 20px rgba(255,0,0,0.4);
    padding: 10px 24px; font-size: 0.85rem; border-radius: 30px;
}
/* Leaflet UI Overrides */
.leaflet-control-zoom a {
    background-color: rgba(20,20,25,0.9) !important;
    color: var(--text-light) !important;
    border: 1px solid var(--card-border) !important;
}
.leaflet-control-zoom a:hover { color: var(--primary-red) !important; }
.leaflet-container { font-family: var(--font-main) !important; }
.leaflet-control-attribution {
    background-color: rgba(0,0,0,0.7) !important;
    color: var(--text-muted) !important;
}
.leaflet-control-attribution a { color: var(--primary-red) !important; }

/* ===== CONTACT ===== */
.contact-section {
    background: radial-gradient(ellipse at 50% 40%, rgba(255,0,0,0.12) 0%, transparent 55%);
    padding: 80px 0;
}
.contact-container { display: flex; justify-content: center; }
.contact-content { max-width: 750px; text-align: center; }
.contact-subtitle { font-style: italic; font-size: 0.85rem; font-weight: 700; text-align: left; }

.contact-content h2 {
    font-size: 2.8rem; line-height: 1.15; margin-bottom: 18px;
    font-style: italic; font-weight: 800;
}
.contact-content p {
    color: var(--text-light); font-size: 0.95rem;
    margin-bottom: 35px; line-height: 1.6; font-weight: 400;
}

.contact-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.contact-card {
    display: flex; align-items: center; padding: 16px 28px;
    border-radius: 14px; gap: 16px; color: white;
    text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(15,15,15,0.8); border: 2px solid var(--primary-red);
    flex: 1; min-width: 230px; max-width: 320px;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 0 25px rgba(255,0,0,0.3); }
.contact-icon { font-size: 2.2rem; color: var(--primary-red); }
.contact-info { display: flex; flex-direction: column; }
.contact-label { font-size: 0.8rem; font-weight: 400; color: var(--primary-red); }
.contact-action { font-size: 1.1rem; font-weight: 700; color: var(--primary-red); }

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 22px 0; background: rgba(10,10,10,1);
}
.footer-container {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-logo { height: 38px; }
.footer-brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-white { font-size: 0.95rem; font-weight: 700; color: var(--text-light); }
.brand-red { font-size: 0.85rem; font-weight: 700; color: var(--primary-red); }

.footer-links { display: flex; gap: 25px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; text-decoration: underline; }
.footer-links a:hover { color: var(--text-light); }
.footer-right p { color: var(--text-muted); font-size: 0.78rem; text-align: right; line-height: 1.4; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.9rem; }
    .about-container h2 { font-size: 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-container h2 { font-size: 1.8rem; }
    .contact-content h2 { font-size: 2.3rem; }
}

@media (max-width: 768px) {
    section { padding: 50px 0; }
    .nav-links, .header-actions .btn { display: none; }
    .hamburger { display: block; }

    .hero { padding-top: 90px; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-content p { text-align: center; }
    .hero-buttons { justify-content: center; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .stat-box { min-width: 150px; padding: 22px 28px; }
    .stat-number { font-size: 2rem; }

    .about-container { flex-direction: column; text-align: center; }
    .about-container h2 { font-size: 2.2rem; }
    .stacked-card { width: 100%; margin-left: 0; }
    .offset-card { margin-right: 0; }
    .stacked-card:first-child p, .offset-card p { text-align: center; }

    .solution-cards { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }

    .tag-list { justify-content: center; }
    .benefits-container > div:first-child { text-align: center; }
    .section-desc { text-align: center; margin-left: auto; margin-right: auto; }

    .cta-container h2 { font-size: 1.5rem; }
    .cta-info-row { flex-direction: column; align-items: center; gap: 30px; }
    .cta-info-block, .cta-info-block.align-right { align-items: center; text-align: center; }
    .cta-location, .align-right .cta-location { flex-direction: column; align-items: center; text-align: center; }
    .cta-map-wrapper { height: 280px; }

    .contact-subtitle { text-align: center; }
    .contact-content h2 { font-size: 2rem; }
    .contact-cards { flex-direction: column; align-items: center; }
    .contact-card { max-width: 100%; }

    .footer-container { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .footer-right p { text-align: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem; }
    .stat-box { width: 100%; min-width: unset; }
    .stats-grid { gap: 16px; }
    .cta-container h2 { font-size: 1.3rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .contact-content h2 { font-size: 1.7rem; }
    .contact-card { padding: 14px 18px; }
    .contact-icon { font-size: 1.8rem; }
    .contact-action { font-size: 1rem; }
    .logo-name { font-size: 1rem; }
    .logo-sub { font-size: 0.55rem; }
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.page-hero { min-height: 100dvh; padding-top: 140px; padding-bottom: 60px; }
.page-hero .container { text-align: center; max-width: 800px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; }

.about-detail-section { padding: 80px 0; }
.about-detail-row { display: flex; flex-wrap: wrap; gap: 60px; align-items: center; }
.about-detail-image { flex: 1; min-width: 300px; }
.about-detail-image img { width: 100%; border-radius: 16px; filter: drop-shadow(0 10px 30px rgba(255,0,0,0.1)); }
.about-detail-text { flex: 1.2; min-width: 300px; }
.about-detail-text h2 { font-size: 2.2rem; margin-bottom: 15px; }
.about-detail-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

.visi-misi-section {
    background-color: rgba(15,15,15,0.6); padding: 80px 0;
    border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border);
}
.visi-misi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.visi-misi-card {
    padding: 40px 30px; border-radius: 16px; background: rgba(20,20,25,0.7);
    border: 1px solid var(--card-border); text-align: center;
}
.visi-misi-card.align-left { text-align: left; }
.visi-misi-card.align-left h3 { text-align: center; }
.visi-misi-icon { font-size: 3rem; color: var(--primary-red); margin-bottom: 20px; text-align: center; }
.visi-misi-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.visi-misi-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }
.visi-misi-list {
    color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; list-style-type: none;
    padding: 0; display: flex; flex-direction: column; gap: 12px;
}
.visi-misi-list i { color: var(--primary-red); margin-right: 10px; }

.location-section { padding: 80px 0; }
.location-map-wrapper {
    width: 100%; max-width: 1000px; height: 450px; border-radius: 16px;
    overflow: hidden; border: 1px solid var(--card-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.location-map-wrapper iframe { width: 100%; height: 100%; display: block; }
.location-info-row {
    display: flex; flex-wrap: wrap; gap: 30px; justify-content: center;
    width: 100%; max-width: 1000px; margin-top: 30px;
}
.location-info-card { flex: 1; min-width: 250px; }

@media (max-width: 768px) {
    .about-detail-row { gap: 30px; }
    .about-detail-text h2 { font-size: 1.8rem; }
    .page-hero p { font-size: 0.95rem; }
    .location-map-wrapper { height: 300px; }
}

/* ===== CONSULTATION MODAL ===== */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 10000; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: rgba(20, 20, 25, 0.95); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 40px; text-align: center; max-width: 480px; width: 90%;
    transform: translateY(30px) scale(0.95); transition: var(--transition);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.15); position: relative;
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-icon {
    font-size: 3rem; color: var(--primary-red); margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255,0,0,0.5));
}
.modal-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.modal-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }
.countdown-wrapper {
    position: relative; width: 100px; height: 100px; margin: 0 auto 30px;
}
.countdown-svg { transform: rotate(-90deg); width: 100px; height: 100px; }
.countdown-circle {
    width: 100%; height: 100%; fill: none; stroke-width: 6; stroke-linecap: round;
}
.countdown-bg { stroke: rgba(255, 255, 255, 0.1); }
.countdown-progress {
    stroke: var(--primary-red); stroke-dasharray: 283; stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear; filter: drop-shadow(0 0 5px rgba(255,0,0,0.8));
}
.countdown-number {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 2.2rem; font-weight: 800; color: var(--text-light);
}
.modal-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.modal-actions .btn { flex: 1; min-width: 150px; }
.btn-close-icon {
    position: absolute; top: 20px; right: 20px; background: none; border: none;
    color: var(--text-muted); font-size: 1.4rem; cursor: pointer; transition: var(--transition);
}
.btn-close-icon:hover { color: var(--primary-red); transform: scale(1.1); }

/* ===== KATALOG GRID & CARDS ===== */
.katalog-section { padding: 60px 0; min-height: 80vh; }
.katalog-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px; width: 100%; margin-top: 30px;
}
.katalog-card {
    background: rgba(20, 20, 25, 0.6); border: 1px solid var(--card-border);
    border-radius: 14px; overflow: hidden; transition: var(--transition);
    display: flex; flex-direction: column; cursor: pointer; text-decoration: none;
}
.katalog-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.3); box-shadow: 0 10px 30px rgba(255,0,0,0.1); }
.katalog-card-img {
    width: 100%; aspect-ratio: 1 / 1; background-size: cover; background-position: center;
    border-bottom: 1px solid rgba(255,255,255,0.05); position: relative;
}
.katalog-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.katalog-card-title { font-size: 1rem; font-weight: 700; color: var(--text-light); margin-bottom: 8px; line-height: 1.3; }
.katalog-card-price { font-size: 1.1rem; font-weight: 800; color: var(--primary-red); }

/* Compact 2x2 Mobile Viewport Grid (Max 4 Cards per Screen) */
@media (max-width: 600px) {
    .katalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .katalog-card-img { aspect-ratio: 1 / 1; }
    .katalog-card-body { padding: 10px; }
    .katalog-card-title { font-size: 0.8rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .katalog-card-price { font-size: 0.85rem; }
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-section { padding: 120px 0 80px; min-height: 100dvh; }
.product-detail-row { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.product-gallery { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 10px; }
.product-main-img {
    width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; background-size: cover;
    background-position: center; border: 1px solid var(--card-border);
}
.product-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; }
.product-thumb {
    width: 70px; height: 70px; border-radius: 8px; background-size: cover; background-position: center;
    cursor: pointer; border: 2px solid transparent; opacity: 0.6; transition: var(--transition); flex-shrink: 0;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--primary-red); opacity: 1; }
.product-info { flex: 1.2; min-width: 300px; display: flex; flex-direction: column; gap: 20px; }
.product-category { color: var(--primary-red); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.product-title { font-size: 2.2rem; line-height: 1.2; }
.product-price { font-size: 2rem; font-weight: 800; color: var(--text-light); border-bottom: 1px solid var(--card-border); padding-bottom: 20px; }
.product-desc { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; white-space: pre-wrap; }
.product-actions { display: flex; gap: 15px; margin-top: 20px; }
.product-actions .btn { flex: 1; font-size: 1.05rem; padding: 15px 0; }

@media (max-width: 768px) {
    .product-title { font-size: 1.8rem; }
    .product-price { font-size: 1.6rem; }
}

/* ===== DASHBOARD UI ===== */
.dashboard-login { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; }
.login-card { background: var(--card-bg); padding: 40px; border-radius: 16px; border: 1px solid var(--card-border); text-align: center; width: 100%; max-width: 400px; }
.login-card input { width: 100%; padding: 12px 15px; margin: 20px 0; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.5); color: white; outline: none; }
.login-card input:focus { border-color: var(--primary-red); }

.dashboard-container { max-width: 1400px; margin: 0 auto; padding: 100px 24px 40px; display: flex; gap: 30px; align-items: flex-start; }
.dashboard-sidebar { width: 350px; background: rgba(20, 20, 25, 0.8); padding: 25px; border-radius: 16px; border: 1px solid var(--card-border); flex-shrink: 0; }
.dashboard-content { flex: 1; }
.admin-form-group { margin-bottom: 15px; }
.admin-form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.admin-form-group input, .admin-form-group textarea, .admin-form-group select {
    width: 100%; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.5); color: white; outline: none; font-family: var(--font-main);
}
.admin-form-group textarea { min-height: 100px; resize: vertical; }
.admin-form-group input:focus, .admin-form-group textarea:focus { border-color: var(--primary-red); }
.file-upload-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 15px; }
.file-upload-slot {
    aspect-ratio: 1; border: 2px dashed rgba(255,255,255,0.2); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative;
    background-size: cover; background-position: center; overflow: hidden;
}
.file-upload-slot:hover { border-color: var(--primary-red); }
.file-upload-slot input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-upload-slot i { font-size: 1.5rem; color: var(--text-muted); }
.file-upload-slot.has-image i { display: none; }

.admin-list-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: rgba(20, 20, 25, 0.5); border-radius: 12px; overflow: hidden; }
.admin-list-table th, .admin-list-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
.admin-list-table th { background: rgba(255,0,0,0.1); color: var(--primary-red); font-size: 0.85rem; }
.admin-list-table img { width: 50px; height: 50px; object-fit: cover; border-radius: 6px; }
.admin-action-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; margin-right: 10px; transition: var(--transition); }
.admin-action-btn:hover { color: var(--primary-red); }

@media (max-width: 1024px) {
    .dashboard-container { flex-direction: column; }
    .dashboard-sidebar { width: 100%; }
    .admin-list-table { display: block; overflow-x: auto; }
}
