/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 22px 48px;
    background: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar-inner {
    max-width: 100vw;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    flex-direction: column;
    font-family: var(--body-font);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-color);
    text-decoration: none;
}

.navbar-logo img {
    height: 55px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: var(--text-font);
}

.navbar-menu a {
    text-decoration: none;
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 16x;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--gold-color);
    transition: width 0.25s ease;
}

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

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-cta {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--gold-color);
    background: rgba(0, 0, 0, 0.25);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--text-font);
    letter-spacing: 0.5px;
    transition: background 0.25s ease, transform 0.2s ease,
        box-shadow 0.25s ease;
}

.navbar-cta:hover {
    background: var(--gold-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* ===== State saat SCROLL ===== */
.navbar.scrolled {
    background-color: rgba(20, 36, 62, 0.96);
    padding: 10px 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .navbar-inner {
    max-width: 1300px !important;
    transition: 0.5s ease;
}

/* ===== Burger (Mobile) ===== */
.navbar-burger {
    display: none;
    position: relative;
    width: 26px;
    height: 22px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.navbar-burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background-color: var(--white-color);
    transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}

.navbar-burger span:nth-child(1) {
    top: 0;
}

.navbar-burger span:nth-child(2) {
    top: 10px;
}

.navbar-burger span:nth-child(3) {
    top: 20px;
}

.navbar-burger.is-open span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.navbar-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.is-open span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

/* ===== Responsive - Navbar ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 14px 18px;
    }

    .navbar.scrolled {
        padding: 8px 16px;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        margin-top: 10px;
        padding: 10px 0;
        background: rgba(20, 36, 62, 0.98);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-radius: 14px;
        border: 1px solid rgba(222, 184, 135, 0.45);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
        transform-origin: top center;
        transform: translateY(-8px) scaleY(0.9);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
        backdrop-filter: blur(12px);
    }

    .navbar-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scaleY(1);
    }

    .navbar-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 18px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.6px;
        font-family: var(--body-font);
        color: #f7f7f7;
        text-decoration: none;
        position: relative;
    }

    .navbar-menu a + a {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-menu a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        border-radius: 999px;
        background-color: var(--gold-color);
        transition: height 0.2s ease;
    }

    .navbar-menu a:hover::before {
        height: 55%;
    }

    .navbar-menu a:hover {
        background: rgba(255, 255, 255, 0.02);
        color: var(--gold-color);
    }

    .navbar-cta {
        display: none;
    }

    .navbar-burger {
        display: block;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 14px 10px;
    }

    .navbar-burger {
        width: 24px;
        height: 12px;
    }

    .navbar-logo img {
        height: 48px;
    }

    .navbar-burger span {
        height: 1.7px;
    }

    .navbar-burger span:nth-child(2) {
        top: 8px;
    }

    .navbar-burger span:nth-child(3) {
        top: 17px;
    }
}

/* ===== Preloader ===== */
.js-preloader .preloader-inner {
    z-index: var(--z-modal);
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-blue-color);
    overflow: hidden;
}

.js-preloader .vertical-line-loader {
    margin-left: 30px;
    margin-right: 20px;
    height: 100px;
    width: 1px;
    background-color: var(--gold-color);

    opacity: 0;
    transform: translateX(-40px);
    animation: fadeSlideIn 1s ease forwards 0.3s;
}

.js-preloader .text-loader {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeSlideIn 1s ease forwards 0.3s;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.js-preloader .text-loader .header-loader {
    font-size: 40px;
    font-weight: 700;
    color: var(--gold-color);
    letter-spacing: 1px;
}

.js-preloader .text-loader .header-subtitle {
    font-size: 16px;
    font-weight: 200;
    font-family: var(--text-font);
    color: var(--white-color);
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0 !important;
    width: 0 !important;
}

.js-preloader.loaded .preloader-inner {
    height: 0 !important;
    width: 0 !important;
}

/* ===== Responsive - Preloader ===== */
@media (max-width: 992px) {
    .js-preloader .vertical-line-loader {
        margin-left: 25px;
        margin-right: 15px;
        height: 70px;
    }

    .preloader-inner img {
        max-width: 63px;
        height: auto;
    }

    .js-preloader .text-loader .header-loader {
        font-size: 36px;
    }

    .js-preloader .text-loader .header-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .js-preloader .vertical-line-loader {
        margin-left: 20px;
        margin-right: 10px;
        height: 60px;
    }

    .preloader-inner img {
        max-width: 58px;
        height: auto;
    }

    .js-preloader .text-loader .header-loader {
        font-size: 32px;
    }

    .js-preloader .text-loader .header-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .js-preloader .vertical-line-loader {
        margin-left: 10px;
        margin-right: 10px;
        height: 55px;
    }

    .preloader-inner img {
        max-width: 50px;
        height: auto;
    }

    .js-preloader .text-loader .header-loader {
        font-size: 28px;
    }

    .js-preloader .text-loader .header-subtitle {
        font-size: 10px;
    }
}

/* ===== SUYA (NEW, MATCH HOME STYLE) ===== */

/* Pakai warna global dari mainstyle, cuma disesuaikan opacity-nya */
:root {
    --suya-bg: var(--dark-blue-color);
    --suya-bg-card: rgba(20, 36, 62, 0.98);
    --suya-border-soft: rgba(255, 255, 255, 0.1);
    --suya-gold: var(--gold-color);
    --suya-gold-soft: rgba(181, 137, 92, 0.85);
    --suya-text-main: #fdfaf5;
    --suya-text-muted: #e5e7eb;
    --suya-accent: #fbbf24;
}

/* Section wrapper – mirip section kepengurusan/periode */
.suya-section {
    position: relative;
    background-color: var(--dark-blue-color);
    background-image: url("../images/pattern.svg");
    padding: 120px 0 80px;
    color: var(--white-color);
    font-family: var(--text-font);
}

.suya-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 36, 62, 0.25) 0%,
        rgba(20, 36, 62, 0.95) 40%,
        rgba(20, 36, 62, 0.95) 70%,
        rgba(20, 36, 62, 0.25) 100%
    );
    pointer-events: none;
}

.suya-container {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.suya-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 32px;
}

.suya-title {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--body-font);
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--gold-color);
}

.suya-subtitle {
    font-size: 16px;
    color: rgba(249, 250, 251, 0.9);
    max-width: 520px;
    font-family: var(--text-font);
}

/* Alert sukses SUYA */
.suya-alert {
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(34, 197, 94, 0.6);
    background: linear-gradient(
        135deg,
        rgba(22, 163, 74, 0.15),
        rgba(15, 23, 42, 0.98)
    );
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--text-font);
    animation: suyaFadeIn 0.25s ease;
}

.suya-alert-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #bbf7d0;
}

.suya-alert-message {
    font-size: 16px;
    color: #e5fbe7;
}

/* Mode toggle – selaras dengan gaya pill emas di navbar/footer */
.suya-mode-toggle {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(222, 184, 135, 0.6);
    gap: 4px;
}

.suya-mode-btn {
    border: none;
    background: transparent;
    color: rgba(249, 250, 251, 0.8);
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    font-weight: 600;
    white-space: nowrap;
    font-family: var(--text-font);
}

.suya-mode-btn.is-active {
    background: linear-gradient(135deg, #b5895c, #f5d6a0);
    color: #1f2933;
}

/* Card – dibuat mirip card gallery/kepengurusan */
.suya-card {
    border-radius: 20px;
    padding: 24px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(
        145deg,
        rgba(20, 36, 62, 0.98),
        rgba(10, 18, 33, 0.96)
    );
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
}

/* Stepper */
.suya-steps-indicator {
    margin-bottom: 20px;
}

.suya-stepper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stepper-item {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 4px 10px 4px 4px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.85);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease,
        transform 0.15s ease;
}

.stepper-item:hover {
    border-color: var(--suya-gold-soft);
}

.step-index {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.98);
    color: #e5e7eb;
    font-family: var(--body-font);
}

.step-label {
    font-size: 14px;
    color: #e5e7eb;
    font-family: var(--text-font);
}

.stepper-item.is-active {
    border-color: var(--suya-gold-soft);
    background: linear-gradient(
        135deg,
        rgba(234, 191, 117, 0.12),
        rgba(15, 23, 42, 0.98)
    );
}

.stepper-item.is-active .step-index {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #111827;
}

.stepper-item.is-active .step-label {
    color: var(--suya-text-main);
}

.stepper-item.is-completed .step-index {
    background: transparent;
    border: 1px solid var(--suya-gold-soft);
    color: var(--suya-gold-soft);
}

/* Steps */
.suya-steps-wrapper {
    position: relative;
}

.suya-step {
    display: none;
    animation: suyaFadeIn 0.25s ease;
}

.suya-step.is-visible {
    display: block;
}

@keyframes suyaFadeIn {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step title & desc */
.suya-step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--body-font);
    color: #fefce8;
}

.suya-step-desc {
    font-size: 14px;
    color: var(--suya-text-muted);
    margin-bottom: 18px;
    font-family: var(--text-font);
}

/* Layout */
.suya-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 768px) {
    .suya-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .suya-grid-two {
        grid-template-columns: minmax(0, 1fr);
    }

    .suya-section {
        padding: 110px 0 60px;
    }
}

/* Fields */
.suya-field {
    margin-bottom: 14px;
}

.suya-label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #f9fafb;
    font-family: var(--text-font);
    font-weight: 600;
}

.suya-label span {
    color: #fecaca;
}

.suya-input,
.suya-select,
.suya-textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.9);
    color: #f9fafb;
    font-size: 14px;
    padding: 9px 10px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
        background 0.2s ease;
    font-family: var(--text-font);
}

.suya-input:focus,
.suya-select:focus,
.suya-textarea:focus {
    border-color: var(--suya-accent);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.65);
    background: rgba(15, 23, 42, 0.98);
}

.suya-input::placeholder,
.suya-textarea::placeholder {
    color: #9ca3af;
}

.suya-textarea {
    resize: vertical;
    min-height: 120px;
}

.suya-input-file {
    padding: 6px 8px;
}

.suya-small-hint {
    font-size: 12px;
    color: #e5e7eb;
    margin-top: 3px;
    font-family: var(--text-font);
}

/* Kuisioner */
.suya-question-block {
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.suya-question-title {
    font-size: 14px;
    margin-bottom: 8px;
    font-family: var(--text-font);
    color: #f9fafb;
}

.suya-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.suya-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(20, 36, 62, 0.95);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 4px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease,
        transform 0.1s ease;
    font-family: var(--text-font);
}

.suya-option input[type="radio"] {
    accent-color: var(--suya-gold);
}

.suya-option:hover {
    border-color: var(--suya-gold-soft);
    transform: translateY(-1px);
}

/* Error state */
.suya-field-error .suya-input,
.suya-field-error .suya-select,
.suya-field-error .suya-textarea,
.suya-field-error .suya-question-block {
    border-color: #f97373 !important;
}

.suya-field-error .suya-label,
.suya-field-error .suya-question-title {
    color: #fecaca;
}

.suya-error-row {
    margin-top: 4px;
}

.suya-error-text {
    display: block;
    font-size: 12px;
    color: red;
}

/* Confirm box */
.suya-confirm-box {
    border-radius: 14px;
    border: 1px solid rgba(234, 191, 117, 0.8);
    background: linear-gradient(
        145deg,
        rgba(234, 191, 117, 0.1),
        rgba(15, 23, 42, 0.98)
    );
    padding: 12px 14px 10px;
    font-size: 14px;
    font-family: var(--text-font);
    color: #f9fafb;
}

.suya-confirm-box ul {
    margin: 8px 0 8px 18px;
    padding: 0;
}

.suya-confirm-box li {
    margin-bottom: 4px;
}

.suya-confirm-thank {
    margin-top: 8px;
    color: var(--suya-gold-soft);
}

/* NAV BUTTONS – disamakan feel-nya dengan button di home */
.suya-form-nav {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.suya-btn {
    border-radius: 999px;
    padding: 8px 18px;
    border: 1px solid var(--suya-border-soft);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    color: var(--suya-text-main);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease,
        color 0.2s ease, border-color 0.2s ease;
    font-family: var(--text-font);
}

.suya-btn-outline {
    border-color: rgba(148, 163, 184, 0.8);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.9);
}

.suya-btn-primary {
    border-color: var(--suya-gold-soft);
    background: var(--gold-color);
    color: #fff;
}

.suya-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.suya-btn-primary:hover {
    background-color: #8f6c48;
}

.suya-btn-outline:hover {
    background: rgba(15, 23, 42, 0.98);
}

.suya-card-switch {
    animation: suyaCardSwitch 0.35s ease;
}

@keyframes suyaCardSwitch {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== Responsive - SUYA ===== */
@media (max-width: 992px) {
    .suya-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .suya-title {
        font-size: 24px;
    }

    .suya-subtitle {
        font-size: 14px;
    }

    .suya-alert-title {
        font-size: 14px;
    }

    .suya-alert-message {
        font-size: 14px;
    }

    .suya-mode-btn {
        font-size: 12px;
    }

    .step-index {
        font-size: 12px;
    }

    .step-label {
        font-size: 12px;
    }

    .suya-step-title {
        font-size: 18px;
    }

    .suya-step-desc {
        font-size: 12px;
    }

    .suya-label {
        font-size: 12px;
    }

    .suya-input,
    .suya-select,
    .suya-textarea {
        font-size: 12px;
    }

    .suya-small-hint {
        font-size: 10px;
    }

    .suya-question-title {
        font-size: 12px;
    }

    .suya-option {
        font-size: 12px;
    }

    .suya-error-text {
        display: block;
        font-size: 10px;
        color: red;
    }

    .suya-confirm-box {
        font-size: 12px;
    }

    .suya-btn {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .suya-subtitle {
        font-size: 12px;
    }

    .suya-alert-title {
        font-size: 12px;
    }

    .suya-alert-message {
        font-size: 12px;
    }

    .suya-mode-btn {
        font-size: 10px;
    }

    .suya-small-hint {
        font-size: 10px;
    }

    .suya-error-text {
        display: block;
        font-size: 10px;
        color: red;
    }

    .suya-btn {
        font-size: 10px;
    }
}

/* ====== Footer ====== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #b5895c 0%, #a47449 45%, #8a5b35 100%);
    padding: 50px 20px 30px;
    color: #fff;
    font-family: var(--text-font);
    overflow: hidden;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(255, 255, 255, 0.15) 0,
        transparent 50%
    );
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 18px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-menu {
    display: flex;
    gap: 24px;
}

.footer-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.6px;
    position: relative;
    padding-bottom: 2px;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.footer-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background-color: #fef5dd;
    transition: width 0.25s ease;
}

.footer-menu a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.footer-menu a:hover::after {
    width: 100%;
}

.footer-icons {
    display: flex;
    gap: 12px;
}

.footer-icons a {
    text-decoration: none;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 252, 241, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94, 64, 34, 0.4);
    box-shadow: 0 4px 12px rgba(60, 35, 16, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.icon-circle svg {
    color: #fff;
}

.footer-icons a:hover .icon-circle {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 16px rgba(40, 20, 5, 0.8);
}

.footer-copy {
    margin-top: 5px;
    opacity: 0.9;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 10px;
    text-align: center;
}

/* ===== Responsive - Footer ===== */
@media (max-width: 768px) {
    .footer {
        padding: 40px 18px 26px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-menu {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 20px;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-menu a {
        font-size: 13px;
    }

    .icon-circle {
        width: 30px;
        height: 30px;
    }
}
