:root {
    --primary: #0e4e9b;
    --secondary: #082a57;
    --accent: #ffc107;
    --background: #f5faff;
    --text: #333333;
    --white: #ffffff;
    --muted: #667085;
    --line: #dbe7f5;
    --shadow: 0 18px 45px rgba(8, 42, 87, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

.main-navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(14, 78, 155, 0.1);
    box-shadow: 0 10px 30px rgba(8, 42, 87, 0.08);
    backdrop-filter: blur(14px);
}

.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.navbar-brand strong {
    display: block;
    color: var(--secondary);
    font-size: 1.05rem;
    line-height: 1.1;
}

.navbar-brand small {
    display: block;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
}

.nav-link {
    color: var(--secondary);
    font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary);
}

main {
    padding-top: 86px;
}

.section {
    padding: 82px 0;
}

.section-title {
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 14px;
}

.section-kicker {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-muted-soft {
    color: var(--muted);
}

.btn-primary-custom,
.btn-accent,
.btn-outline-custom {
    border-radius: 8px;
    font-weight: 700;
    padding: 0.78rem 1.2rem;
}

.btn-primary-custom {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.btn-primary-custom:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--secondary);
}

.btn-accent:hover {
    background: #e0a800;
    border-color: #e0a800;
    color: var(--secondary);
}

.btn-outline-custom {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
}

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(105deg, rgba(8, 42, 87, 0.92), rgba(14, 78, 155, 0.78)), url("../images/banner.jpg") center/cover no-repeat;
    color: var(--white);
}

.hero h1 {
    max-width: 850px;
    font-size: clamp(2.4rem, 6vw, 5.1rem);
    line-height: 1.05;
    font-weight: 800;
}

.hero p {
    max-width: 710px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-panel {
    max-width: 470px;
    margin-left: auto;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.hero-stat {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat:last-child {
    border-bottom: 0;
}

.hero-stat i {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    color: var(--secondary);
    background: var(--accent);
    border-radius: 8px;
}

.info-card,
.service-card,
.testimonial-card,
.contact-box,
.admin-card {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 32px rgba(8, 42, 87, 0.08);
}

.info-card,
.service-card,
.testimonial-card,
.contact-box {
    padding: 28px;
}

.service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    color: var(--primary);
    background: #e7f1ff;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.feature-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-list i {
    color: var(--accent);
    margin-top: 6px;
}

.counter-band {
    background: var(--secondary);
    color: var(--white);
}

.counter-box {
    text-align: center;
}

.counter {
    color: var(--accent);
    font-size: 2.6rem;
    font-weight: 800;
}

.map-frame {
    width: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 8px;
}

.narrow-box {
    max-width: 760px;
}

.page-hero {
    padding: 90px 0 70px;
    color: var(--white);
    background: linear-gradient(105deg, rgba(8, 42, 87, 0.96), rgba(14, 78, 155, 0.84)), url("../images/shop.jpg") center/cover no-repeat;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a,
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.86);
}

.form-control,
.form-select {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(14, 78, 155, 0.12);
}

.site-footer {
    padding: 60px 0 24px;
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.82);
}

.site-footer h5,
.site-footer h6 {
    color: var(--white);
    font-weight: 800;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
    color: var(--accent);
}

.footer-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
    background: var(--white);
    border-radius: 8px;
    padding: 8px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-float,
.back-to-top {
    position: fixed;
    z-index: 1000;
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 0;
    box-shadow: var(--shadow);
}

.whatsapp-float {
    right: 22px;
    bottom: 88px;
    background: #25d366;
    color: var(--white);
    font-size: 1.55rem;
}

.back-to-top {
    right: 22px;
    bottom: 24px;
    background: var(--accent);
    color: var(--secondary);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.admin-shell {
    min-height: 100vh;
    background: var(--background);
}

.admin-sidebar {
    min-height: 100vh;
    background: var(--secondary);
    color: var(--white);
}

.admin-sidebar a {
    display: block;
    padding: 13px 16px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    color: var(--secondary);
    background: var(--accent);
}

.table td,
.table th {
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding: 86px 0;
    }

    .hero-panel {
        margin: 34px 0 0;
    }

    .section {
        padding: 64px 0;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand strong {
        font-size: 0.9rem;
    }

    .navbar-brand small {
        display: none;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .footer-bottom {
        display: block;
    }
}
