/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-light: #f3d777;
    --gold-dark: #b8941f;
    --black: rgba(10, 40, 24, 0.92);
    --dark: rgba(20, 58, 38, 0.9);
    --dark-2: rgba(30, 77, 51, 0.88);
    --green-deep: rgba(6, 26, 16, 0.9);
    --green-soft: rgba(15, 61, 43, 0.72);
    --white: #ffffff;
    --gray-50: #f8f8f8;
    --gray-100: #f0f0f0;
    --gray-200: #e0e0e0;
    --gray-300: #c0c0c0;
    --gray-600: #707070;
    --gray-700: #4a4a4a;
    --gray-900: #1c1c1c;
    --shadow: 0 10px 30px rgba(10, 40, 24, 0.08);
    --shadow-lg: 0 18px 45px rgba(10, 40, 24, 0.15);
    --shadow-gold: 0 12px 30px rgba(212,175,55,0.28);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--gray-900);
    background: #f7f6f2;
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.2px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--gold);
}

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

.top-info a {
    color: var(--white);
    margin-right: 20px;
    transition: color .3s;
}

.top-info a:hover { color: var(--gold); }
.top-info i { color: var(--gold); margin-right: 5px; }

.top-social a {
    color: var(--white);
    margin-left: 12px;
    transition: all .3s;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.top-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    background: #efefef;
    padding: 2px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    border-bottom: none;
    transition: all .3s ease;
}

.navbar.scrolled {
    padding: 2px 0;
    background: #efefef;
    box-shadow: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-compact {
    min-width: 0;
    flex: 1;
}

.logo-mark {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 34px;
    width: 62px;
    position: relative;
}

.logo-mark span {
    display: block;
    background: linear-gradient(180deg, #f0ca52 0%, #c99d20 100%);
    border-radius: 2px 3px 0 0;
}

.logo-mark span:nth-child(1) {
    width: 14px;
    height: 22px;
    transform: skewY(36deg);
    margin-bottom: 4px;
}

.logo-mark span:nth-child(2) {
    width: 18px;
    height: 30px;
    transform: skewY(38deg);
}

.logo-mark span:nth-child(3) {
    width: 14px;
    height: 18px;
    transform: skewY(36deg);
    margin-bottom: 8px;
}

.logo-text-compact {
    color: #d9b336;
    font-size: clamp(2rem, 3vw, 3.4rem);
    letter-spacing: 0.08em;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.site-logo-compact {
    height: 42px;
    max-width: 320px;
    object-fit: contain;
}

.site-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.admin-logo-img {
    max-height: 50px;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 5px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.logo-text { color: var(--black); }

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.nav-menu a {
    padding: 10px 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.298rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-900);
    transition: color .3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 70%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-cta a {
    background: var(--black);
    color: var(--gold);
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.298rem;
    letter-spacing: 1px;
}

.nav-cta a::after { display: none; }

.nav-cta a:hover {
    background: var(--gold);
    color: var(--black);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
}

.menu-toggle:hover {
    color: var(--gold);
}

.custom-header .container {
    padding: 0 16px;
    min-height: 86px;
}

.header-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background: var(--black);
}

.slider-container {
    position: relative;
    height: 90vh;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active { opacity: 1; }

.slide-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-2) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.15) 0%, transparent 50%),
                linear-gradient(135deg, rgba(10,40,24,0.55) 0%, rgba(10,40,24,0.35) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--white);
    animation: fadeInUp 1s;
}

.slide-content h1 span { color: var(--gold); }

.slide-content .subtitle {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    animation: fadeInUp 1s 0.2s both;
}

.slide-content p {
    font-size: 17px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.85);
    animation: fadeInUp 1s 0.4s both;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.6s both;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: all .3s;
    display: inline-block;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    transition: all .3s;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212,175,55,0.2);
    color: var(--gold);
    border: 2px solid var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: all .3s;
}

.slider-nav:hover { background: var(--gold); color: var(--black); }
.slider-nav.prev { left: 30px; }
.slider-nav.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all .3s;
}

.slider-dots .dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION ===== */
.section {
    padding: 70px 0;
}

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

.section-title .label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title h2 {
    font-size: 42px;
    color: var(--black);
    margin-bottom: 15px;
}

.section-title h2 span { color: var(--gold); }

.section-title p {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto;
    position: relative;
}

.divider::before, .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.divider::before { left: -20px; }
.divider::after { right: -20px; }

.map-section {
    padding: 90px 0 0;
    margin-top: 0;
    background: #f8f8f8;
}

.map-section-title {
    margin-bottom: 40px;
}

.map-section-title .label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.map-section-title h2 {
    font-size: 42px;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.map-section-title h2 span {
    color: var(--gold);
}

.map-section-title p {
    max-width: 980px;
    font-size: 16px;
    margin-top: 12px;
}

.map-frame {
    height: 420px;
    background: var(--dark);
    position: relative;
    width: 100%;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    background: var(--gray-50);
    padding: 80px 0 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 52px;
    align-items: center;
}

.about-img {
    position: relative;
    min-height: 500px;
}

.about-img-main {
    width: 100%;
    max-width: 640px;
    height: 500px;
    background: linear-gradient(135deg, #0c3a2d 0%, #0b2f2a 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 100px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -18px;
    right: 30px;
    width: 190px;
    height: 190px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--black);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.about-content {
    padding-right: 12px;
}

.about-content .label { color: var(--gold); font-weight: 600; letter-spacing: 3px; display: inline-block; margin-bottom: 8px; }
.about-content h2 {
    font-size: clamp(2.3rem, 2.8vw, 4rem);
    line-height: 1.05;
    margin: 0 0 20px;
    color: var(--black);
}
.about-content p { color: var(--gray-700); margin-bottom: 20px; font-size: 1.02rem; text-align: justify; }
.about-features { list-style: none; margin: 25px 0; }
.about-features li { padding: 8px 0; display: flex; align-items: center; gap: 12px; font-size: 1.05rem; }
.about-features i { color: var(--gold); font-size: 18px; }

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all .4s;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .4s;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--black), var(--dark-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gold);
    font-size: 32px;
    transition: all .4s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--black); }
.service-card p { color: var(--gray-600); }

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, var(--black), var(--dark-2));
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23d4af37' stroke-width='1' opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    justify-items: center;
    align-items: center;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.stat-item i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--gold);
    display: block;
    letter-spacing: 1px;
}

.stat-item h4 {
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== PORTFOLIO ===== */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 22px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 30px;
    cursor: pointer;
    transition: all .3s;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3 / 4;
    background: var(--dark);
}

.portfolio-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark), var(--black));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 60px;
}

.portfolio-item:hover .portfolio-img { transform: scale(1.1); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 1;
    transition: opacity .4s;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: var(--white);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h3 { color: var(--white); margin-bottom: 5px; }
.portfolio-overlay .category {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== TESTIMONI ===== */
.testimoni {
    background: var(--gray-50);
}

.testimoni-grid {
    position: relative;
    width: min(100%, 720px);
    min-height: 280px;
    margin: 0 auto;
    perspective: 1000px;
    touch-action: pan-y;
    cursor: grab;
}

.testimoni-grid:active { cursor: grabbing; }

.testimoni-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    min-height: 280px;
    height: fit-content;
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform-origin: center top;
    transition: transform .55s ease, opacity .55s ease, visibility .55s ease, box-shadow .55s ease;
    pointer-events: none;
}

.testimoni-card.is-active {
    z-index: 4;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
}

.testimoni-card.is-next-1,
.testimoni-card.is-next-2,
.testimoni-card.is-next-3 {
    opacity: 0;
    visibility: hidden;
    transform: none;
}

.testimoni-card.is-next-1 {
    z-index: 3;
}

.testimoni-card.is-next-2 {
    z-index: 2;
}

.testimoni-card.is-next-3 {
    z-index: 1;
}

.quote-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimoni-text {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 20px;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.author-info h5 { font-family: 'Bebas Neue', sans-serif; font-size: 16px; font-weight: 400; color: var(--black); }
.author-info small { color: var(--gray-600); }

.stars { color: var(--gold); margin-top: 5px; }

.testimoni-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimoni-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testimoni-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ===== TIM ===== */
.tim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.tim-card {
    text-align: center;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all .4s;
}

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

.tim-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--black), var(--dark-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 50px;
    border: 4px solid var(--gold);
}

.tim-card h3 { font-size: 20px; margin-bottom: 5px; color: var(--black); }
.tim-card .jabatan { color: var(--gold); font-weight: 600; font-size: 14px; }
.tim-card .bio { color: var(--gray-600); font-size: 14px; margin-top: 10px; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--black), var(--dark-2));
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.2), transparent 70%);
}

.cta-section h2 { color: var(--white); font-size: 38px; margin-bottom: 20px; position: relative; }
.cta-section h2 span { color: var(--gold); }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 30px; position: relative; }

/* ===== POWERED BY / PARTNERS ===== */
.powered-by {
    background: var(--gray-50);
    padding: 70px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partners-grid-logo-only {
    gap: 40px;
}

.partner-item {
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
}

.partner-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.partner-logo-wrap {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: none;
}

.partner-item:hover .partner-logo-wrap {
    box-shadow: none;
    border-color: transparent;
}

.partner-logo-wrap img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: none;
}

.partner-item:hover .partner-logo-wrap img {
    filter: none;
    opacity: 1;
}

.partner-name-fallback {
    display: none;
}

.partner-name {
    display: none;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

.contact-info-list { display: flex; flex-direction: column; gap: 25px; }

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 { font-family: 'Bebas Neue', sans-serif; font-size: 15px; font-weight: 400; margin-bottom: 5px; color: var(--black); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item p { color: var(--gray-700); font-size: 14px; }

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--black);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border .3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-submit {
    background: var(--gold);
    color: var(--black);
    padding: 14px 36px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    font-size: 15px;
    width: 100%;
}

.btn-submit:hover {
    background: var(--black);
    color: var(--gold);
    transform: translateY(-2px);
}

.alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ===== ADMIN BANNER ===== */
.admin-banner {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-2) 100%);
    border-radius: 12px;
    padding: 35px 40px;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.3);
}

.admin-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.admin-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.banner-greeting {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.banner-title {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.banner-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

.banner-subtitle strong {
    color: var(--gold);
    font-weight: 700;
}

.banner-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-stat {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    min-width: 100px;
}

.banner-stat strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.banner-stat span {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ===== DASHBOARD GRID ===== */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.dashboard-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===== QUICK MENU ===== */
.quick-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.quick-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 15px;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    transition: all .3s;
    text-align: center;
}

.quick-menu-item:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.quick-menu-item:hover i,
.quick-menu-item:hover span,
.quick-menu-item:hover small {
    color: var(--black);
}

.quick-menu-item i {
    font-size: 24px;
    color: var(--gold);
    transition: color .3s;
}

.quick-menu-item span {
    font-weight: 700;
    color: var(--black);
    font-size: 14px;
}

.quick-menu-item small {
    color: var(--gray-600);
    font-size: 11px;
}

@media (max-width: 992px) {
    .dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .banner-content { flex-direction: column; align-items: flex-start; }
    .banner-title { font-size: 24px; }
    .banner-stats { width: 100%; }
    .banner-stat { flex: 1; min-width: 0; padding: 12px 15px; }
    .quick-menu { grid-template-columns: 1fr; }
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .service-card {
        padding: 18px 10px;
    }
    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 14px;
    }
    .service-card h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .service-card p {
        display: none;
    }
    .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        justify-items: center;
        align-items: center;
    }
    .stat-item {
        padding: 16px 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .stat-item i {
        font-size: 30px;
        margin-bottom: 8px;
    }
    .stat-number {
        font-size: 36px;
    }
    .stat-item h4 {
        font-size: 11px;
        letter-spacing: 0.6px;
    }
}

/* ===== LOGO UPLOAD ===== */
.logo-upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.logo-preview-box {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed var(--gray-300);
    text-align: center;
}

.logo-preview-box label {
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.logo-preview-area {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 20px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.logo-preview-area img {
    max-height: 130px;
    max-width: 100%;
    object-fit: contain;
}

.logo-placeholder {
    color: var(--gray-300);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-placeholder i {
    font-size: 50px;
}

.logo-placeholder span {
    font-size: 13px;
}

.favicon-area img {
    max-height: 80px;
    max-width: 80px;
}

@media (max-width: 768px) {
    .logo-upload-grid { grid-template-columns: 1fr; }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--black), var(--dark-2));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.2), transparent 70%);
}

.page-header h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.page-header h1 span { color: var(--gold); }

.breadcrumb {
    color: var(--gold);
    font-size: 14px;
    position: relative;
}

.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-title, .footer h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
    color: rgba(255,255,255,0.7);
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer ul a:hover { color: var(--gold); }
.footer ul a i { color: var(--gold); font-size: 10px; }

.contact-info li { display: flex; align-items: flex-start; gap: 12px; }
.contact-info i { color: var(--gold); margin-top: 5px; }

.footer-social { display: flex; gap: 10px; margin-top: 15px; }

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all .3s;
    border: 1px solid rgba(212,175,55,0.3);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(212,175,55,0.2);
    padding-top: 25px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all .3s;
    animation: pulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .slide-content h1 { font-size: 42px; }
    .section-title h2 { font-size: 32px; }
    .about-img-accent { display: none; }
    .traffic-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .traffic-chart-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .menu-toggle { display: block; }
    
    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(10, 40, 24, 0.08);
        border-radius: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 14px 12px;
        box-shadow: 0 18px 40px rgba(10, 40, 24, 0.15);
        display: none;
    }
    
    .nav-menu.active { display: flex; }
    
    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: block;
        padding: 14px 16px;
        border-radius: 10px;
        border-bottom: 1px solid rgba(10, 40, 24, 0.05);
        font-size: 1.05rem;
    }
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    .nav-cta { margin-top: 6px; }
    .nav-cta a {
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }
    
    .slide-content h1 { font-size: 32px; }
    .slide-content .subtitle { font-size: 16px; }
    .slide-content p { font-size: 14px; }
    .slide-content { max-width: 90%; padding: 40px 50px; }
    
    .slider-nav { width: 40px; height: 40px; font-size: 14px; }
    .slider-nav.prev { left: 10px; }
    .slider-nav.next { right: 10px; }
    
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 28px; }
    
    .page-header h1 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 25px 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stat-number { font-size: 36px; }
    
    .powered-by .partners-grid,
    .partners-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        justify-content: center;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .powered-by .partner-item,
    .partner-item {
        flex: 0 0 auto;
        width: 80px;
        scroll-snap-align: start;
    }
    
    .powered-by .partner-logo-wrap img,
    .partner-logo-wrap img {
        max-height: 60px;
        max-width: 80px;
    }
    
    .testimoni-grid {
        overflow: visible;
        position: relative;
        width: 100%;
    }

    .testimoni-track {
        display: flex;
        transition: transform 0.5s ease;
    }
    
    .testimoni-card {
        flex: 0 0 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 25px 20px;
    }
    
    .testimoni-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    
    .testimoni-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--gray-300);
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        padding: 0;
    }
    
    .testimoni-dot.active {
        background: var(--gold);
        transform: scale(1.2);
    }
    .traffic-summary { grid-template-columns: 1fr; }
    .traffic-card { padding: 18px 16px; }
    .chart-wrap { height: 260px; }
    .chart-wrap-tall { height: 290px; }
}

@media (max-width: 480px) {
    .slide-content h1 { font-size: 24px; margin-bottom: 15px; }
    .slide-content .subtitle { font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
    .slide-content p { font-size: 13px; margin-bottom: 20px; }
    .slide-content { padding: 30px 55px; max-width: 95%; }
    .slider-nav { width: 36px; height: 36px; font-size: 12px; }
    .slider-nav.prev { left: 5px; }
    .slider-nav.next { right: 5px; }
    .btn-group { gap: 10px; }
    .btn-primary, .btn-outline { padding: 10px 20px; font-size: 13px; }
}

.traffic-shell {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.traffic-header {
    padding: 20px 26px;
    gap: 16px;
}

.traffic-header h1 {
    margin: 0;
}

.traffic-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.traffic-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,245,245,0.95));
    border: 1px solid rgba(10, 40, 24, 0.08);
    border-left: 4px solid var(--gold);
    padding: 22px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
}

.traffic-card-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--gold), #e8c661);
    color: var(--black);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 12px 24px rgba(212,175,55,0.25);
}

.traffic-card-info {
    min-width: 0;
}

.traffic-card-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(26px, 2vw, 36px);
    line-height: 1;
    margin: 0 0 8px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
}

.traffic-card-info p {
    margin: 0;
    color: var(--gray-600);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
}

.traffic-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.traffic-chart-panel {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 40, 24, 0.05);
    padding: 20px 20px 12px;
}

.traffic-chart-panel-wide {
    grid-column: 1 / -1;
}

.traffic-panel-header {
    margin-bottom: 14px;
}

.traffic-panel-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--black);
    font-weight: 700;
}

.chart-wrap {
    height: 300px;
    position: relative;
}

.chart-wrap-tall {
    height: 330px;
}

.traffic-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media print {
    body.admin {
        background: #fff;
    }

    .admin-sidebar,
    .admin-menu,
    .admin-user,
    #exportPdfBtn,
    .admin-header .btn-admin,
    .admin-header .traffic-actions,
    .admin-header > div:last-child {
        display: none !important;
    }

    .admin-wrapper {
        display: block;
    }

    .admin-content {
        margin-left: 0;
        padding: 0;
    }

    .traffic-shell,
    .traffic-chart-panel,
    .traffic-card,
    .admin-header {
        box-shadow: none !important;
        border: 1px solid #e5e7eb !important;
        background: #fff !important;
    }
}

/* ===== ADMIN PANEL STYLES ===== */
body.admin {
    background: var(--gray-50);
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--black);
    color: var(--white);
    padding: 25px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-logo {
    padding: 0 25px 25px;
    border-bottom: 1px solid rgba(212,175,55,0.3);
    margin-bottom: 25px;
}

.admin-logo h2 {
    color: var(--gold);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admin-logo small { color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

.admin-menu { list-style: none; }

.admin-menu-toggle {
    display: none;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: rgba(255,255,255,0.7);
    transition: all .3s;
    border-left: 3px solid transparent;
}

.admin-menu a:hover, .admin-menu a.active {
    background: rgba(212,175,55,0.1);
    color: var(--gold);
    border-left-color: var(--gold);
}

.admin-menu a i { width: 20px; }

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 25px;
}

.admin-header {
    background: var(--white);
    padding: 18px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 { font-size: 22px; color: var(--black); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.admin-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid var(--gold);
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 24px;
}

.stat-card-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
}

.stat-card-info p {
    color: var(--gray-600);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.admin-table {
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-collapse: collapse;
}

.admin-table th {
    background: var(--black);
    color: var(--gold);
    padding: 14px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table td {
    padding: 14px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}

.admin-table tr:hover { background: var(--gray-50); }

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success { background: #d4edda; color: #155724; }
.badge-danger { background: #f8d7da; color: #721c24; }
.badge-warning { background: #fff3cd; color: #856404; }

.btn-admin {
    padding: 8px 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
}

.btn-edit { background: var(--gold); color: var(--black); }
.btn-edit:hover { background: var(--gold-dark); }

.btn-delete { background: #dc3545; color: var(--white); }
.btn-delete:hover { background: #c82333; }

.btn-add {
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

.btn-add:hover { background: var(--black); color: var(--gold); }

.admin-form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 800px;
}

.admin-form-card .form-row { margin-bottom: 15px; }

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black), var(--dark-2));
    padding: 20px;
}

.login-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    text-align: center;
    border-top: 4px solid var(--gold);
}

.login-box h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--black);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.login-box p { color: var(--gray-600); margin-bottom: 30px; }

.login-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .admin-sidebar {
        display: none;
    }

    .admin-logo-wrap {
        display: none;
    }

    .admin-menu {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, 1fr));
        align-items: stretch;
        justify-content: stretch;
        gap: 8px 6px;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
    }

    .admin-menu li {
        min-width: 0;
    }

    .admin-menu a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 8px 4px;
        font-size: 9px;
        line-height: 1.15;
        text-align: center;
        border-left: none;
        border-bottom: none;
        min-height: 46px;
        height: 100%;
    }

    .admin-menu a i {
        width: auto;
        font-size: 20px;
        margin: 0;
    }

    .admin-content {
        margin-left: 0;
        padding: 16px 12px 12px;
    }

    .admin-wrapper { flex-direction: column; }
    .admin-header {
        padding: 16px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 10px;
    }

    .admin-header h1 {
        font-size: 18px;
        letter-spacing: 0.4px;
    }

    .btn-add {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }

    .admin-form-card {
        padding: 18px 16px;
        max-width: 100%;
    }

    .admin-form-card .form-row {
        grid-template-columns: 1fr;
    }

    .admin-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        border-radius: 8px;
        white-space: normal;
    }

    .admin-table thead {
        display: none;
    }

    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table tbody {
        padding: 8px;
    }

    .admin-table tr {
        background: var(--white);
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        overflow: hidden;
    }

    .admin-table td {
        padding: 10px 12px;
        border-bottom: 1px solid var(--gray-100);
    }

    .admin-table td:last-child {
        border-bottom: none;
    }

    .admin-table td:last-child a {
        margin-right: 6px;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 82px;
    }
}