:root {
    --red-dark: #8b0000;
    --red-light: #b00000;

    /* Light Mode */
    --bg: #ffffff;
    --bg-gradient:
        radial-gradient(circle at top left, rgba(176, 0, 0, 0.20), transparent 60%),
        radial-gradient(circle at bottom right, rgba(139, 0, 0, 0.14), transparent 65%),
        linear-gradient(to bottom, #ffffff, #f8f8f8);

    --text: #111;
    --muted: #444;

    --card: rgba(255, 255, 255, 0.72);
    --border: rgba(0, 0, 0, 0.08);

    --shadow: rgba(0, 0, 0, 0.10);
    --glow: rgba(176, 0, 0, 0.35);
    --title-glow: rgba(176, 0, 0, 0.55);
}

/* ========================================= */
/* Preloader */
/* ========================================= */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg, #070712, #140018);
    transition: 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    width: 80px;
    animation: pop 1.2s infinite ease-in-out;
}

.loader-content h2 {
    font-family: "Patrick Hand", cursive;
    font-size: 52px;
    margin: 15px 0 10px;
    color: var(--red-light);
    text-shadow: 0 0 20px rgba(176, 0, 0, 0.7);
}

.loader-bar {
    width: 220px;
    height: 8px;
    border-radius: 10px;
    margin: 15px auto;

    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light));
    animation: loadingMove 1.2s infinite ease-in-out;
}

#loaderText {
    font-size: 14px;
    opacity: 0.75;
}

@keyframes loadingMove {
    0% {
        left: -40%;
    }

    50% {
        left: 30%;
    }

    100% {
        left: 100%;
    }
}

@keyframes pop {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

body.dark {
    /* Dark Mode (Navy + Purple + Maroon) */
    --bg: #070712;
    --bg-gradient:
        radial-gradient(circle at top left, rgba(176, 0, 0, 0.32), transparent 60%),
        radial-gradient(circle at bottom right, rgba(80, 0, 140, 0.25), transparent 65%),
        linear-gradient(to bottom, #070712, #0d0d20);

    --text: #f2f2f2;
    --muted: rgba(255, 255, 255, 0.78);

    --card: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.14);

    --shadow: rgba(0, 0, 0, 0.55);
    --glow: rgba(176, 0, 0, 0.65);
    --title-glow: rgba(176, 0, 0, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    background-image: var(--bg-gradient);
    color: var(--text);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

/* ========================================= */
/* Scroll Reveal */
/* ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(10px);
    transition: 0.9s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ========================================= */
/* Navbar (Modern Minimal) */
/* ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 12px 0;
    transition: 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark .navbar.scrolled {
    background: rgba(10, 10, 20, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-family: "Patrick Hand", cursive;
    font-size: 24px;
}

.logo img {
    width: 36px;
}

/* Kalau navbar scrolled, logo jadi ikut gelap/terang */
.navbar.scrolled .logo {
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    font-family: "Patrick Hand", cursive;
    font-size: 22px;
    color: white;
    transition: 0.25s ease;
    position: relative;
}

/* pas scroll text ikut adapt */
.navbar.scrolled .nav-links a {
    color: var(--text);
}

/* hover glow */
.nav-links a:hover {
    color: var(--red-light);
    text-shadow: 0 0 14px rgba(176, 0, 0, 0.75);
}

/* active glow (tanpa background kotak) */
.nav-links a.active {
    color: var(--red-light);
    text-shadow: 0 0 16px rgba(176, 0, 0, 0.9);
}

/* Nav actions */
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-btn {
    border: none;
    padding: 7px 10px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;

    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.navbar.scrolled .nav-btn {
    background: rgba(139, 0, 0, 0.12);
    color: var(--text);
}

body.dark .navbar.scrolled .nav-btn {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.nav-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 14px rgba(176, 0, 0, 0.35);
}

.hamburger {
    display: none;
    border: none;
    padding: 7px 10px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;

    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.navbar.scrolled .hamburger {
    background: rgba(139, 0, 0, 0.12);
    color: var(--text);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    margin-top: 10px;

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark .mobile-menu {
    background: rgba(10, 10, 20, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu a {
    text-decoration: none;
    font-family: "Patrick Hand", cursive;
    font-size: 22px;
    padding: 10px;
    border-radius: 14px;
    color: var(--text);
    transition: 0.25s ease;
}

body.dark .mobile-menu a {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-menu a:hover {
    color: var(--red-light);
    text-shadow: 0 0 14px rgba(176, 0, 0, 0.75);
}

.mobile-menu.active {
    display: flex;
}

/* Responsive */
@media (max-width: 950px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* ========================================= */
/* Hero Section */
/* ========================================= */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 70px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: url("") center/cover no-repeat;
    opacity: 0.22;
    z-index: 0;
}

body.dark .hero-glow {
    opacity: 0.12;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

/* Right logo card */
.hero-logo-card {
    width: 310px;
    max-width: 100%;
    padding: 20px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);

    box-shadow: 0 0 55px rgba(176, 0, 0, 0.22);
    display: flex;
    justify-content: center;
    align-items: center;

    animation: float 4s ease-in-out infinite;
    margin: auto;
}

body.dark .hero-logo-card {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 65px rgba(176, 0, 0, 0.45);
}

.hero-logo-card img {
    width: 100%;
    max-width: 230px;
    filter: drop-shadow(0px 10px 18px rgba(139, 0, 0, 0.25));
}

/* Left card (lebih kecil sekarang) */
.hero-left {
    max-width: 550px;
    padding: 28px;
    border-radius: 22px;

    background: var(--card);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);

    box-shadow: 0 14px 32px var(--shadow);
}

.hero-title {
    font-family: "Patrick Hand", cursive;
    font-size: 78px;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-tagline {
    font-family: "Patrick Hand", cursive;
    font-size: 25px;
    color: var(--red-dark);
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 22px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.btn-primary {
    text-decoration: none;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light));
    color: white;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 0 22px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 38px var(--glow);
}

.btn-outline {
    text-decoration: none;
    border: 1px solid rgba(139, 0, 0, 0.40);
    color: var(--red-dark);
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: rgba(139, 0, 0, 0.08);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 150px;
    padding: 14px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);

    text-align: center;
    transition: 0.25s ease;
}

body.dark .stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px var(--shadow);
}

.stat-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.stat-card p {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

body.dark .stat-card p {
    color: rgba(255, 255, 255, 0.82);
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ========================================= */
/* Wave Divider */
/* ========================================= */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -60px;
    filter: drop-shadow(0px -10px 20px rgba(176, 0, 0, 0.15));
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 150px;
}

.wave-divider path {
    fill: rgba(255, 255, 255, 0.85);
}

body.dark .wave-divider path {
    fill: rgba(7, 7, 18, 0.95);
}

/* ========================================= */
/* Global Section Background Pattern */
/* ========================================= */
.section {
    position: relative;
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-family: "Patrick Hand", cursive;
    font-size: 60px;
    margin-bottom: 10px;
    color: var(--red-dark);

    text-shadow: 0 0 18px var(--title-glow);
}

.section-desc {
    max-width: 720px;
    margin: auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg-hero.png") center/cover no-repeat;
    opacity: 0.06;
    z-index: 0;
}

body.dark .section::before {
    opacity: 0.03;
}

.section .container {
    position: relative;
    z-index: 2;
}

/* ========================================= */
/* About Section */
/* ========================================= */
.about-section {
    padding-top: 100px;
}

.glass-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 30px var(--shadow);
    transition: 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px var(--shadow);
}

.about-card h4 {
    font-family: "Patrick Hand", cursive;
    font-size: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--text);
}

.about-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

.about-icon {
    width: 65px;
    height: 65px;
    margin: auto;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(90deg, var(--red-dark), var(--red-light));
    box-shadow: 0 0 25px var(--glow);
}

.about-icon i {
    font-size: 28px;
    color: white;
}

/* Highlight box */
.about-highlight {
    text-align: center;
}

.about-highlight h3 {
    font-family: "Patrick Hand", cursive;
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--red-dark);
    text-shadow: 0 0 18px var(--title-glow);
}

.about-highlight p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
    max-width: 800px;
    margin: auto;
}

.highlight-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 22px;
}

.badge-glow {
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;

    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text);
    transition: 0.3s ease;
}

body.dark .badge-glow {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.85);
}

.badge-glow i {
    color: var(--red-light);
    margin-right: 6px;
}

.badge-glow:hover {
    transform: scale(1.06);
    box-shadow: 0 0 18px var(--glow);
}

/* ========================================= */
/* Team Section */
/* ========================================= */
.team-subtitle {
    font-family: "Patrick Hand", cursive;
    font-size: 45px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10px;
    color: var(--text);
    text-shadow: 0 0 18px var(--title-glow);
}

.team-card {
    text-align: center;
    padding: 25px;
    border-radius: 24px;
    transition: 0.3s ease;

    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

body.dark .team-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(176, 0, 0, 0.25);
}

.team-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(176, 0, 0, 0.35);
    margin-bottom: 12px;
}

.team-card h4 {
    font-family: "Patrick Hand", cursive;
    font-size: 32px;
    margin-bottom: 6px;
}

.team-card p {
    font-size: 14px;
    color: var(--muted);
}

body.dark .team-card p {
    color: rgba(255, 255, 255, 0.75);
}

.team-social {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(176, 0, 0, 0.10);
    color: var(--red-light);
    font-size: 18px;
    text-decoration: none;
    transition: 0.25s ease;
}

.team-social a:hover {
    background: linear-gradient(90deg, var(--red-dark), var(--red-light));
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(176, 0, 0, 0.35);
}

/* ========================================= */
/* Rumus Section (General Version) */
/* ========================================= */
.rumus-section {
    padding-top: 120px;
}

.rumus-search {
    max-width: 650px;
    margin: 25px auto 0;
    position: relative;
}

.rumus-search i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--red-light);
}

.rumus-search input {
    width: 100%;
    padding: 14px 18px 14px 50px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);

    outline: none;
    color: var(--text);
    font-weight: 500;
    transition: 0.25s ease;
}

body.dark .rumus-search input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
}

.rumus-search input:focus {
    box-shadow: 0 0 18px rgba(176, 0, 0, 0.35);
    border: 1px solid rgba(176, 0, 0, 0.35);
}

/* Card */
.rumus-card {
    display: block;
    text-decoration: none;
    padding: 28px;
    border-radius: 26px;
    height: 100%;
    transition: 0.35s ease;

    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);

    color: var(--text);
    position: relative;
    overflow: hidden;
}

body.dark .rumus-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
    color: rgba(255, 255, 255, 0.9);
}

.rumus-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(176, 0, 0, 0.15), transparent 60%);
    opacity: 0;
    transition: 0.35s ease;
}

.rumus-card:hover::before {
    opacity: 1;
}

.rumus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(176, 0, 0, 0.25);
}

/* Icon */
.rumus-icon {
    width: 65px;
    height: 65px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(90deg, var(--red-dark), var(--red-light));
    box-shadow: 0 0 18px rgba(176, 0, 0, 0.45);
    margin-bottom: 16px;
}

.rumus-icon i {
    font-size: 28px;
    color: white;
}

/* Text */
.rumus-card h3 {
    font-family: "Patrick Hand", cursive;
    font-size: 34px;
    margin-bottom: 10px;
}

.rumus-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

body.dark .rumus-card p {
    color: rgba(255, 255, 255, 0.75);
}

.rumus-more {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 800;
    color: var(--red-light);
    transition: 0.25s ease;
}

.rumus-card:hover .rumus-more {
    transform: translateX(6px);
}

/* ========================================= */
/* Contact Section */
/* ========================================= */
.contact-card {
    max-width: 950px;
    margin: auto;
    padding: 35px;
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

body.dark .contact-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.contact-item a {
    text-decoration: none;
    color: var(--text);

    padding: 20px;
    border-radius: 20px;
    display: block;
    transition: 0.3s ease;

    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark .contact-item a {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.contact-item a:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(176, 0, 0, 0.20);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(90deg, var(--red-dark), var(--red-light));
    box-shadow: 0 0 18px rgba(176, 0, 0, 0.4);
}

.contact-icon i {
    font-size: 26px;
    color: white;
}

.contact-item h4 {
    margin-top: 14px;
    font-family: "Patrick Hand", cursive;
    font-size: 28px;
    text-align: center;
}

.contact-item p {
    margin-top: 6px;
    font-size: 13px;
    text-align: center;
    color: var(--muted);
}

body.dark .contact-item p {
    color: rgba(255, 255, 255, 0.72);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .contact-card {
        grid-template-columns: 1fr;
        padding: 25px;
    }
}

/* ========================================= */
/* Footer (Match Theme) */
/* ========================================= */
.footer {
    margin-top: 80px;
    padding: 60px 0 0;
    color: white;

    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -10px 40px rgba(176, 0, 0, 0.10);
}

body.light .footer {
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -10px 40px rgba(176, 0, 0, 0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 35px;
    align-items: start;
}

/* Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 55px;
}

.footer-logo h3 {
    font-family: "Patrick Hand", cursive;
    font-size: 42px;
    margin: 0;
    color: var(--red-light);
    text-shadow: 0 0 16px rgba(176, 0, 0, 0.55);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.75);
}

body.light .footer-desc {
    color: rgba(0, 0, 0, 0.65);
}

/* Links */
.footer-links h4,
.footer-social h4 {
    font-family: "Patrick Hand", cursive;
    font-size: 30px;
    margin-bottom: 14px;
    color: white;
}

body.light .footer-links h4,
body.light .footer-social h4 {
    color: var(--text);
}

.footer-links a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    margin: 8px 0;
    transition: 0.25s ease;

    color: rgba(255, 255, 255, 0.75);
}

body.light .footer-links a {
    color: rgba(0, 0, 0, 0.7);
}

.footer-links a:hover {
    color: var(--red-light);
    text-shadow: 0 0 12px rgba(176, 0, 0, 0.45);
    transform: translateX(6px);
}

/* Social */
.footer-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-icons a {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);

    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

body.light .footer-icons a {
    background: rgba(176, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text);
}

.footer-icons a:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 0 20px rgba(176, 0, 0, 0.25);
    border: 1px solid rgba(176, 0, 0, 0.35);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 18px 0;
    font-size: 13px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

body.light .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.65);
}

.footer-bottom p {
    margin: 6px 0;
}

.footer-bottom a {
    color: var(--red-light);
    font-weight: 800;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-shadow: 0 0 12px rgba(176, 0, 0, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-desc {
        margin: auto;
    }

    .footer-icons {
        justify-content: center;
    }
}


/* ========================================= */
/* Responsive */
/* ========================================= */
@media (max-width: 950px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    /* logo harus di atas */
    .hero-right {
        order: 1;
    }

    .hero-left {
        order: 2;
        max-width: 100%;
        margin: auto;
    }

    .hero-title {
        font-size: 65px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-logo-card {
        width: 250px;
    }

    .hero-logo-card img {
        max-width: 190px;
    }
}