:root {
    --primary: #c0392b;
    --primary-dark: #96281b;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.18);
    --radius: 12px;
    --whatsapp: #25D366;
    --phone-color: #c0392b;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #fff;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 900;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.nav-logo-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.nav-links a:hover, .nav-links a.active {
    background: var(--primary);
    color: white;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-phone a {
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-call {
    background: var(--primary);
    color: white !important;
}

.btn-call:hover { background: var(--primary-dark) !important; }

.btn-wa {
    background: var(--whatsapp);
    color: white !important;
}

.btn-wa:hover { opacity: 0.9; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #c0392b 0%, #96281b 40%, #2c3e50 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge-dot {
    width: 8px; height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span { color: #ffd700; }

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary) !important;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.btn-hero-call:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

.btn-hero-wa {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: white !important;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
}

.btn-hero-wa:hover { transform: translateY(-2px); opacity: 0.92; }

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 32px;
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    transition: all 0.3s;
}

.hero-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateX(5px);
}

.hero-card-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.hero-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

/* SECTIONS */
.section {
    padding: 80px 20px;
}

.section-alt { background: var(--light-bg); }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: all 0.35s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.kw-tag {
    background: #fef2f2;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 36px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.why-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

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

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.review-quote {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 48px;
    color: #fde8e8;
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary);
}

.review-location {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #8b1a1a !important;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.cta-btn-call:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

.cta-btn-call2 {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #8b1a1a !important;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}
.cta-btn-call2:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

.cta-btn-wa {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp);
    color: white !important;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
}

.cta-btn-wa:hover { transform: translateY(-3px); opacity: 0.92; }

.cta-hours {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* FOOTER */
footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    padding: 50px 20px 20px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.footer-logo-text span { color: var(--accent); }

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-h {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 10px;
}

/* FLOATING BUTTONS */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.float-btn {
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: all 0.3s;
    position: relative;
}

.float-btn:hover { transform: scale(1.12); }

.float-btn-wa { background: var(--whatsapp); }
.float-btn-phone { background: var(--phone-color); }

.float-btn svg {
    width: 28px; height: 28px;
    fill: white;
}

.float-tooltip {
    position: absolute;
    right: 70px;
    background: var(--secondary);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--secondary);
}

.float-btn:hover .float-tooltip { opacity: 1; }

.float-pulse {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    animation: float-pulse 2.5s infinite;
}

.float-btn-wa .float-pulse { background: var(--whatsapp); }
.float-btn-phone .float-pulse { background: var(--phone-color); }

@keyframes float-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ci-phone { background: #fef2f2; }
.ci-wa { background: #f0fdf4; }
.ci-addr { background: #eff6ff; }
.ci-hours { background: #fefce8; }

.contact-item-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-item-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.contact-item-value a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-value a:hover { color: var(--primary-dark); }

.contact-item-sub {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-big-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-big-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.contact-big-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.cbtn-phone {
    background: var(--primary);
    color: white;
}

.cbtn-gsm {
    background: var(--primary-dark);
    color: white;
}

.cbtn-wa {
    background: var(--whatsapp);
    color: white;
}

.cbtn-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.cbtn-texts span:first-child {
    display: block;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 2px;
}

.cbtn-texts span:last-child {
    display: block;
    font-size: 19px;
    font-weight: 800;
}

.hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    color: #92400e;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 16px;
}

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 100px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 900;
    color: white;
    margin-bottom: 14px;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumb a:hover { color: white; }

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: white;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.mobile-menu a:hover { background: var(--light-bg); color: var(--primary); }

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.mobile-menu-btns a {
    flex: 1;
    text-align: center;
    font-size: 14px !important;
    padding: 12px 10px !important;
}

/* ADMIN */
.admin-login-wrap {
    min-height: 100vh;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-card {
    background: white;
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 420px;
}

.admin-logo {
    text-align: center;
    margin-bottom: 32px;
}

.admin-logo h2 {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    margin-top: 12px;
}

.admin-logo p { font-size: 14px; color: var(--text-muted); }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-admin-login {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-admin-login:hover { background: var(--primary-dark); }

.alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ADMIN DASHBOARD */
.admin-body { background: var(--light-bg); min-height: 100vh; }

.admin-topbar {
    background: white;
    box-shadow: var(--shadow);
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
}

.admin-topbar-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-topbar-right a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.admin-topbar-right a:hover { background: var(--light-bg); color: var(--primary); }

.admin-topbar-right a.btn-logout {
    background: var(--primary);
    color: white;
}

.admin-content {
    padding: 84px 24px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-stat-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.asi-red { background: #fef2f2; }
.asi-green { background: #f0fdf4; }
.asi-blue { background: #eff6ff; }
.asi-yellow { background: #fefce8; }

.admin-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.admin-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.admin-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 24px;
}

.admin-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: var(--light-bg);
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dark);
    vertical-align: top;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--light-bg); }

.badge-new {
    background: #dcfce7;
    color: #166534;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.badge-read {
    background: #f3f4f6;
    color: #6b7280;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.btn-sm {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-danger { background: #fef2f2; color: var(--primary); }
.btn-danger:hover { background: var(--primary); color: white; }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state .empty-icon { font-size: 48px; margin-bottom: 14px; }
.empty-state p { font-size: 15px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-phone { display: none; }
    .hamburger { display: flex; }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .hero h1 { font-size: 32px; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 24px; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }

    .section-header h2 { font-size: 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .contact-grid { grid-template-columns: 1fr; }

    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btn-call, .cta-btn-wa { width: 100%; max-width: 320px; justify-content: center; }

    .hero-btns { flex-direction: column; }
    .btn-hero-call, .btn-hero-wa { justify-content: center; }

    .admin-stats { grid-template-columns: 1fr 1fr; }
    .page-hero h1 { font-size: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .admin-stats { grid-template-columns: 1fr; }
    .hero h1 { font-size: 26px; }
    .float-btn { width: 52px; height: 52px; }
}
