/* =====================
   Base Reset & Variables
   ===================== */
:root {
    --bg-color: #f7f9fc;
    --primary-blue: #1e3a8a;
    /* Deep Blue */
    --secondary-blue: #3b82f6;
    /* Bright Blue */
    --accent-blue: #93c5fd;
    /* Light Accent */
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Animasi Transisi Refresh */
@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    animation: pageLoad 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* =====================
   Navbar Component
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 58, 138, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-blue);
    transition: var(--transition);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.hamburger-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-content {
    position: absolute;
    right: 0;
    top: 120%;
    background: var(--white);
    min-width: 180px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    overflow: hidden;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--accent-blue);
    color: var(--primary-blue);
}

/* =====================
   Hero Section
   ===================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 180px 2rem 120px 2rem;
    color: var(--white);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: var(--accent-blue);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image {
    max-width: 100%;
    width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Curve Shape Divider */
.custom-shape-divider-bottom-1701198299 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1701198299 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-1701198299 .shape-fill {
    fill: var(--bg-color);
}

/* =====================
   About Section
   ===================== */
.about-section {
    padding: 100px 2rem;
    background: var(--bg-color);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    gap: 4rem;
    transition: var(--transition);
}

.about-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.15);
}

.about-box {
    flex: 2;
}

.about-box h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-box h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 4px;
    background: var(--secondary-blue);
    border-radius: 2px;
}

.about-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-logo img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* =====================
   Visi Misi Section
   ===================== */
.visi-misi-section {
    padding: 80px 2rem;
    background: #f8fbff;
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.vm-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.15);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-blue);
}

.misi-card::before {
    background: var(--secondary-blue);
}

.vm-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    background: #e0f2fe;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.misi-card .vm-icon {
    color: var(--secondary-blue);
    background: #e0e7ff;
}

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.vm-card p, .vm-card li {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.vm-card ul {
    list-style-position: inside;
    list-style-type: disc;
}

.vm-card li {
    margin-bottom: 0.8rem;
}

/* =====================
   Aspirasi Section
   ===================== */
.aspirasi-section {
    padding: 80px 2rem;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 800;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-blue);
    margin: 10px auto 0;
    border-radius: 2px;
}

.aspirasi-marquee {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    /* Creates the blurred/faded edges using a CSS mask */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: 1rem 0;
}

.aspirasi-track {
    display: inline-flex;
    gap: 2rem;
    animation: scroll-marquee 30s linear infinite;
    padding-bottom: 1rem;
    /* Space for box-shadow */
}

.aspirasi-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.aspirasi-card {
    background: var(--bg-color);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 320px;
    max-width: 350px;
    flex: 0 0 auto;
    white-space: normal;
}

.aspirasi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-blue);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.aspirasi-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.aspirasi-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.user-info h4 {
    font-size: 1rem;
    color: var(--primary-blue);
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-body {
    color: var(--text-main);
    font-style: italic;
    font-size: 0.95rem;
}

.btn-container {
    text-align: center;
    margin-top: 4rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* =====================
   Map Section
   ===================== */
.map-section {
    padding: 0;
    margin-bottom: -5px;
    /* Offset gap before footer */
}

.map-container iframe {
    filter: grayscale(20%) contrast(1.1);
}

/* =====================
   Footer
   ===================== */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 2rem 20px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-left .brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-left .brand img {
    height: 50px;
}

.footer-left h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-desc {
    color: var(--accent-blue);
    line-height: 1.8;
}

.footer-center h4,
.footer-right h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-center h4::after,
.footer-right h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-blue);
    border-radius: 2px;
}

.footer-center ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-center a {
    color: var(--white);
    opacity: 0.8;
}

.footer-center a:hover {
    opacity: 1;
    color: var(--accent-blue);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-top: 2px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.admin-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.admin-login-btn:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* =====================
   Fake ReCaptcha Styling
   ===================== */
.recaptcha-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 10px 14px;
    margin-bottom: 2rem;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
    width: 300px;
    max-width: 100%;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rc-checkbox {
    width: 28px;
    height: 28px;
    background: #fff;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.rc-checkbox:hover {
    border-color: #b2b2b2;
}

.rc-checkbox.loading {
    border-radius: 50%;
    border-color: transparent;
    border-top-color: #4A90E2;
    animation: rc-spin 1s linear infinite;
    cursor: default;
}

.rc-checkbox.checked {
    border-color: transparent;
    cursor: default;
}

.rc-spinner {
    display: none;
}

.rc-checkmark {
    display: none;
    color: #009E5E;
    font-size: 24px;
    font-weight: bold;
}

.rc-checkbox.checked .rc-checkmark {
    display: block;
}

.rc-label {
    font-family: Roboto, 'Inter', sans-serif;
    font-size: 14px;
    color: #222;
}

.rc-logo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recaptcha-logo {
    width: 32px;
    height: 32px;
    margin-bottom: 2px;
}

.rc-text {
    font-size: 10px;
    color: #555;
    font-family: Roboto, 'Inter', sans-serif;
    margin-bottom: 2px;
}

.rc-privacy {
    font-size: 10px;
    color: #555;
    font-family: Roboto, 'Inter', sans-serif;
}

@keyframes rc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =====================
   Responsive Design
   ===================== */
@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        width: 350px;
    }

    .about-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 2rem;
    }

    .vm-container {
        grid-template-columns: 1fr;
    }

    .about-box h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-left .brand {
        justify-content: center;
    }

    .footer-center h4::after,
    .footer-right h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        width: 220px; /* Diperkecil agar tidak terlalu besar di HP */
    }

    .detail-hero-img img {
        height: 250px; /* Banner lebih pendek di HP agar pas di layar */
    }
}

/* =====================
   Bidang Page Styles
   ===================== */
.solid-navbar {
    background: rgba(30, 58, 138, 1);
    /* Solid color instead of entirely transparent blur */
}

.bidang-page-section {
    padding: 120px 2rem 80px;
    /* Padding top to clear exact navbar height */
    background: var(--bg-color);
    min-height: calc(100vh - 300px);
}

.bidang-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    /* We make it 2 columns on mobile, up to 4 on desktop depending on space */
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.bidang-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    aspect-ratio: 1 / 1;
    background: var(--primary-blue);
}

.bidang-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
}

.bidang-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bidang-card:hover .bidang-img {
    transform: scale(1.1);
    opacity: 0.8;
}

.bidang-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
    text-align: center;
}

.bidang-card:hover .bidang-overlay {
    transform: translateY(0);
    opacity: 1;
}

.bidang-overlay h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

/* =====================
   Bidang Detail Page Styles
   ===================== */
.light-blue-bg {
    background-color: #8bbce3;
    /* Soft light blue background matching mockup */
}

.detail-page-section {
    padding: 120px 2rem 80px;
    min-height: calc(100vh - 300px);
}

.detail-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.detail-hero-img {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    width: 100%;
}

.detail-hero-img img {
    border-radius: 20px;
    width: 100%;
    height: 500px; /* Gunakan height fix agar banner seragam */
    object-fit: cover; /* Penuhi grid sepenuhnya tanpa ruang kosong */
    object-position: center 65%; /* Fokus sedikit lebih ke bawah dari tengah */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--white);
}

.detail-badge-title {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    border: 2px solid var(--white);
}

.detail-content-wrap {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pill-title {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quote-block {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    max-width: 800px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.quote-block p {
    color: var(--primary-blue);
    font-size: 1.15rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.7;
}

/* =====================
   Aspirasi Form Page Styles
   ===================== */
.aspirasi-form-section {
    padding: 120px 2rem 80px;
    min-height: calc(100vh - 300px);
    display: flex;
    justify-content: center;
}

.aspirasi-form-container {
    width: 100%;
    max-width: 600px;
    /* Slightly slim to match a nice aesthetic form width */
}

.aspirasi-banner {
    background-color: var(--primary-blue);
    /* Solid deep blue */
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
}

.aspirasi-banner h2 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    margin: 0;
}

.aspirasi-box {
    background-color: #2b5b9e;
    /* A slightly lighter blue matching the form background in Figma */
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: none;
    background-color: var(--white);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: 2px solid var(--accent-blue);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper .select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}



.submit-btn {
    width: 100%;
    background-color: var(--white);
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* =====================
   Media Queries (Responsive)
   ===================== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-badges {
        justify-content: center;
    }

    .hero-image-wrapper {
        justify-content: center;
        margin-top: 3rem;
    }

    .about-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .vm-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-center h4::after,
    .footer-right h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 1.5rem 80px 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .detail-hero-img img {
        height: 350px;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .hero-image {
        width: 100%;
    }

    .about-box h2 {
        font-size: 1.5rem;
    }
    
    .about-box p {
        font-size: 1rem;
    }

    .vm-card {
        padding: 1.5rem;
    }

    .vm-card h3 {
        font-size: 1.5rem;
    }
    
    .vm-card p, .vm-card li {
        font-size: 0.95rem;
    }

    .detail-badge-title {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
    
    .detail-page-section {
        padding: 100px 1rem 60px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bidang-page-section, .aspirasi-form-section {
        padding-top: 160px;
    }
}