/* ============================================ */
/* RESET & VARIABLES                            */
/* ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --red: #ED1C24;
    --red-deep: #C4161C;
    --red-light: #FEE2E2;
    --teal: #00A99D;
    --teal-deep: #008B80;
    --teal-light: #CCFBF1;
    --navy: #1B2631;
    --navy-soft: #2C3E50;
    --navy-light: #E8ECEF;
    --ink: #0A0A0A;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --bg: #FFFFFF;
    --bg-warm: #F8FAFB;
    --border: #E5E7EB;
    --yellow: #FACC15;
    --font: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --gradient: linear-gradient(135deg, var(--red) 0%, var(--teal) 100%);
    --gradient-red: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
    --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
    --gradient-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--navy);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Logo */
.logo-img { height: 48px; width: auto; transition: transform 0.3s; }
.logo:hover .logo-img { transform: scale(1.05); }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

/* Cursor */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    border-radius: 50%; opacity: 0;
    transition: opacity 0.3s;
}
.cursor-dot { width: 8px; height: 8px; background: var(--red); }
.cursor-outline {
    width: 36px; height: 36px;
    border: 2px solid var(--red);
    transition: transform 0.15s ease-out, opacity 0.3s, background 0.3s, border-color 0.3s;
}
@media (max-width: 992px) { .cursor-dot, .cursor-outline { display: none; } }

/* ============================================ */
/* NAVBAR — TRANSPARAN ELEGAN                   */
/* ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(27, 38, 49, 0.06);
    box-shadow: 0 4px 24px -12px rgba(27, 38, 49, 0.08);
}

.navbar-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #ED1C24, #00A99D);
    transition: width 0.1s linear;
    opacity: 0.9;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.logo:hover { transform: translateY(-1px); }

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo:hover .logo-img { transform: scale(1.04); }

/* Menu Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: inline-block;
    padding: 10px 18px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.1px;
    position: relative;
    transition: color 0.3s;
    opacity: 0.85;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #ED1C24, #00A99D);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--red);
    opacity: 1;
}
.nav-link:hover::after { width: 24px; }

.nav-link.active {
    color: var(--navy);
    font-weight: 700;
    opacity: 1;
}
.nav-link.active::after { width: 24px; }

/* CTA */
.nav-cta-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--navy);
    color: white;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ED1C24, #00A99D);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.btn-nav span {
    position: relative;
    z-index: 1;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -8px rgba(27, 38, 49, 0.3);
}
.btn-nav:hover::before { opacity: 1; }

/* ============================================ */
/* HAMBURGER                                    */
/* ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger:hover { background: rgba(27, 38, 49, 0.06); }

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.hamburger.active { background: rgba(27, 38, 49, 0.08); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================ */
/* MOBILE MENU — DIPERBAIKI                     */
/* ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1050;
    padding: 100px 32px 40px;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header { margin-bottom: 40px; }
.mobile-logo img { height: 42px; width: auto; }

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    display: block;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.85;
    position: relative;
}

.mobile-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #ED1C24, #00A99D);
    border-radius: 3px;
    transition: height 0.3s;
}

.mobile-link:hover {
    background: rgba(27, 38, 49, 0.04);
    opacity: 1;
    padding-left: 26px;
}
.mobile-link:hover::before { height: 20px; }

.mobile-link.active {
    font-weight: 700;
    opacity: 1;
    color: var(--red);
}
.mobile-link.active::before { height: 20px; }

.mobile-menu-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(27, 38, 49, 0.08);
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--navy);
    color: white;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.mobile-cta:hover {
    background: linear-gradient(135deg, #ED1C24, #00A99D);
    transform: translateY(-2px);
}

.mobile-cta i {
    font-size: 0.85rem;
    transition: transform 0.3s;
}
.mobile-cta:hover i { transform: translateX(5px); }

.mobile-menu-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mmi-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray);
}
.mmi-item i {
    color: var(--teal);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

/* ============================================ */
/* MOBILE OVERLAY                               */
/* ============================================ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 992px) {
    .nav-menu,
    .nav-cta-wrap { display: none; }
    .hamburger { display: flex; }
    .logo-img { height: 40px; }
}

@media (max-width: 480px) {
    .navbar { padding: 14px 0; }
    .navbar.scrolled { padding: 10px 0; }
    .logo-img { height: 36px; }
    .mobile-menu { padding: 90px 24px 32px; }
    .mobile-link { padding: 14px 18px; font-size: 1rem; }
    .mobile-logo img { height: 38px; }
} 
 
/* ============================================ */
/* HERO — REDESIGNED                            */
/* ============================================ */
.hero {
    position: relative;
    padding: 140px 0 0;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
    min-height: 100vh;
}

/* Background decorations */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.mesh-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(27, 38, 49, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 38, 49, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 30% 40%, black 10%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 40%, black 10%, transparent 65%);
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: float1 10s ease-in-out infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.25) 0%, transparent 70%);
    bottom: -100px;
    left: -150px;
    animation: float2 12s ease-in-out infinite;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: float1 14s ease-in-out infinite reverse;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.15) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation: float2 8s ease-in-out infinite;
}

.cable-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    opacity: 0.4;
}

.line-1 {
    top: 30%;
    left: 0;
    width: 40%;
    animation: dash 8s linear infinite;
}

.line-2 {
    bottom: 40%;
    right: 0;
    width: 50%;
    animation: dash 10s linear infinite reverse;
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

/* Badge dengan shine effect */
.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.08), rgba(0, 169, 157, 0.08));
    color: var(--red);
    padding: 12px 22px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    border: 1.5px solid rgba(237, 28, 36, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.badge-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.4;
    animation: pulse 2s infinite;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Judul */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 32px;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.25s; }
.title-line:nth-child(3) { animation-delay: 0.4s; position: relative; display: inline-block; }

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
    background: linear-gradient(135deg, #ED1C24 0%, #00A99D 50%, #FACC15 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease-in-out infinite;
    position: relative;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ED1C24, #00A99D, #FACC15);
    border-radius: 3px;
    opacity: 0.7;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

/* Deskripsi */
.hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.hero-desc strong {
    color: var(--navy);
    font-weight: 700;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.75s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ED1C24 0%, #C4161C 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px -8px rgba(237, 28, 36, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00A99D 0%, #008B80 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(237, 28, 36, 0.6);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(6px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--navy);
    color: var(--navy);
    transition: all 0.3s;
    background: transparent;
}

.btn-ghost:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(27, 38, 49, 0.4);
}

/* Trust indicators */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.9s forwards;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.trust-item i {
    color: var(--teal);
    font-size: 0.95rem;
}

/* ============================================ */
/* HERO VISUAL                                  */
/* ============================================ */
.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

.hero-img-wrapper {
    position: relative;
    padding: 20px;
}

.img-blob {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ED1C24 0%, #00A99D 50%, #FACC15 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 12s ease-in-out infinite;
    z-index: 0;
    opacity: 0.9;
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.img-frame {
    position: relative;
    z-index: 1;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    animation: morph 12s ease-in-out infinite;
}

.img-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.15) 0%, rgba(0, 169, 157, 0.15) 100%);
    pointer-events: none;
}

/* Floating badges — baru */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
    border: 2px solid rgba(27, 38, 49, 0.1);
    transition: transform 0.3s;
}

.floating-badge:hover {
    transform: translateY(-6px) scale(1.05);
}

.badge-hdg {
    top: 60px;
    left: -30px;
    animation-delay: 0s;
}

.badge-sni {
    bottom: 100px;
    right: -30px;
    animation-delay: 1.5s;
}

.badge-fast {
    bottom: 20px;
    left: 40px;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
}

.fb-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.badge-hdg .fb-icon {
    background: linear-gradient(135deg, #ED1C24, #C4161C);
}

.badge-sni .fb-icon {
    background: linear-gradient(135deg, #00A99D, #008B80);
}

.badge-fast .fb-icon {
    background: linear-gradient(135deg, #FACC15, #F97316);
}

.fb-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.fb-text strong {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.fb-text span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.5px;
}

/* ============================================ */
/* HERO STATS                                   */
/* ============================================ */
.hero-stats-wrapper {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #1B2631 0%, #2C3E50 100%);
    padding: 50px 0;
    margin-top: 40px;
    overflow: hidden;
}

.hero-stats-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.2), rgba(0, 169, 157, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FACC15;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: white;
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FACC15 0%, #ED1C24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 2px;
    display: inline;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* ============================================ */
/* HERO RESPONSIVE                              */
/* ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-img-wrapper img,
    .img-frame img {
        height: 450px;
    }

    .hero-title {
        align-items: center;
    }

    .title-line:nth-child(3) {
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 0;
    }

    .hero-img-wrapper img,
    .img-frame img {
        height: 360px;
    }

    .hero-title {
        letter-spacing: -1.5px;
    }

    .floating-badge {
        padding: 10px 14px;
        gap: 8px;
    }

    .fb-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .fb-text strong { font-size: 0.75rem; }
    .fb-text span { font-size: 0.6rem; }

    .badge-hdg { top: 30px; left: -10px; }
    .badge-sni { bottom: 60px; right: -10px; }
    .badge-fast { display: none; }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px 0;
    }

    .stat-item {
        flex: 0 0 50%;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-number { font-size: 1.75rem; }
    .stat-suffix { font-size: 1.25rem; }
    .stat-icon { width: 40px; height: 40px; font-size: 0.95rem; }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-img-wrapper img,
    .img-frame img {
        height: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-item {
        font-size: 0.75rem;
    }
}

/* MARQUEE */
.marquee {
    background: linear-gradient(90deg, #ED1C24 0%, #00A99D 50%, #ED1C24 100%);
    background-size: 200% 100%;
    color: white;
    padding: 22px 0;
    overflow: hidden;
    animation: gradientShift 8s linear infinite;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.marquee-content {
    display: flex; gap: 40px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 700;
    letter-spacing: 4px;
}
.marquee-content .dot { color: white; font-size: 1.5rem; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SECTION COMMON */
section { padding: 120px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--red);
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.08), rgba(0, 169, 157, 0.08));
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1.5px solid rgba(237, 28, 36, 0.15);
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 18px;
    color: var(--navy);
    line-height: 1.05;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* PROFIL */
.profil { background: #FFFFFF; }
.profil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.profil-visual { position: relative; height: 520px; }
.profil-img-wrapper {
    position: relative; height: 100%;
    border-radius: 32px; overflow: hidden;
    transform: rotate(-2deg);
    transition: transform 0.5s;
    box-shadow: 0 30px 60px -20px rgba(27, 38, 49, 0.25);
}
.profil-img-wrapper:hover { transform: rotate(0deg) scale(1.02); }
.profil-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.profil-shape {
    position: absolute;
    top: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--gradient-teal);
    border-radius: 50%;
    z-index: -1;
}
.year-badge {
    position: absolute;
    bottom: -30px; left: -20px;
    background: var(--navy);
    color: white;
    padding: 24px 28px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px -15px rgba(27, 38, 49, 0.4);
    transform: rotate(-3deg);
    z-index: 2;
}
.year-num {
    font-family: var(--font-display);
    display: block;
    font-size: 1.75rem; font-weight: 700;
    letter-spacing: -1px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.year-text {
    font-size: 0.7rem; font-weight: 600;
    opacity: 0.8; margin-top: 6px;
    display: block; letter-spacing: 1px;
    text-transform: uppercase;
}
.experience-pill {
    position: absolute;
    top: 30px; left: -20px;
    background: white;
    padding: 12px 20px;
    border-radius: 100px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.15);
    border: 2px solid var(--navy);
    z-index: 2;
    font-family: var(--font-display);
    font-weight: 700; font-size: 0.85rem;
    transform: rotate(-3deg);
}
.experience-pill i { color: var(--teal); font-size: 1rem; }
.profil-text .lead {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 28px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}
.profil-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 22px;
    line-height: 1.8;
}
.profil-text strong {
    color: var(--navy);
    font-weight: 700;
    background: linear-gradient(transparent 55%, rgba(0, 169, 157, 0.3) 55%);
    padding: 0 4px;
}

/* VISI MISI */
.visi-misi-section {
    background: linear-gradient(135deg, #1B2631 0%, #2C3E50 100%);
    border-radius: 32px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.visi-misi-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.25) 0%, transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
}
.visi-misi-section::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.25) 0%, transparent 70%);
    bottom: -200px; left: -200px;
    pointer-events: none;
}
.vm-visual-side { position: relative; height: 620px; }
.vm-main-img {
    position: absolute;
    top: 0; left: 0;
    width: 85%; height: 75%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
    transition: transform 0.5s;
    z-index: 2;
}
.vm-main-img:hover { transform: rotate(0deg) scale(1.02); }
.vm-main-img img { width: 100%; height: 100%; object-fit: cover; }
.vm-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.15) 0%, rgba(0, 169, 157, 0.15) 100%);
}
.vm-float-img {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    border: 6px solid white;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4);
    transition: transform 0.4s;
    z-index: 3;
}
.vm-float-img:hover { transform: scale(1.05) rotate(3deg); }
.vm-float-img img { width: 100%; height: 100%; object-fit: cover; }
.vm-float-1 { width: 200px; height: 200px; bottom: 20px; right: 0; transform: rotate(4deg); }
.vm-float-2 { width: 150px; height: 150px; top: 40%; left: -20px; transform: rotate(-6deg); }
.vm-badge-floating {
    position: absolute;
    bottom: 40px; left: 30px;
    background: var(--gradient);
    color: white;
    padding: 24px 28px;
    border-radius: 24px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 20px 40px -15px rgba(237, 28, 36, 0.6);
    z-index: 4;
    transform: rotate(-3deg);
    animation: floatCard 5s ease-in-out infinite;
}
.vm-badge-num {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 700;
    line-height: 1; letter-spacing: -3px;
}
.vm-badge-text {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 2px; line-height: 1.2;
    opacity: 0.95;
}
.vm-content-side {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 1;
}
.vm-block { position: relative; }
.vm-label-new {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(237, 28, 36, 0.15);
    border-radius: 100px;
    border: 1.5px solid rgba(237, 28, 36, 0.3);
}
.teal-label {
    color: var(--teal);
    background: rgba(0, 169, 157, 0.15);
    border-color: rgba(0, 169, 157, 0.3);
}
.vm-title-new {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    color: white;
    margin-bottom: 18px;
}
.vm-block > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}
.vm-list-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}
.vm-list-new li {
    display: flex; gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}
.vm-list-new li:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--teal);
    box-shadow: -8px 8px 0 rgba(0, 169, 157, 0.4);
}
.vm-list-num {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    color: var(--teal);
    line-height: 1; letter-spacing: -1px;
    flex-shrink: 0; min-width: 40px;
}
.vm-list-new strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.vm-list-new p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}
.gradient-text-teal {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================ */
/* EDUCATION SECTION — REDESIGNED               */
/* ============================================ */
.education {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
    position: relative;
    overflow: hidden;
}

.edu-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.edu-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.edu-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.3) 0%, transparent 70%);
    top: 10%;
    left: -200px;
    animation: float1 14s ease-in-out infinite;
}

.edu-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.2) 0%, transparent 70%);
    bottom: 10%;
    right: -200px;
    animation: float2 16s ease-in-out infinite;
}

/* ============================================ */
/* INTRO BLOCK                                  */
/* ============================================ */
.intro-block {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDFA 100%);
    border-radius: 32px;
    padding: 60px;
    margin-bottom: 80px;
    border: 2px solid rgba(0, 169, 157, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -20px rgba(27, 38, 49, 0.08);
}

.intro-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.intro-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    padding: 8px 18px;
    background: rgba(0, 169, 157, 0.1);
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1.5px solid rgba(0, 169, 157, 0.25);
}

.intro-tag i {
    font-size: 0.85rem;
}

.intro-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--navy);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.intro-text strong {
    color: var(--navy);
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(0, 169, 157, 0.25) 60%);
    padding: 0 3px;
}

/* Highlight box */
.intro-highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.05), rgba(0, 169, 157, 0.05));
    border-radius: 20px;
    margin: 28px 0;
    border-left: 4px solid var(--red);
    position: relative;
    overflow: hidden;
}

.intro-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: translateX(-100%);
    animation: shine 4s infinite;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--red), var(--orange, #f97316));
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px -8px rgba(237, 28, 36, 0.4);
}

.highlight-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 6px;
    background: none;
    padding: 0;
}

.highlight-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.7;
    color: var(--gray);
}

/* Protection list */
.protection-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.protection-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    padding: 10px 16px;
    background: white;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.05);
}

.protection-list span:hover {
    transform: translateY(-3px);
    border-color: var(--teal);
    box-shadow: 0 8px 16px -6px rgba(0, 169, 157, 0.2);
}

.protection-list i {
    color: var(--teal);
    font-size: 0.85rem;
}

/* Intro image */
.intro-image {
    position: relative;
}

.intro-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transform: rotate(-2deg);
    transition: transform 0.5s;
    box-shadow: 0 30px 60px -20px rgba(27, 38, 49, 0.25);
}

.intro-img-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.intro-img-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.intro-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 16px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--navy);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 2;
}

.intro-float-card i {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--teal), var(--teal-deep));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.intro-float-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.intro-float-card span {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
}

/* ============================================ */
/* EDUCATION TABS                               */
/* ============================================ */
.edu-tabs-wrapper {
    background: white;
    border-radius: 32px;
    border: 2px solid var(--border);
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.08);
}

.edu-tabs {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(180deg, #F8FAFB 0%, #FFFFFF 100%);
    padding: 16px;
    gap: 8px;
    border-bottom: 2px solid var(--border);
}

.edu-tab {
    flex: 1;
    min-width: 140px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-radius: 16px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.edu-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red), var(--teal));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
    z-index: 0;
}

.edu-tab > * {
    position: relative;
    z-index: 1;
}

.edu-tab:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.1);
}

.edu-tab.active {
    color: white;
    box-shadow: 0 10px 20px -8px rgba(237, 28, 36, 0.4);
}

.edu-tab.active::before {
    opacity: 1;
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s;
}

.edu-tab.active .tab-icon {
    transform: scale(1.2) rotate(-8deg);
}

.tab-label {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ============================================ */
/* EDUCATION CONTENT                            */
/* ============================================ */
.edu-content {
    display: none;
    padding: 60px;
}

.edu-content.active {
    display: block;
    animation: eduSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes eduSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.edu-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Badge */
.edu-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.edu-badge i {
    font-size: 0.7rem;
}

.red-badge {
    background: rgba(237, 28, 36, 0.1);
    color: var(--red);
    border: 1.5px solid rgba(237, 28, 36, 0.2);
}

.teal-badge {
    background: rgba(0, 169, 157, 0.1);
    color: var(--teal);
    border: 1.5px solid rgba(0, 169, 157, 0.2);
}

.navy-badge {
    background: rgba(27, 38, 49, 0.1);
    color: var(--navy);
    border: 1.5px solid rgba(27, 38, 49, 0.2);
}

.yellow-badge {
    background: rgba(250, 204, 21, 0.15);
    color: #B45309;
    border: 1.5px solid rgba(250, 204, 21, 0.3);
}

/* Text */
.edu-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 20px;
}

.edu-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.edu-text strong {
    color: var(--navy);
    font-weight: 700;
}

/* Spec cards */
.edu-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px dashed var(--border);
}

.edu-spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #F8FAFB;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid transparent;
}

.edu-spec-item:hover {
    background: white;
    transform: translateX(8px);
    border-color: var(--teal);
    box-shadow: -6px 6px 0 rgba(0, 169, 157, 0.15);
}

.spec-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.edu-spec-item:hover .spec-icon {
    transform: rotate(-10deg) scale(1.1);
}

.red-icon { background: linear-gradient(135deg, var(--red), var(--red-deep)); }
.teal-icon { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.navy-icon { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); }
.yellow-icon { background: linear-gradient(135deg, #FACC15, #F97316); }

.spec-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-info strong {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Image */
.edu-image {
    position: relative;
}

.edu-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(27, 38, 49, 0.25);
    transform: rotate(2deg);
    transition: transform 0.5s;
}

.edu-img-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.edu-img-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s;
}

.edu-img-wrapper:hover img {
    transform: scale(1.05);
}

.edu-img-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -4px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================ */
/* COMPARISON BLOCK — FIXED CONTRAST            */
/* ============================================ */
.comparison-block {
    background: linear-gradient(135deg, #1B2631 0%, #0d4f4a 50%, #008B80 100%);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 30px 60px -20px rgba(27, 38, 49, 0.3);
}

.comparison-block::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}

.comparison-block::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.comparison-header .section-tag {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.comparison-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: white;
    margin-top: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.comparison-header h3 .gradient-text {
    background: linear-gradient(135deg, #FACC15 0%, #FB923C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.comparison-table-wrapper {
    overflow-x: auto;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    padding: 4px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
    min-width: 700px;
    overflow: hidden;
}

.comparison-table thead th {
    background: #1B2631;
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.comparison-table thead th i {
    margin-right: 6px;
    color: #FACC15;
}

.comparison-table thead th:first-child {
    border-radius: 16px 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 16px 0 0;
}

.comparison-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    background: white;
    color: #52525b;
    vertical-align: middle;
    transition: background 0.3s;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover td {
    background: #F0FDFA;
}

.comparison-table tbody td strong {
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
}

.badge-good, .badge-medium, .badge-bad {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    white-space: nowrap;
}

.badge-good {
    background: rgba(0, 169, 157, 0.15);
    color: #007A70;
    border: 1px solid rgba(0, 169, 157, 0.3);
}

.badge-medium {
    background: rgba(250, 204, 21, 0.2);
    color: #92400E;
    border: 1px solid rgba(250, 204, 21, 0.4);
}

.badge-bad {
    background: rgba(237, 28, 36, 0.1);
    color: #B91C1C;
    border: 1px solid rgba(237, 28, 36, 0.25);
}

/* ============================================ */
/* EDUCATION RESPONSIVE                         */
/* ============================================ */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-img-frame img {
        height: 320px;
    }

    .edu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .edu-img-wrapper img {
        height: 320px;
    }

    .intro-block,
    .comparison-block {
        padding: 40px;
    }

    .edu-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .intro-block {
        padding: 28px;
        border-radius: 24px;
    }

    .intro-float-card {
        bottom: -15px;
        right: -10px;
        padding: 12px 16px;
    }

    .intro-float-card i {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .edu-tabs {
        padding: 10px;
        gap: 6px;
    }

    .edu-tab {
        padding: 12px 14px;
        font-size: 0.8rem;
        min-width: 100px;
        flex-direction: column;
        gap: 4px;
    }

    .tab-icon {
        font-size: 1.1rem;
    }

    .tab-label {
        font-size: 0.7rem;
    }

    .edu-content {
        padding: 28px;
    }

    .edu-img-wrapper img {
        height: 240px;
    }

    .intro-img-frame img {
        height: 240px;
    }

    .edu-img-number {
        font-size: 2.5rem;
    }

    .comparison-block {
        padding: 28px;
        border-radius: 24px;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 14px;
    }

    .comparison-table thead th i {
        display: none;
    }

    .edu-spec-item {
        padding: 10px 12px;
    }

    .spec-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .protection-list span {
        font-size: 0.72rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .intro-header h3 {
        font-size: 1.5rem;
    }

    .edu-text h3 {
        font-size: 1.5rem;
    }

    .comparison-header h3 {
        font-size: 1.25rem;
    }

    .edu-tab {
        min-width: 80px;
        padding: 10px 12px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================ */
/* CATALOG GRID (Products, Why Us, Projects)    */
/* ============================================ */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
.catalog-grid-3 { grid-template-columns: repeat(3, 1fr); }
.catalog-grid-4 { grid-template-columns: repeat(4, 1fr); }

.catalog-item {
    position: relative;
    display: block;
    padding: 40px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: transparent;
    text-decoration: none;
    transition: background 0.4s;
    cursor: pointer;
    overflow: hidden;
}
.catalog-item:hover { background: rgba(255, 255, 255, 0.06); }
.catalog-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--gradient);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.catalog-item:hover .catalog-line { width: 100%; }

.catalog-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 32px;
    background: #F4F4F5;
}
.catalog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
    filter: grayscale(15%);
}
.catalog-item:hover .catalog-img img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.catalog-body { position: relative; }
.catalog-top {
    display: flex; justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}
.catalog-num {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 3px;
    color: var(--teal);
}
.catalog-tag {
    font-family: var(--font-display);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}
.catalog-item:hover .catalog-tag { color: var(--yellow); }
.catalog-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 700;
    letter-spacing: -0.6px; line-height: 1.2;
    color: white;
    margin-bottom: 14px;
    transition: transform 0.4s, color 0.3s;
}
.catalog-item:hover .catalog-body h3 {
    transform: translateX(4px);
    color: var(--yellow);
}
.catalog-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 24px;
}
.catalog-footer {
    display: flex; justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.catalog-spec {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 1px;
    color: white;
}
.catalog-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.4s, gap 0.4s;
}
.catalog-item:hover .catalog-arrow { color: var(--yellow); gap: 14px; }
.catalog-arrow i { transition: transform 0.4s; }
.catalog-item:hover .catalog-arrow i { transform: translateX(4px); }

/* ============================================ */
/* PRODUCTS SECTION — REDESIGNED                */
/* ============================================ */
.products-catalog {
    background: linear-gradient(135deg, #0f172a 0%, #1B2631 50%, #0d4f4a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.prod-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.prod-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.prod-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float1 14s ease-in-out infinite;
}

.prod-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.25) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float2 16s ease-in-out infinite;
}

/* Header */
.products-catalog .section-tag {
    color: #FACC15;
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.products-catalog .section-header h2 {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.products-catalog .section-header h2 .gradient-text {
    background: linear-gradient(135deg, #FACC15 0%, #00A99D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.products-catalog .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================ */
/* PRODUCT SHOWCASE GRID                        */
/* ============================================ */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Kartu featured (2x size) */
.product-showcase-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.product-showcase-item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 320px;
    cursor: pointer;
}

.product-showcase-item.featured {
    min-height: 500px;
}

.product-showcase-item:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 30px 60px -20px rgba(0, 169, 157, 0.4);
}

/* ============================================ */
/* SHOWCASE IMAGE                               */
/* ============================================ */
.showcase-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
    filter: grayscale(60%) brightness(0.5);
    display: block;
}

.product-showcase-item:hover .showcase-img img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0.7);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0.3) 0%,
        rgba(15, 23, 42, 0.7) 50%,
        rgba(15, 23, 42, 0.95) 100%
    );
    transition: opacity 0.5s;
}

.product-showcase-item:hover .showcase-overlay {
    background: linear-gradient(180deg,
        rgba(0, 169, 157, 0.2) 0%,
        rgba(15, 23, 42, 0.8) 50%,
        rgba(15, 23, 42, 0.98) 100%
    );
}

/* ============================================ */
/* SHOWCASE NUMBER (BACKGROUND)                 */
/* ============================================ */
.showcase-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -6px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.06);
    z-index: 1;
    transition: all 0.5s;
    pointer-events: none;
}

.product-showcase-item.featured .showcase-number {
    font-size: 8rem;
    top: 30px;
    right: 30px;
}

.product-showcase-item:hover .showcase-number {
    color: rgba(250, 204, 21, 0.25);
    transform: scale(1.1);
}

/* ============================================ */
/* SHOWCASE TAG (TOP LEFT)                      */
/* ============================================ */
.showcase-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(250, 204, 21, 0.95);
    color: var(--navy);
    padding: 8px 14px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    transition: all 0.4s;
    box-shadow: 0 8px 16px -6px rgba(250, 204, 21, 0.5);
}

.showcase-tag i {
    font-size: 0.65rem;
}

.product-showcase-item:hover .showcase-tag {
    background: #ED1C24;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(237, 28, 36, 0.6);
}

/* ============================================ */
/* SHOWCASE CONTENT                             */
/* ============================================ */
.showcase-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 28px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-showcase-item.featured .showcase-content {
    padding: 40px;
}

.showcase-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 8px;
}

.showcase-category {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.showcase-spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: #FACC15;
    padding: 4px 10px;
    background: rgba(250, 204, 21, 0.15);
    border-radius: 100px;
    border: 1px solid rgba(250, 204, 21, 0.3);
}

.showcase-spec i {
    font-size: 0.7rem;
}

.showcase-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.15;
    color: white;
    margin: 0;
    transition: transform 0.4s, color 0.4s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.product-showcase-item.featured .showcase-content h3 {
    font-size: 2.25rem;
    letter-spacing: -1.5px;
}

.product-showcase-item:hover .showcase-content h3 {
    color: #FACC15;
    transform: translateX(6px);
}

.showcase-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-showcase-item.featured .showcase-content p {
    font-size: 1rem;
    -webkit-line-clamp: 3;
    max-width: 90%;
}

/* ============================================ */
/* SHOWCASE CTA                                 */
/* ============================================ */
.showcase-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FACC15;
    transition: gap 0.4s;
}

.product-showcase-item:hover .showcase-cta {
    gap: 20px;
}

.cta-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.15);
    border: 1.5px solid rgba(250, 204, 21, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.cta-arrow i {
    color: #FACC15;
    font-size: 0.85rem;
    transition: transform 0.4s;
}

.product-showcase-item:hover .cta-arrow {
    background: #FACC15;
    border-color: #FACC15;
    transform: rotate(-15deg) scale(1.1);
}

.product-showcase-item:hover .cta-arrow i {
    color: var(--navy);
    transform: translateX(2px);
}

/* ============================================ */
/* SHOWCASE GLOW (HOVER BORDER)                 */
/* ============================================ */
.showcase-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 3;
}

.product-showcase-item:hover .showcase-glow {
    opacity: 1;
    box-shadow:
        inset 0 0 0 2px rgba(250, 204, 21, 0.5),
        inset 0 0 30px rgba(0, 169, 157, 0.3);
}

/* ============================================ */
/* PRODUCTS CTA BOTTOM                          */
/* ============================================ */
.products-cta-wrap {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.products-cta-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s;
}

.products-cta-content:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border-color: rgba(250, 204, 21, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(250, 204, 21, 0.2);
}

.cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ED1C24, #00A99D);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 15px 30px -10px rgba(237, 28, 36, 0.5);
    animation: floatCard 4s ease-in-out infinite;
}

.cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-text strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.cta-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.btn-products-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #FACC15;
    color: var(--navy);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s;
    white-space: nowrap;
    box-shadow: 0 10px 20px -8px rgba(250, 204, 21, 0.5);
}

.btn-products-cta:hover {
    background: #ED1C24;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(237, 28, 36, 0.6);
}

.btn-products-cta i {
    transition: transform 0.3s;
}

.btn-products-cta:hover i {
    transform: translateX(5px);
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 1200px) {
    .product-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-showcase-item.featured {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 400px;
    }

    .product-showcase-item.featured .showcase-number {
        font-size: 6rem;
    }

    .product-showcase-item.featured .showcase-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .products-catalog {
        padding: 80px 0;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-showcase-item,
    .product-showcase-item.featured {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 360px;
    }

    .product-showcase-item.featured .showcase-number {
        font-size: 5rem;
        top: 20px;
        right: 20px;
    }

    .product-showcase-item.featured .showcase-content {
        padding: 28px;
    }

    .product-showcase-item.featured .showcase-content h3 {
        font-size: 1.5rem;
    }

    .showcase-content {
        padding: 24px;
    }

    .showcase-content h3 {
        font-size: 1.35rem;
    }

    .products-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .cta-text {
        text-align: center;
    }

    .btn-products-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .showcase-number {
        font-size: 4rem;
    }

    .showcase-content h3 {
        font-size: 1.2rem;
    }

    .showcase-content p {
        font-size: 0.85rem;
    }
}

/* ============================================ */
/* WHY US SECTION — TANPA ICON                  */
/* ============================================ */
.why-catalog {
    background: linear-gradient(135deg, #1B2631 0%, #7c0f14 50%, #C4161C 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.why-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.why-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.why-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float1 14s ease-in-out infinite;
}

.why-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.3) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float2 16s ease-in-out infinite;
}

/* Header */
.why-catalog .section-tag {
    color: #FACC15;
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.why-catalog .section-header h2 {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.why-catalog .section-header h2 .gradient-text {
    background: linear-gradient(135deg, #FACC15 0%, #FB923C 50%, #F87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.why-catalog .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================ */
/* WHY SHOWCASE GRID                            */
/* ============================================ */
.why-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.why-showcase-item {
    position: relative;
    min-height: 480px;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.4);
}

.why-showcase-item:hover {
    transform: translateY(-12px) rotate(-1deg);
    border-color: rgba(250, 204, 21, 0.6);
    box-shadow:
        0 40px 80px -20px rgba(237, 28, 36, 0.5),
        0 0 0 4px rgba(250, 204, 21, 0.15);
}

/* Background image */
.why-showcase-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.why-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
    filter: grayscale(70%) brightness(0.5);
    display: block;
}

.why-showcase-item:hover .why-showcase-img img {
    transform: scale(1.15) rotate(2deg);
    filter: grayscale(0%) brightness(0.7);
}

.why-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0.4) 0%,
        rgba(124, 15, 20, 0.7) 50%,
        rgba(27, 38, 49, 0.98) 100%
    );
    transition: background 0.5s;
}

.why-showcase-item:hover .why-showcase-overlay {
    background: linear-gradient(180deg,
        rgba(0, 169, 157, 0.3) 0%,
        rgba(124, 15, 20, 0.8) 50%,
        rgba(15, 23, 42, 0.98) 100%
    );
}

/* Big number */
.why-showcase-number {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -6px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    z-index: 1;
    transition: all 0.5s;
    pointer-events: none;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.why-showcase-item:hover .why-showcase-number {
    color: rgba(250, 204, 21, 0.35);
    transform: scale(1.15) rotate(-5deg);
}

/* Badge */
.why-showcase-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    transition: all 0.4s;
    border: 1.5px solid transparent;
}

.why-red .why-showcase-badge {
    background: rgba(237, 28, 36, 0.9);
    color: white;
    border-color: rgba(237, 28, 36, 0.5);
}

.why-teal .why-showcase-badge {
    background: rgba(0, 169, 157, 0.9);
    color: white;
    border-color: rgba(0, 169, 157, 0.5);
}

.why-navy .why-showcase-badge {
    background: rgba(250, 204, 21, 0.9);
    color: var(--navy);
    border-color: rgba(250, 204, 21, 0.5);
}

.why-showcase-item:hover .why-showcase-badge {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.4);
}

.why-showcase-badge i {
    font-size: 0.75rem;
}

/* Content */
.why-showcase-content {
    position: relative;
    z-index: 2;
    padding: 36px 32px;
    color: white;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-showcase-content h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.15;
    color: white;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s, color 0.4s;
}

.why-showcase-item:hover .why-showcase-content h3 {
    color: #FACC15;
    transform: translateX(6px);
}

.why-showcase-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* CTA */
.why-showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FACC15;
    padding: 10px 0;
    border-top: 1.5px solid rgba(250, 204, 21, 0.3);
    padding-top: 16px;
    width: 100%;
    justify-content: space-between;
    transition: all 0.4s;
    opacity: 0.7;
}

.why-showcase-item:hover .why-showcase-cta {
    opacity: 1;
    border-color: rgba(250, 204, 21, 0.6);
    gap: 16px;
}

.why-showcase-cta i {
    transition: transform 0.4s;
}

.why-showcase-item:hover .why-showcase-cta i {
    transform: translateX(6px);
}

/* Shine effect */
.why-showcase-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.8s;
    pointer-events: none;
    z-index: 3;
}

.why-showcase-item:hover .why-showcase-shine {
    transform: translateX(100%);
}

/* Stats strip bottom */
.why-stats-strip {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.why-stats-strip:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border-color: rgba(250, 204, 21, 0.4);
}

.why-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    transition: transform 0.3s;
}

.why-stat-item:hover {
    transform: translateY(-4px);
}

.ws-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.3), rgba(0, 169, 157, 0.3));
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FACC15;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.why-stat-item:hover .ws-icon {
    transform: rotate(-10deg) scale(1.1);
}

.ws-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ws-info strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.ws-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.why-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Responsive */
@media (max-width: 992px) {
    .why-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-showcase-item {
        min-height: 420px;
    }

    .why-stats-strip {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
    }

    .why-stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

    .why-stat-item {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .why-catalog {
        padding: 80px 0;
    }

    .why-showcase-item {
        min-height: 380px;
        border-radius: 24px;
    }

    .why-showcase-number {
        font-size: 4.5rem;
        top: 20px;
        right: 20px;
    }

    .why-showcase-badge {
        padding: 6px 14px;
        font-size: 0.62rem;
    }

    .why-showcase-content {
        padding: 28px 24px;
    }

    .why-showcase-content h3 {
        font-size: 1.35rem;
    }

    .why-showcase-content p {
        font-size: 0.9rem;
    }

    .why-stats-strip {
        margin-top: 40px;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .ws-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .ws-info strong { font-size: 0.85rem; }
    .ws-info span { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .why-showcase-item {
        min-height: 340px;
    }

    .why-showcase-number {
        font-size: 3.5rem;
    }

    .why-showcase-content h3 {
        font-size: 1.2rem;
    }

    .why-showcase-content p {
        font-size: 0.85rem;
    }
}

/* ============================================ */
/* PROJECTS SECTION — REDESIGNED                */
/* ============================================ */
.projects-catalog {
    background: linear-gradient(135deg, #0f172a 0%, #1B2631 50%, #0d4f4a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.projects-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.proj-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.proj-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.proj-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float1 14s ease-in-out infinite;
}

.proj-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.2) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float2 16s ease-in-out infinite;
}

/* Header */
.projects-catalog .section-tag {
    color: #FACC15;
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.projects-catalog .section-header h2 {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.projects-catalog .section-header h2 .gradient-text {
    background: linear-gradient(135deg, #FACC15 0%, #00A99D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.projects-catalog .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================ */
/* FILTER BUTTONS                               */
/* ============================================ */
.proj-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.proj-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.proj-filter-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.proj-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(250, 204, 21, 0.4);
    color: white;
    transform: translateY(-2px);
}

.proj-filter-btn:hover i {
    transform: scale(1.15) rotate(-10deg);
}

.proj-filter-btn.active {
    background: linear-gradient(135deg, #ED1C24, #C4161C);
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 20px -8px rgba(237, 28, 36, 0.5);
}

.proj-filter-btn.active i {
    color: #FACC15;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 4px;
    min-width: 22px;
}

.proj-filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================ */
/* PROJECT SHOWCASE GRID                        */
/* ============================================ */
.proj-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.proj-showcase-item {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.4);
    opacity: 1;
    transform: scale(1);
}

/* Featured (besar) */
.proj-showcase-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}

.proj-showcase-item:hover {
    transform: translateY(-8px);
    border-color: rgba(250, 204, 21, 0.5);
    box-shadow:
        0 30px 60px -20px rgba(0, 169, 157, 0.4),
        0 0 0 3px rgba(250, 204, 21, 0.15);
}

/* Filter hide animation */
.proj-showcase-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* ============================================ */
/* BACKGROUND IMAGE                             */
/* ============================================ */
.proj-showcase-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.proj-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
    filter: grayscale(70%) brightness(0.5);
    display: block;
}

.proj-showcase-item:hover .proj-showcase-img img {
    transform: scale(1.12) rotate(1deg);
    filter: grayscale(0%) brightness(0.7);
}

.proj-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0.2) 0%,
        rgba(27, 38, 49, 0.7) 50%,
        rgba(15, 23, 42, 0.98) 100%
    );
    transition: background 0.5s;
}

.proj-showcase-item:hover .proj-showcase-overlay {
    background: linear-gradient(180deg,
        rgba(0, 169, 157, 0.2) 0%,
        rgba(27, 38, 49, 0.75) 50%,
        rgba(15, 23, 42, 0.98) 100%
    );
}

/* ============================================ */
/* BIG NUMBER                                   */
/* ============================================ */
.proj-showcase-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -5px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    z-index: 1;
    transition: all 0.5s;
    pointer-events: none;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.proj-showcase-item.featured .proj-showcase-number {
    font-size: 8rem;
    top: 30px;
    right: 30px;
}

.proj-showcase-item:hover .proj-showcase-number {
    color: rgba(250, 204, 21, 0.3);
    transform: scale(1.1) rotate(-3deg);
}

/* ============================================ */
/* BADGE KATEGORI                               */
/* ============================================ */
.proj-showcase-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    transition: all 0.4s;
    box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.3);
}

.proj-badge-hospitality {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    color: white;
}

.proj-badge-healthcare {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.proj-badge-industrial {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: white;
}

.proj-badge-commercial {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: white;
}

.proj-showcase-badge i {
    font-size: 0.7rem;
}

.proj-showcase-item:hover .proj-showcase-badge {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.4);
}

/* ============================================ */
/* CONTENT                                      */
/* ============================================ */
.proj-showcase-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    color: white;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.proj-showcase-item.featured .proj-showcase-content {
    padding: 40px;
}

.proj-showcase-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.proj-showcase-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FACC15;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.proj-showcase-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(250, 204, 21, 0.4), transparent);
}

.proj-showcase-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: white;
    margin: 0 0 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s, color 0.4s;
}

.proj-showcase-item.featured .proj-showcase-content h3 {
    font-size: 2rem;
    letter-spacing: -1px;
}

.proj-showcase-item:hover .proj-showcase-content h3 {
    color: #FACC15;
    transform: translateX(6px);
}

/* Footer (CTA + Location) */
.proj-showcase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.4s;
}

.proj-showcase-item:hover .proj-showcase-footer {
    border-color: rgba(250, 204, 21, 0.4);
}

.proj-showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FACC15;
    transition: gap 0.4s;
}

.proj-showcase-item:hover .proj-showcase-cta {
    gap: 16px;
}

.proj-cta-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.15);
    border: 1.5px solid rgba(250, 204, 21, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.proj-cta-arrow i {
    color: #FACC15;
    font-size: 0.7rem;
    transition: transform 0.4s;
}

.proj-showcase-item:hover .proj-cta-arrow {
    background: #FACC15;
    border-color: #FACC15;
    transform: rotate(-15deg) scale(1.1);
}

.proj-showcase-item:hover .proj-cta-arrow i {
    color: var(--navy);
    transform: translateX(2px);
}

.proj-showcase-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: color 0.4s;
}

.proj-showcase-loc i {
    color: #FACC15;
    font-size: 0.75rem;
}

.proj-showcase-item:hover .proj-showcase-loc {
    color: white;
}

/* ============================================ */
/* SHINE EFFECT                                 */
/* ============================================ */
.proj-showcase-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.8s;
    pointer-events: none;
    z-index: 3;
}

.proj-showcase-item:hover .proj-showcase-shine {
    transform: translateX(100%);
}

/* ============================================ */
/* CTA BOTTOM                                   */
/* ============================================ */
.proj-cta-wrap {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.proj-cta-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s;
}

.proj-cta-content:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border-color: rgba(250, 204, 21, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(250, 204, 21, 0.2);
}

.proj-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #FACC15, #F97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 15px 30px -10px rgba(250, 204, 21, 0.5);
    animation: floatCard 4s ease-in-out infinite;
}

.proj-cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proj-cta-text strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.proj-cta-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.btn-proj-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #FACC15;
    color: var(--navy);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s;
    white-space: nowrap;
    box-shadow: 0 10px 20px -8px rgba(250, 204, 21, 0.5);
}

.btn-proj-cta:hover {
    background: #ED1C24;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(237, 28, 36, 0.6);
}

.btn-proj-cta i {
    transition: transform 0.3s;
}

.btn-proj-cta:hover i {
    transform: translateX(5px);
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 1024px) {
    .proj-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .proj-showcase-item.featured {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 400px;
    }

    .proj-showcase-item.featured .proj-showcase-number {
        font-size: 6rem;
    }

    .proj-showcase-item.featured .proj-showcase-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .projects-catalog {
        padding: 80px 0;
    }

    .proj-filter {
        gap: 8px;
        margin-bottom: 40px;
    }

    .proj-filter-btn {
        padding: 10px 16px;
        font-size: 0.78rem;
    }

    .proj-filter-btn i {
        display: none;
    }

    .proj-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .proj-showcase-item,
    .proj-showcase-item.featured {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 340px;
    }

    .proj-showcase-item.featured .proj-showcase-number {
        font-size: 5rem;
        top: 20px;
        right: 20px;
    }

    .proj-showcase-item.featured .proj-showcase-content {
        padding: 28px;
    }

    .proj-showcase-item.featured .proj-showcase-content h3 {
        font-size: 1.35rem;
    }

    .proj-showcase-content {
        padding: 24px;
    }

    .proj-showcase-content h3 {
        font-size: 1.2rem;
    }

    .proj-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .proj-cta-text {
        text-align: center;
    }

    .btn-proj-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .proj-showcase-number {
        font-size: 4rem;
    }

    .proj-showcase-content h3 {
        font-size: 1.1rem;
    }

    .proj-showcase-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ============================================ */
/* CONTACT SECTION — REDESIGNED                 */
/* ============================================ */
.contact {
    background: linear-gradient(135deg, #0f172a 0%, #1B2631 50%, #7c0f14 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.contact-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float1 14s ease-in-out infinite;
}

.contact-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.25) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float2 16s ease-in-out infinite;
}

/* Header */
.contact .section-tag,
.light-tag {
    color: #FACC15;
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact .section-header h2 {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.contact .section-header h2 .gradient-text {
    background: linear-gradient(135deg, #FACC15 0%, #00A99D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================ */
/* CONTACT GRID                                 */
/* ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* ============================================ */
/* KOLOM 1: INFO                                */
/* ============================================ */
.contact-info-header {
    margin-bottom: 32px;
}

.contact-info-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FACC15;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.15;
    color: white;
    margin: 0 0 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.gradient-text-teal {
    background: linear-gradient(135deg, #00A99D, #5EEAD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.contact-info-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Info cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(250, 204, 21, 0.4);
    transform: translateX(6px);
}

.cic-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-info-card:hover .cic-icon {
    transform: rotate(-10deg) scale(1.1);
}

.cic-icon-red { background: linear-gradient(135deg, #ED1C24, #C4161C); }
.cic-icon-teal { background: linear-gradient(135deg, #00A99D, #008B80); }
.cic-icon-yellow { background: linear-gradient(135deg, #FACC15, #F97316); }
.cic-icon-navy { background: linear-gradient(135deg, #1B2631, #2C3E50); }

.cic-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.cic-body strong {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cic-body span,
.cic-body a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    word-break: break-word;
    transition: color 0.3s;
}

.cic-body a:hover {
    color: #FACC15;
}

/* WA Big Button */
.wa-big-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 15px 30px -12px rgba(37, 211, 102, 0.5);
}

.wa-big-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(37, 211, 102, 0.7);
}

.wa-big-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.wa-big-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.wa-big-text strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.wa-big-text span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.wa-big-arrow {
    font-size: 1rem;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.wa-big-btn:hover .wa-big-arrow {
    transform: translateX(5px);
}

.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid #25D366;
    opacity: 0;
    animation: waPulse 2s infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

/* ============================================ */
/* KOLOM 2: FORM                                */
/* ============================================ */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ED1C24, #00A99D, #FACC15);
}

.form-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.form-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ED1C24, #00A99D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 12px 24px -8px rgba(237, 28, 36, 0.5);
    animation: floatCard 4s ease-in-out infinite;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.form-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.form-group label i {
    color: #FACC15;
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-family: var(--font);
    font-size: 0.9rem;
    transition: all 0.3s;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FACC15' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: #1B2631;
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FACC15;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font);
}

/* Submit button */
.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #ED1C24, #C4161C);
    color: white;
    border: none;
    border-radius: 14px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 8px;
    box-shadow: 0 15px 30px -10px rgba(237, 28, 36, 0.5);
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00A99D, #008B80);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.form-submit:hover::before {
    opacity: 1;
}

.form-submit > * {
    position: relative;
    z-index: 1;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(237, 28, 36, 0.6);
}

.form-submit i {
    transition: transform 0.3s;
}

.form-submit:hover i {
    transform: translateX(5px) rotate(-15deg);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    margin: 4px 0 0;
}

.form-note i {
    color: #00A99D;
    font-size: 0.7rem;
}

/* ============================================ */
/* KOLOM 3: MAPS                                */
/* ============================================ */
.map-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s;
}

.map-card:hover {
    border-color: rgba(250, 204, 21, 0.4);
    box-shadow: 0 30px 60px -20px rgba(250, 204, 21, 0.15);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.map-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ED1C24, #C4161C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 20px -8px rgba(237, 28, 36, 0.5);
}

.map-header > div:nth-child(2) {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.map-header strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.map-header span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.map-open-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(250, 204, 21, 0.15);
    border: 1.5px solid rgba(250, 204, 21, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FACC15;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.map-open-btn:hover {
    background: #FACC15;
    color: var(--navy);
    transform: rotate(-10deg) scale(1.1);
}

.map-frame {
    flex: 1;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.4s;
}

.map-card:hover .map-frame iframe {
    filter: grayscale(0%) contrast(1);
}

.map-footer {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.map-info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
}

.map-info-item i {
    color: #FACC15;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-map-col {
        grid-column: span 2;
    }

    .map-frame {
        min-height: 350px;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map-col {
        grid-column: span 1;
    }

    .contact-form-wrap {
        padding: 32px 28px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .form-header {
        flex-direction: column;
        gap: 14px;
    }

    .form-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .form-header h3 {
        font-size: 1.2rem;
    }

    .contact-info-card {
        padding: 16px;
    }

    .cic-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .wa-big-btn {
        padding: 18px;
    }

    .wa-big-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .map-card {
        border-radius: 24px;
    }

    .map-frame {
        min-height: 300px;
    }

    .map-header {
        padding: 18px 20px;
    }

    .map-footer {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .contact-info-header h3 {
        font-size: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .form-submit {
        padding: 16px 24px;
        font-size: 0.9rem;
    }

    .map-frame {
        min-height: 260px;
    }
}

/* ============================================ */
/* FOOTER — REDESIGNED                          */
/* ============================================ */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1B2631 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at top, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at top, black 20%, transparent 75%);
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.footer-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.2) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: float1 16s ease-in-out infinite;
}

.footer-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.2) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation: float2 18s ease-in-out infinite;
}

/* ============================================ */
/* FOOTER TOP GRID                              */
/* ============================================ */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* ============================================ */
/* KOLOM 1: BRAND                               */
/* ============================================ */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-tagline {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 20px;
}

.footer-tagline strong {
    color: #FACC15;
    font-weight: 700;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.footer-badge:hover {
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.4);
    color: #FACC15;
}

.footer-badge i {
    color: #FACC15;
    font-size: 0.72rem;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.footer-social::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ED1C24, #00A99D);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.footer-social i {
    position: relative;
    z-index: 1;
}

.footer-social:hover {
    transform: translateY(-4px) rotate(-6deg);
    border-color: transparent;
    box-shadow: 0 15px 30px -10px rgba(237, 28, 36, 0.5);
}

.footer-social:hover::before {
    opacity: 1;
}

/* ============================================ */
/* KOLOM 2-3: LINKS                             */
/* ============================================ */
.footer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 24px;
    letter-spacing: -0.2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-title-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.2), rgba(0, 169, 157, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FACC15;
    font-size: 0.8rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    line-height: 1.4;
}

.footer-list a i {
    font-size: 0.62rem;
    color: rgba(250, 204, 21, 0.6);
    transition: transform 0.3s, color 0.3s;
}

.footer-list a:hover {
    color: #FACC15;
    transform: translateX(4px);
}

.footer-list a:hover i {
    color: #FACC15;
    transform: translateX(4px);
}

.footer-link-all {
    font-weight: 700;
    color: #FACC15 !important;
    margin-top: 4px;
}

.footer-link-all i {
    color: #FACC15 !important;
}

/* ============================================ */
/* KOLOM 4: CONTACT + NEWSLETTER                */
/* ============================================ */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.footer-contact-list li > i {
    color: #FACC15;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-word;
}

.footer-contact-list a:hover {
    color: #FACC15;
}

/* Newsletter */
.footer-newsletter {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.newsletter-label i {
    color: #FACC15;
    font-size: 0.85rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0); }
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}

.newsletter-form:focus-within {
    border-color: #FACC15;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font);
    font-size: 0.85rem;
    outline: none;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 0 20px;
    background: linear-gradient(135deg, #ED1C24, #C4161C);
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #00A99D, #008B80);
}

.newsletter-form button i {
    transition: transform 0.3s;
}

.newsletter-form button:hover i {
    transform: translateX(3px) rotate(-15deg);
}

/* ============================================ */
/* FOOTER BOTTOM                                */
/* ============================================ */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: center;
    padding-top: 30px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
    z-index: 1;
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-bottom-right {
    justify-content: flex-end;
    gap: 16px;
}

.footer-bottom-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.5;
}

.footer-bottom strong {
    color: white;
    font-weight: 700;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #FACC15;
}

.footer-dot {
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom i.fa-bolt {
    color: #FACC15;
    margin: 0 3px;
    animation: sparkle 2s ease-in-out infinite;
}

/* Back to top button */
.footer-top-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-top-btn:hover {
    background: linear-gradient(135deg, #ED1C24, #00A99D);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(237, 28, 36, 0.5);
}

/* ============================================ */
/* FLOATING WHATSAPP (UPDATED)                  */
/* ============================================ */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.6);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    animation: floatCard 3s ease-in-out infinite;
}

.float-wa:hover {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 25px 50px -10px rgba(37, 211, 102, 0.8);
}

.float-wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-col {
        grid-column: span 2;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-brand-col {
        grid-column: span 1;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-brand-col,
    .footer-col {
        text-align: center;
    }

    .footer-list {
        align-items: center;
    }

    .footer-list a {
        justify-content: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .newsletter-label {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 0.78rem;
    }

    .float-wa {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .footer-social {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .footer-top-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .newsletter-form input {
        padding: 12px 14px;
        font-size: 0.8rem;
    }

    .newsletter-form button {
        padding: 0 16px;
    }
}

/* FLOATING WHATSAPP */
.float-wa {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.6);
    z-index: 999;
    transition: all 0.3s;
    animation: floatCard 3s ease-in-out infinite;
}
.float-wa:hover {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 25px 50px -10px rgba(37, 211, 102, 0.8);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .hero-img-wrapper img { height: 420px; }
    .profil-grid { grid-template-columns: 1fr; gap: 80px; }
    .visi-misi-section { grid-template-columns: 1fr; gap: 60px; padding: 50px 40px; }
    .vm-visual-side { height: 500px; }
    .intro-content { grid-template-columns: 1fr; gap: 40px; }
    .intro-image img { height: 320px; }
    .edu-grid { grid-template-columns: 1fr; gap: 40px; }
    .edu-image img { height: 320px; }
    .intro-block, .comparison-block { padding: 40px; }
    .edu-content { padding: 40px; }
    .contact-content { grid-template-columns: 1fr; gap: 40px; }
    .contact-wrap { padding: 60px 40px; }
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .footer-brand { justify-content: center; }
    .footer-links { justify-content: center; }
    .footer-social { justify-content: center; }
    .catalog-grid, .catalog-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .catalog-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .catalog-item { padding: 32px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 40px;
        z-index: 999;
        gap: 24px;
    }
    .nav-menu.active { right: 0; }
    .nav-menu a { font-size: 1.5rem; font-family: var(--font-display); font-weight: 700; }
    .hamburger { display: flex; z-index: 1000; position: relative; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .logo-img { height: 38px; }
    .hero { padding: 110px 0 0; min-height: auto; }
    .hero-text h1 { letter-spacing: -1.5px; }
    .hero-img-wrapper img { height: 340px; }
    .floating-badge { padding: 10px 14px; }
    .floating-badge i { width: 34px; height: 34px; font-size: 0.9rem; }
    .floating-badge span { font-size: 0.7rem; }
    .badge-hdg { left: -10px; top: 30px; }
    .badge-sni { right: -10px; bottom: 80px; }
    .badge-fast { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 24px 0; }
    .stat-item { flex: 0 0 50%; }
    .stat-divider { display: none; }
    .stat-number { font-size: 2rem; }
    section { padding: 80px 0; }
    .section-header { margin-bottom: 50px; }
    .profil-visual { height: 400px; }
    .year-badge { padding: 18px 22px; left: -10px; }
    .year-num { font-size: 1.5rem; }
    .experience-pill { left: -10px; font-size: 0.75rem; padding: 10px 16px; }
    .vm-visual-side { height: 420px; }
    .vm-float-1 { width: 140px; height: 140px; }
    .vm-float-2 { width: 110px; height: 110px; left: -10px; }
    .vm-badge-floating { padding: 18px 20px; bottom: 20px; left: 15px; }
    .vm-badge-num { font-size: 2.25rem; }
    .vm-badge-text { font-size: 0.65rem; }
    .vm-list-new li { padding: 16px 18px; }
    .vm-list-num { font-size: 1.25rem; min-width: 32px; }
    .intro-block { padding: 28px; border-radius: 24px; }
    .edu-tabs { padding: 8px; }
    .edu-tab { padding: 12px 16px; font-size: 0.8rem; min-width: 120px; }
    .edu-tab i { display: none; }
    .edu-content { padding: 28px; }
    .edu-image img { height: 240px; }
    .intro-image img { height: 240px; }
    .comparison-block { padding: 28px; border-radius: 24px; }
    .comparison-table { font-size: 0.8rem; }
    .comparison-table thead th, .comparison-table tbody td { padding: 12px 14px; }
    .edu-spec-item { padding: 10px 12px; }
    .edu-spec-item i { width: 34px; height: 34px; font-size: 0.8rem; }
    .catalog-grid, .catalog-grid-3, .catalog-grid-4 { grid-template-columns: 1fr; border-left: none; }
    .catalog-item { padding: 28px 0; border-right: none; }
    .catalog-img { margin-bottom: 24px; }
    .catalog-body h3 { font-size: 1.25rem; }
    .contact-wrap { padding: 44px 28px; border-radius: 32px; }
    .btn-wa, .btn-email { padding: 18px 20px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .float-wa { width: 56px; height: 56px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .marquee-content { font-size: 1rem; letter-spacing: 2px; gap: 24px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary, .hero-buttons .btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .profil-visual { height: 340px; }
    .vm-visual-side { height: 360px; }
    .intro-header h3 { font-size: 1.5rem; }
    .edu-text h3 { font-size: 1.5rem; }
    .comparison-header h3 { font-size: 1.25rem; }
    .logo-img { height: 34px; }
    .catalog-item { padding: 24px 0; }
    .catalog-img { aspect-ratio: 5 / 4; }
}