:root {
    /* Color Palette */
    --midnight-blue: #15406a;
    --prussian-blue: #0b1e44;
    --royal-blue: #1e3a8a;
    --light-blue: #e0f2fe;
    --accent-gold: #fbbf24;

    --bg-light: #f8fafc;
    --text-dark: #475569;
    --text-gray: #475569;
    --text-light: #f1f5f9;

    --white: #ffffff;
    --border: #e2e8f0;

    /* Spacing */
    --container-width: 1280px;
    --spacer-sm: 1rem;
    --spacer-md: 2rem;
    --spacer-lg: 3rem;
    --spacer-xl: 5rem;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: initial; /* handled by Lenis */
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utils */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--spacer-xl) 0;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
    font-size: 0.95rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--midnight-blue);
    color: var(--white);
    border: 1px solid var(--midnight-blue);
}

.btn-primary:hover {
    background-color: var(--prussian-blue);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--midnight-blue);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--prussian-blue);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.loader-content {
    font-size: 5rem;
    font-weight: 800;
    overflow: hidden;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--midnight-blue);
}

.logo-img {
    height: 40px;
    width: auto;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

/* .menu-toggle:hover {
  background: rgba(0, 0, 0, 0);
} */

.hamburger {
    width: 24px;
    height: 12px;
    position: relative;
    display: block;
}

.hamburger .line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--midnight-blue);
    transition:
        transform 0.3s,
        opacity 0.3s;
}

.hamburger .line:nth-child(1) {
    top: 0;
}
.hamburger .line:nth-child(2) {
    bottom: 0;
}

body.menu-open .hamburger .line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
    background-color: var(--white);
}
body.menu-open .hamburger .line:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
    background-color: var(--white);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--midnight-blue);
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    clip-path: circle(0% at top right);
    transition: clip-path 0.8s cubic-bezier(0.7, 0, 0.3, 1);
    color: var(--white);
}

body.menu-open .menu-overlay {
    clip-path: circle(150% at top right);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
}

.menu-item a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.menu-item a:hover {
    color: var(--white);
}

.submenu {
    font-size: 1.5rem;
    margin-left: 2rem;
    margin-top: 1rem;
    display: none; /* revealed via js */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%; /* for parallax */
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 30, 68, 0.7), rgba(21, 64, 106, 0.5));
}

.hero-text {
    max-width: 800px;
    z-index: 2;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    overflow: hidden;
    display: block;
    transform: translateY(100%);
    opacity: 0;
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

/* Services */
.services {
    background-color: var(--white);
}

.section-header {
    margin-bottom: 3rem;
}

.label {
    color: var(--midnight-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition:
        transform var(--transition-smooth),
        box-shadow var(--transition-smooth);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--midnight-blue);
}

.card-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--royal-blue);
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 0.8rem;
}

/* Updates */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    cursor: pointer;
}

.news-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 16/10;
}

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

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.date {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.news-content h4 {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-card:hover h4 {
    color: var(--royalblue);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-top: 1rem;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Survey */
/* Survey Section - Premium Bento Grid */
.survey-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.bento-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.05);
}

/* Chart Card */
.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.header-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    color: var(--midnight-blue);
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.chart-badge {
    background: #ecfdf5;
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chart-wrapper {
    position: relative;
    height: 250px;
    width: 100%;
}

.chart-center-text {
    position: absolute;
    top: 55%; /* Offset slightly due to legend */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-center-text .score {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--midnight-blue);
    line-height: 1;
}

.chart-center-text .label {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Action Cards Column */
.bento-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
}

.primary-action {
    background: linear-gradient(
        135deg,
        var(--midnight-blue),
        var(--royal-blue)
    );
    color: white;
}

.primary-action .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.primary-action h3 {
    color: white;
}

.primary-action p {
    color: rgba(255, 255, 255, 0.8);
}

.primary-action .action-btn {
    background: white;
    color: var(--midnight-blue);
}

.secondary-action {
    background: white;
}

.secondary-action:hover {
    background: var(--light-blue);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-light);
    color: var(--midnight-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-content {
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    color: var(--midnight-blue);
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.4;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--midnight-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.action-card:hover .action-btn {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .survey-container {
        grid-template-columns: 1fr;
    }

    .bento-col {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .bento-col {
        flex-direction: column;
    }
}

/* Contribution Marquee */
.contribution {
    padding: 4rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    animation: marquee 50s linear infinite;
}

.marquee-item {
    position: relative;
    width: 150px;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--white); /* Optional: background for logos */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Optional: slight shadow */
}

.marquee-item img {
    width: 80%; /* Give some padding inside */
    height: 80%;
    object-fit: contain;
}

/* .marquee-text {
  display: none;
} */

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background-color: var(--midnight-blue);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-col a {
    display: block;
    margin-bottom: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.link-col a:hover {
    opacity: 1;
}

.contact-col p {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-bottom {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-top: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .bento-grid,
    .news-grid,
    .footer-top,
    .footer-links,
    .survey-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        gap: 2rem;
    }
}

/* Combined Info Section */
.info-section {
    background-color: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.news-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-card-side {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    background: var(--bg-light);
    transition:
        transform 0.3s,
        background 0.3s;
}

.news-card-side:hover {
    transform: translateX(10px);
    background: var(--light-blue);
}

.news-card-side .news-img {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    margin-bottom: 0; /* Reset previous margin */
    border-radius: 8px;
    overflow: hidden;
}

.news-card-side .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-side .news-content h4 {
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.faq-column .section-header {
    text-align: left; /* Override center alignment */
}

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================================
   TEAM MARQUEE  — tambahkan di bawah styles.css
   ============================================================ */

/* ── Section wrapper ── */
.team-section {
    background: var(--white);
    overflow: hidden; /* clip fade edges */
}

.team-section .section-header {
    margin-bottom: 3rem;
}

/* ── Outer container (full-width) ── */
.tm-marquee-outer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* Fade mask kiri & kanan */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    padding: 0.5rem 0 1rem;
}

/* ── Single track (one row) ── */
.tm-track {
    overflow: hidden;
    width: 100%;
}

/* ── Belt — the scrolling row ── */
.tm-belt {
    display: flex;
    gap: 1.25rem;
    width: max-content; /* let it grow naturally */
    will-change: transform;
    animation: tmScroll 35s linear infinite;
}

/* Reverse track: plays animation backwards */
.tm-track--reverse .tm-belt {
    animation-direction: reverse;
    animation-duration: 40s;
}

/* Pause on hover/focus */
.tm-marquee-outer:hover .tm-belt,
.tm-marquee-outer:focus-within .tm-belt {
    animation-play-state: paused;
}

/* ── Keyframes ── */
@keyframes tmScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    } /* -50% = original set width */
}

/* ── Card ── */
.tm-card {
    flex-shrink: 0;
    width: 200px;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(15, 30, 68, 0.07);
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s,
        border-color 0.3s;
    cursor: default;
}

.tm-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 48px rgba(15, 30, 68, 0.16);
    border-color: rgba(21, 64, 106, 0.25);
}

/* ── Photo wrapper ── */
.tm-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--light-blue);
}

.tm-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.tm-card:hover .tm-photo-wrap img {
    transform: scale(1.08);
}

/* ── Placeholder avatar ── */
.tm-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--light-blue) 0%,
        rgba(21, 64, 106, 0.08) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-avatar-placeholder svg {
    width: 45%;
    height: 45%;
    color: var(--midnight-blue);
    opacity: 0.25;
}

/* ── Glow overlay on hover ── */
.tm-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(21, 64, 106, 0.55) 100%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.tm-card:hover .tm-glow {
    opacity: 1;
}

/* ── Info strip ── */
.tm-info {
    padding: 0.875rem 1rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
}

.tm-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--prussian-blue);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tm-pos {
    display: block;
    font-size: 0.73rem;
    color: var(--text-gray);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Optional: posisi badge warna ── */
.tm-pos-badge {
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 700;
    padding: 0.14rem 0.55rem;
    border-radius: 50px;
    background: var(--light-blue);
    color: var(--midnight-blue);
    margin-top: 0.2rem;
}

/* ── Accessibility: reduce-motion ── */
@media (prefers-reduced-motion: reduce) {
    .tm-belt {
        animation: none !important;
    }
    .tm-marquee-outer {
        overflow-x: auto;
    }
    .tm-belt {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .tm-card {
        width: 160px;
    }
    .tm-belt {
        gap: 0.875rem;
        animation-duration: 28s;
    }
    .tm-track--reverse .tm-belt {
        animation-duration: 32s;
    }
}

@media (max-width: 380px) {
    .tm-card {
        width: 140px;
    }
}

/* Navbar - Dynamic Island Override */
.navbar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 85%; /* Hero width */
    max-width: 1200px;
    padding: 0.4rem 1rem;
    z-index: 100;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    top: 1.5rem !important;
}

.navbar.scrolled {
    width: 75%; /* Scrolled width */
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    top: 1rem !important; /* Moved up further when scrolled */
    padding: 0.4rem 2rem !important; /* Even smaller when scrolled */
}

/* Responsive Navbar Logic */
.desktop-menu {
    display: none; /* Hidden on mobile */
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none !important; /* Hide hamburger on desktop */
    }

    .desktop-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--midnight-blue);
        transition: color 0.3s;
        position: relative;
        /* padding-bottom: 10px; */
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--royal-blue);
    }

    /* Underline Animation */
    .nav-link::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--royal-blue);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        /* padding-top: 10px; */
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: scaleX(1);
    }

    /* Dropdown Logic */
    .nav-item-dropdown {
        position: relative;
        padding: 1rem 0; /* Increase hit area */
        cursor: pointer;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: white;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        min-width: 200px;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        border-radius: 6px;
        transition: background 0.2s;
        white-space: nowrap;
    }

    .dropdown-menu a:hover {
        background: var(--bg-light);
        color: var(--royal-blue);
    }
}

/* Nested Click Dropdown Styles */
.desktop-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu > li {
    position: relative;
    display: flex;
    align-items: center;
}

.desktop-menu .chevron {
    width: 14px;
    margin-left: 4px;
    transition: transform 0.3s;
}

.desktop-menu .chevron-right {
    width: 14px;
    margin-left: auto; /* Push to right */
}

/* Base Dropdown (Level 1) */
.dropdown-menu {
    position: absolute;
    top: 100%; /* Below parent */
    margin-top: 20px; /* Spacing from menu text */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 220px;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

/* Active State for Click */
.has-dropdown.active > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-75%) translateY(0);
}

.has-dropdown.active > .nav-link .chevron {
    transform: rotate(180deg);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: normal !important;
    transition:
        background 0.2s,
        color 0.2s;
    justify-content: space-between; /* For chevron-right */
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--light-blue);
    color: var(--midnight-blue);
}

/* Level 2 (Sub-submenu) */
.sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%; /* Right of parent */
    margin-left: 10px;
    background: white;
    min-width: 200px;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-10px);
}

.sub-dropdown-menu a {
    white-space: normal !important;
}

/* Active Level 2 */
.has-sub-dropdown.active > .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Level 3 (Sub-sub-submenu) */
.sub-sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%; /* Right of parent */
    margin-left: 10px;
    background: white;
    min-width: 200px;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-10px);
}

.sub-sub-dropdown-menu a {
    white-space: normal !important;
}

/* Active Level 3 */
.has-sub-sub-dropdown.active > .sub-sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Ensure Logo and Menu are perfectly aligned */
.navbar .nav-container {
    align-items: center; /* Flex center */
}

/* Material Icons Alignment Fix */
.material-symbols-outlined {
    font-size: 20px !important; /* Standard size */
    vertical-align: middle;
    line-height: 1; /* Reset line-height to prevent offset */
}

/* Update Desktop Menu Icon Styles */
.desktop-menu .chevron {
    margin-left: 6px;
    font-size: 20px !important;
    transition: transform 0.3s;
}

.desktop-menu .chevron-right {
    margin-left: auto;
    font-size: 20px !important;
}

.desktop-menu .nav-link,
.dropdown-menu a {
    display: flex;
    align-items: center; /* Strict centering */
    line-height: 1.2; /* Tighter line height for text to align with icon */
}

/* Logo Size Update */
.logo-img {
    height: 55px;
}

/* Mobile Menu Overhaul */
.menu-links.mobile-menu-list {
    gap: 1rem;
    font-size: 1.5rem; /* Reduced from 3rem */
    font-weight: 600;
    overflow-y: auto;
    max-height: 80vh;
}

/* Recursive indentation for mobile */
.mobile-submenu .mobile-submenu {
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-chevron {
    transition: transform 0.3s;
}

.menu-item.active > .mobile-link-wrapper .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
}

.menu-item.active > .mobile-submenu {
    max-height: 500px; /* Arbitrary large height */
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.mobile-submenu a {
    font-size: 1.1rem; /* Smaller for sub-items */
    color: rgba(255, 255, 255, 0.7);
}

.mobile-submenu a:hover {
    color: white;
}

/* Mobile Menu Layout Fix (Push Down) */
.menu-overlay {
    justify-content: flex-start !important;
    padding-top: 8rem !important;
    overflow-y: auto !important;
}

/* Hamburger Close Button Color Fix */
body.menu-open .hamburger .line:nth-child(1),
body.menu-open .hamburger .line:nth-child(2) {
    background-color: var(--white) !important; /* Switch to Main White */
}

/* Ensure Button is Symmetrical */
.menu-toggle {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Fix: Hide Hamburger on Desktop */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none !important;
    }
}

/* Mobile Menu Open State: Hide Navbar Background & Logo */
body.menu-open .navbar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body.menu-open .logo {
    opacity: 0;
    pointer-events: none;
    /* Maintain width/height to prevent layout shift (button jumping) */
}

/* Ensure Close Button stays visible and fixed */
body.menu-open .menu-toggle {
    /* Position is already handled by the flex container spacing */
    z-index: 101; /* Ensure above everything */
}

/* Strict Centering for Hamburger Icon */
.hamburger {
    margin: 0 !important;
    left: auto !important;
    top: auto !important;
    transform: none !important; /* Prevent stray transforms */
}

/* Ensure Toggle has no extra spacing */
.menu-toggle {
    box-shadow: none !important; /* Remove any shadow offsets */
    outline: none !important;
}

/* Alternating Section Colors */
.services {
    background-color: var(--white);
}

.info-section {
    background-color: var(--bg-light); /* Light Gray */
}

/* Ensure inner cards in info-section stand out */
.info-section .news-card-side,
.info-section .faq-item {
    /* Optional: keep them transparent or give them white bg if needed */
}

.survey {
    background-color: var(--white);
}

.contribution {
    background-color: var(--bg-light); /* Light Gray */
}

/* Uiverse Button Style */
.uiverse-btn {
    display: inline-block;
    border-radius: 50px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 2px; /* Border width */
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 10px 20px -10px rgba(0, 242, 254, 0.7);
}

.uiverse-btn span {
    display: block;
    background: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #00f2fe; /* Gradient text color fallback */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #15406a 0%, #0b1e44 100%);
    transition: background 0.3s;
}

.uiverse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(0, 242, 254, 0.9);
}

.uiverse-btn:hover span {
    background-image: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-text-fill-color: white; /* Text turns white on hover */
    background: transparent;
    color: white;
}

/* Info Section Redesign - Premium Feel */
.news-card-side {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    padding: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-card-side:hover {
    transform: translateX(15px) scale(1.02);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--light-blue);
    z-index: 2;
}

.news-card-side .news-img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s;
}

.news-card-side:hover .news-img {
    transform: scale(1.05) rotate(2deg);
}

/* FAQ Card Style */
.faq-column .faq-item {
    background: white;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
}

.faq-column .faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--light-blue);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--midnight-blue);
}

/* Shiny Button Component */
.shiny-btn {
    position: relative;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    background-color: var(--midnight-blue);
    color: white;
    font-weight: 600;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 64, 106, 0.3);
}

.shiny-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 64, 106, 0.4);
}

.shiny-btn span {
    position: relative;
    z-index: 1;
}

.shiny-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.shiny-btn:hover::before {
    left: 100%;
}

/* Advanced Animated Button (Uiverse Inspired) */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: var(--midnight-blue);
    text-decoration: none; /* Reset link styles */
}

/* Plus/Arrow Sign */
.sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign svg {
    width: 17px;
}

.sign svg path {
    fill: white;
}

/* Key Text */
.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1em;
    font-weight: 600;
    transition-duration: 0.3s;
    white-space: nowrap; /* Prevent wrap */
    padding-left: 10px; /* Spacing */
}

/* Hover Effect */
.cta-button:hover {
    width: 160px;
    border-radius: 40px;
    transition-duration: 0.3s;
}

.cta-button:hover .sign {
    width: 30%;
    transition-duration: 0.3s;
    padding-left: 10px;
}

.cta-button:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: 0.3s;
    padding-right: 15px;
}

.cta-button:active {
    transform: translate(2px, 2px);
}

/* Update Animated Button Size & Padding */
.cta-button {
    width: 35px !important; /* Smaller size */
    height: 35px !important;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    width: 150px !important; /* Adjusted expand width */
}

/* Add padding to text so it's not 'mepet' */
.cta-button .text {
    padding-right: 20px !important;
    padding-left: 5px !important;
}

/* Ensure Side-by-Side Layout */
.section-header.row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
}

/* Fancy CTA Button (Uiverse Inspired) */
.fancy-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
    color: var(--midnight-blue);
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fancy-cta .text {
    position: relative;
    z-index: 2;
    transition: color 0.4s;
}

.fancy-cta .icon-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-light);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancy-cta .icon-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.4s;
    color: var(--midnight-blue);
}

/* Hover Effect: Background Slide & Arrow Move */
.fancy-cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%; /* Start from right */
    transform: translate(-50%, -50%) scale(0); /* Hidden */
    width: 200%;
    height: 200%;
    background: var(--royal-blue);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.fancy-cta:hover {
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
    border-color: transparent;
    padding-right: 2rem; /* Expand sightly */
}

.fancy-cta:hover::before {
    left: 50%;
    transform: translate(-50%, -50%) scale(1); /* Fill */
    opacity: 1;
}

.fancy-cta:hover .text {
    color: white;
}

.fancy-cta:hover .icon-wrapper {
    background: white;
    transform: translateX(5px); /* Move icon slightly forward */
}

.fancy-cta:hover .icon-arrow {
    color: var(--royal-blue);
    transform: rotate(-45deg); /* Slight angle or just move right */
}

/* CTA Refinement: Visibility & Mobile */
.fancy-cta {
    background: var(--light-blue); /* Added color for visibility */
    border: 1px solid rgba(21, 64, 106, 0.1); /* Subtle border */
    white-space: nowrap; /* Force single line */
}

/* Mobile Adjustments for CTA */
@media (max-width: 768px) {
    .fancy-cta {
        padding: 0.6rem 1rem; /* Smaller padding */
        gap: 6px;
    }

    .fancy-cta .text {
        font-size: 0.8rem; /* Smaller text */
    }

    .fancy-cta .icon-wrapper {
        width: 20px;
        height: 20px;
    }

    .fancy-cta .icon-arrow {
        width: 14px;
        height: 14px;
    }
}

/* Improved Fancy CTA Visibility */
.fancy-cta {
    background: #f8fafc; /* Slight grey/white background */
    border: 1px solid var(--royal-blue); /* Clear border for visibility */
    color: var(--royal-blue); /* Text color matches border */
}

/* Mobile Adjustments for Fancy CTA */
@media (max-width: 768px) {
    .fancy-cta {
        padding: 0.8rem 1rem; /* Reduce horizontal padding */
        font-size: 0.85rem; /* Slightly smaller text */
        white-space: nowrap; /* Prevent text wrapping */
        max-width: 100%; /* Ensure it fits container */
    }

    .fancy-cta:hover {
        padding-right: 1.5rem; /* Less expansion on mobile */
    }

    .fancy-cta .text {
        white-space: nowrap;
        display: inline-block;
    }
}

/* Flow Button Animation */
.btn-flow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--midnight-blue);
    font-weight: 600;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-flow span:first-child {
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.btn-flow .icon-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--midnight-blue);
    transition: all 0.4s ease;
    z-index: 2;
}

/* Hover Fill Effect */
.btn-flow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--midnight-blue);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.btn-flow:hover {
    border-color: var(--midnight-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(21, 64, 106, 0.15);
}

.btn-flow:hover::before {
    width: 100%;
}

.btn-flow:hover span:first-child {
    color: var(--white);
}

.btn-flow:hover .icon-flow {
    background: var(--white);
    color: var(--midnight-blue);
    transform: translateX(5px) rotate(-45deg); /* Interesting interaction */
}

/* Match FAQ Hover to News Card Hover */
.faq-column .faq-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Match spring transition */
}

.faq-column .faq-item:hover {
    transform: translateX(15px) scale(1.02);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--light-blue);
    z-index: 2;
}

/* Asta Cita Showcase */
.asta-cita-showcase {
    max-width: 1000px; /* Limit width for cleaner look */
    margin: 0 auto;
}

.asta-cita-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Forced Ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.asta-cita-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.asta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.asta-cita-card:hover .asta-img {
    transform: scale(1.05);
}

.asta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        transparent 100%
    );
    color: white;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.asta-cita-card:hover .asta-overlay {
    opacity: 1;
    transform: translateY(0);
}

.asta-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.asta-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 600px;
}

/* =========================================
   NEW FOOTER IMPLEMENTATION
   ========================================= */

/* =========================================
   NEW FOOTER IMPLEMENTATION (Refined)
   ========================================= */

.footer {
    background: linear-gradient(
        to bottom,
        #0f172a,
        #0b1e44
    ); /* Deeper dark blue */
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Column Common Styles */
.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--royal-blue); /* Gold accent */
}

/* 1. Brand Column */
.footer-logo {
    height: 100px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: white;
    color: var(--midnight-blue);
    transform: translateY(-3px);
}

/* 2. Navigation Column */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

/* 3. Contact Column */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-list li i {
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

/* 4. Location Column */
.map-frame-small {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.map-frame-small:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.map-frame-small iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(90%) hue-rotate(180deg);
    transition: filter 0.5s;
}

.map-frame-small:hover iframe {
    filter: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-col h4::after {
        left: 0; /* Align left even on mobile for consistency */
    }
}

/* Satisfaction Section Styles */
.survey-section {
    background: linear-gradient(
        to bottom,
        var(--white) 0%,
        var(--bg-light) 100%
    );
    position: relative;
    overflow: hidden;
}

.survey-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: flex-start;
}

/* Chart Card */
.chart-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.chart-header h3 {
    font-size: 1.25rem;
    color: var(--midnight-blue);
}

.chart-period {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    background: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.chart-period i {
    width: 16px;
    height: 16px;
}

.chart-wrapper {
    position: relative;
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Custom Legend if needed, or ChartJS native */
.chart-legend-custom {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Feedback Column */
.feedback-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feedback-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feedback-card.primary {
    background: linear-gradient(
        135deg,
        var(--midnight-blue) 0%,
        var(--royal-blue) 100%
    );
    color: var(--white);
}

.feedback-card.primary h3 {
    color: var(--white);
}

.feedback-card.primary p {
    color: rgba(255, 255, 255, 0.8);
}

.feedback-card.secondary {
    background: var(--white);
    border: 1px solid var(--border);
}

.feedback-card .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feedback-card.primary .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feedback-card.secondary .icon-box {
    background: var(--light-blue);
    color: var(--royal-blue);
}

.feedback-content {
    flex: 1;
}

.feedback-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--midnight-blue);
}

.feedback-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-white-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--midnight-blue);
}

/* Responsive */
@media (max-width: 900px) {
    .survey-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chart-wrapper {
        height: 250px;
    }

    .chart-card {
        padding: 1.5rem;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .chart-period {
        align-self: flex-start;
    }

    .feedback-card {
        padding: 1.5rem;
        flex-direction: column;
    }

    .feedback-card .icon-box {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .chart-wrapper {
        height: 200px;
    }

    .chart-header h3 {
        font-size: 1.1rem;
    }

    .legend-item {
        font-size: 0.8rem;
    }
}

/* Global Responsive Typography & Spacing Fixes */
@media screen and (max-width: 768px) {
    html {
        font-size: 15px; /* Slightly smaller base font */
    }

    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem; /* Force hero title smaller */
        line-height: 1.2;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1.25rem; /* Reduce side padding slightly */
    }

    .section {
        padding: 3rem 0; /* Reduce vertical spacing */
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 14px; /* Smaller base font for very narrow screens */
    }

    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    h4 {
        font-size: 0.75rem;
    }

    /* Hero adjustments for mobile */
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        gap: 0.75rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%; /* Full width buttons */
    }

    /* Label adjustments */
    .label {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    /* Reset some margins */
    .section-header {
        margin-bottom: 2rem;
    }

    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}
/* =========================================
   PORTFOLIO SECTION
   ========================================= */

.portfolio-section {
    background: var(--bg-light);
}

.section-sub {
    color: var(--text-gray);
    font-size: 1rem;
    max-width: 560px;
    margin: 0.75rem auto 0;
}

/* 6-card portfolio grid:
   Row 1: 1 featured(col-span-2) + 2 normal
   Row 2: 3 normal
*/
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.porto-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.porto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

/* Featured card spans 2 columns */
.porto-featured {
    grid-column: span 2;
}

.porto-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.porto-featured .porto-img {
    aspect-ratio: 16/8;
}

.porto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.porto-card:hover .porto-img img {
    transform: scale(1.07);
}

/* Overlay with info — slides up on hover */
.porto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 30, 68, 0.95) 0%,
        rgba(11, 30, 68, 0.6) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.porto-card:hover .porto-overlay {
    opacity: 1;
    transform: translateY(0);
}

.porto-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.porto-overlay h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.porto-featured .porto-overlay h3 {
    font-size: 1.5rem;
}

.porto-overlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.porto-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: fit-content;
    transition:
        background 0.3s,
        transform 0.3s;
}

.porto-link:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateX(4px);
}

.porto-link svg {
    width: 14px;
    height: 14px;
}

.porto-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1.25rem;
}

.porto-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    background: var(--light-blue);
    color: var(--midnight-blue);
}

.porto-year {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-gray);
}

/* CTA card (6th) */
.porto-cta-card {
    background: linear-gradient(
        135deg,
        var(--midnight-blue),
        var(--royal-blue)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.porto-cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(21, 64, 106, 0.35);
}

.porto-cta-inner {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.porto-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.porto-cta-icon svg {
    width: 28px;
    height: 28px;
}

.porto-cta-inner h3 {
    color: white;
    font-size: 1.25rem;
}

.porto-cta-inner p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 200px;
}

.porto-cta-inner .btn-primary {
    background: white;
    color: var(--midnight-blue);
    border-color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    padding: 0.65rem 1.5rem;
}

.porto-cta-inner .btn-primary svg {
    width: 15px;
    height: 15px;
}

.porto-cta-inner .btn-primary:hover {
    background: var(--light-blue);
    border-color: var(--light-blue);
}

/* Portfolio Responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .porto-featured {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .porto-featured {
        grid-column: span 1;
    }
    .porto-overlay {
        opacity: 1;
        transform: none;
    }
}

/* =========================================
   COMPANY PROFILE SECTION
   ========================================= */

.company-profile-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative bg pattern */
.company-profile-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(21, 64, 106, 0.04) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.cp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* LEFT */
.cp-left {
    position: relative;
}

.cp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: var(--light-blue);
    color: var(--midnight-blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.cp-badge svg {
    width: 15px;
    height: 15px;
}

.cp-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--midnight-blue);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.cp-desc {
    color: var(--text-gray);
    font-size: 0.975rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Founded badge */
.cp-founded {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.cp-founded-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(
        135deg,
        var(--midnight-blue),
        var(--royal-blue)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.cp-founded-icon svg {
    width: 20px;
    height: 20px;
}

.cp-founded-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
    margin-bottom: 0.15rem;
}

.cp-founded-year {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--midnight-blue);
    line-height: 1;
}

/* Stats row */
.cp-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cp-stat {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 14px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.cp-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.cp-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--midnight-blue);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.cp-stat-lbl {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* RIGHT — Visi Misi cards */
.cp-visi-misi {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vm-card {
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Visi card */
.vm-visi {
    background: linear-gradient(
        135deg,
        var(--midnight-blue) 0%,
        var(--royal-blue) 100%
    );
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.vm-visi::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.vm-visi::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.vm-visi .vm-header h3,
.vm-visi .vm-text {
    color: white;
    position: relative;
    z-index: 1;
}

.vm-visi .vm-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Misi card */
.vm-misi {
    background: var(--bg-light);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.vm-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--light-blue);
    color: var(--midnight-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vm-icon svg {
    width: 20px;
    height: 20px;
}

.vm-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--midnight-blue);
    margin: 0;
}

.vm-text {
    font-size: 0.975rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 1rem;
    margin: 0;
}

.vm-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.vm-list li svg {
    width: 18px;
    height: 18px;
    color: var(--midnight-blue);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Company Profile Responsive */
@media (max-width: 1024px) {
    .cp-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .cp-title {
        font-size: 1.6rem;
    }
    .cp-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    .cp-stat-num {
        font-size: 1.4rem;
    }
}

/* =========================================
   INFO SECTION ADJUSTMENTS (3-column layout)
   ========================================= */

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.survey-col-inline {
    display: flex;
    flex-direction: column;
}

.survey-inline-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.survey-inline-cards .chart-card {
    flex: 1;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section {
    background: var(--bg-light);
}

.portfolio-section .section-desc {
    max-width: 580px;
    margin: 0.75rem auto 0;
    color: var(--text-gray);
    font-size: 0.97rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(15, 30, 68, 0.07);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(15, 30, 68, 0.14);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.07);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(11, 30, 68, 0.75) 0%,
        rgba(30, 58, 138, 0.5) 100%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1.1rem;
}

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

.portfolio-tag {
    background: var(--accent-gold);
    color: var(--prussian-blue);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.28rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.portfolio-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(4px);
    transition:
        background 0.25s,
        color 0.25s;
}

.portfolio-link:hover {
    background: var(--accent-gold);
    color: var(--prussian-blue);
}

.portfolio-link svg {
    width: 15px;
    height: 15px;
}

.portfolio-info {
    padding: 1.4rem 1.5rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-info h3 {
    font-size: 1.05rem;
    color: var(--prussian-blue);
    margin-bottom: 0.45rem;
}

.portfolio-info p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1rem;
}

/* ============================================================
   PROFILE SECTION
   ============================================================ */
.profile-section {
    background: linear-gradient(
        135deg,
        var(--prussian-blue) 0%,
        var(--midnight-blue) 55%,
        #1a2f6e 100%
    );
    color: #fff;
    position: relative;
    overflow: hidden;
}

.profile-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.04);
    pointer-events: none;
}

.profile-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.25);
    pointer-events: none;
}

.profile-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.profile-identity .label {
    background: rgba(251, 191, 36, 0.12);
    color: var(--accent-gold);
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.profile-title {
    font-size: 2.2rem;
    color: #fff;
    margin: 0.75rem 0 1rem;
    line-height: 1.15;
}

.profile-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.25rem;
}

.profile-year-badge svg {
    width: 15px;
    height: 15px;
    color: var(--accent-gold);
}
.profile-year-badge strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.profile-desc {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
    margin-bottom: 2rem;
}

.profile-stats {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 90px;
    transition:
        background 0.3s,
        border-color 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

.profile-vm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vm-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.75rem;
    transition:
        background 0.3s,
        border-color 0.3s,
        transform 0.3s;
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-3px);
}

.vm-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(251, 191, 36, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.vm-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}

.vm-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.vm-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.72;
}

.misi-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.misi-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.misi-list li svg {
    width: 15px;
    height: 15px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================================
   FAQ SECTION (standalone)
   ============================================================ */
.faq-section {
    background: #fff;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: start;
}

.faq-header h2 {
    font-size: 2rem;
    color: var(--prussian-blue);
    margin: 0.5rem 0 0.75rem;
}

.faq-header p {
    font-size: 0.94rem;
    color: var(--text-gray);
    line-height: 1.65;
}

/* ============================================================
   BLOGS SECTION
   ============================================================ */
.blogs-section {
    background: var(--bg-light);
}

.blogs-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blogs-top h2 {
    font-size: 2rem;
    color: var(--prussian-blue);
    margin-top: 0.4rem;
}

.blogs-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.75rem;
    align-items: start;
}

/* Featured blog card */
.blog-featured {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(15, 30, 68, 0.07);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s;
}

.blog-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 30, 68, 0.13);
}

.blog-featured .blog-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-featured .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.blog-featured:hover .blog-img img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--prussian-blue);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.28rem 0.8rem;
    border-radius: 50px;
}

.blog-featured .blog-content {
    padding: 1.75rem;
}

.blog-featured .blog-content h3 {
    font-size: 1.18rem;
    color: var(--prussian-blue);
    line-height: 1.4;
    margin: 0.6rem 0 0.75rem;
}

.blog-featured .blog-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-cat {
    font-size: 0.71rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--midnight-blue);
    background: var(--light-blue);
    padding: 0.22rem 0.7rem;
    border-radius: 50px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-date svg {
    width: 13px;
    height: 13px;
}

/* Side blog cards */
.blogs-side {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.blog-side-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(15, 30, 68, 0.06);
    display: grid;
    grid-template-columns: 100px 1fr;
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s;
}

.blog-side-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 30, 68, 0.12);
}

.blog-img-side {
    overflow: hidden;
    aspect-ratio: 1/1;
}

.blog-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-side-card:hover .blog-img-side img {
    transform: scale(1.08);
}

.blog-side-card .blog-content {
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

.blog-side-card .blog-content h3 {
    font-size: 0.86rem;
    color: var(--prussian-blue);
    line-height: 1.45;
    font-weight: 600;
}

.blog-side-card .read-more {
    font-size: 0.78rem;
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .profile-title {
        font-size: 1.6rem;
    }
    .profile-stats {
        gap: 0.85rem;
    }
    .blogs-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .blogs-top h2 {
        font-size: 1.5rem;
    }
}

/* ============================================================
   LANDING ADDITIONS — Portfolio, Profile, Team, Blogs, Marquee
   Ditambahkan di bawah styles.css asli agar tidak menimpa
   ============================================================ */

/* ── Portfolio Filter Tabs ── */
.portfolio-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 2.5rem;
    flex-wrap: wrap;
}
.pf-btn {
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--text-gray);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.pf-btn:hover {
    border-color: var(--midnight-blue);
    color: var(--midnight-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(15, 30, 68, 0.1);
}
.pf-btn.active {
    background: var(--midnight-blue);
    border-color: var(--midnight-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(15, 30, 68, 0.22);
}

/* ── Portfolio Grid & Cards ── */
.portfolio-section {
    background: var(--bg-light);
}
.portfolio-section .section-desc {
    max-width: 580px;
    margin: 0.75rem auto 0;
    color: var(--text-gray);
    font-size: 0.97rem;
    line-height: 1.7;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 0.5rem;
}
.portfolio-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(15, 30, 68, 0.07);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 52px rgba(15, 30, 68, 0.15);
}
.portfolio-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-card:hover .portfolio-img img {
    transform: scale(1.08);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(11, 30, 68, 0.82) 0%,
        rgba(30, 58, 138, 0.55) 100%
    );
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1.1rem;
}
.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-tag {
    background: var(--accent-gold);
    color: var(--prussian-blue);
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.24rem 0.75rem;
    border-radius: 50px;
}
.portfolio-link {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(6px);
    transition:
        background 0.25s,
        color 0.25s,
        transform 0.25s;
    text-decoration: none;
}
.portfolio-link:hover {
    background: var(--accent-gold);
    color: var(--prussian-blue);
    transform: scale(1.1);
}
.portfolio-link svg {
    width: 14px;
    height: 14px;
}
.porto-star-badge {
    position: absolute;
    bottom: 0.65rem;
    right: 0.75rem;
    background: var(--accent-gold);
    color: var(--prussian-blue);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.porto-star-badge svg {
    width: 13px;
    height: 13px;
}
.portfolio-info {
    padding: 1.25rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.portfolio-meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.portfolio-cat-label {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.18rem 0.6rem;
    border-radius: 50px;
    background: var(--light-blue);
    color: var(--midnight-blue);
}
.portfolio-year {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-left: auto;
}
.portfolio-info h3 {
    font-size: 1rem;
    color: var(--prussian-blue);
    margin-bottom: 0.32rem;
    line-height: 1.38;
    font-weight: 700;
}
.portfolio-klien {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    flex-wrap: wrap;
    font-size: 0.77rem;
    color: var(--text-gray);
    margin-bottom: 0.38rem;
}
.portfolio-klien svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}
.portfolio-info > p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.68;
    flex: 1;
    margin-bottom: 0.85rem;
}
.portfolio-tech-tags {
    display: flex;
    gap: 0.32rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}
.tech-tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.14rem 0.48rem;
    background: #f1f5f9;
    color: #475569;
    border-radius: 4px;
}

/* ── Profile Section ── */
.profile-section {
    background: linear-gradient(
        135deg,
        var(--prussian-blue) 0%,
        var(--midnight-blue) 55%,
        #1a2f6e 100%
    );
    color: #fff;
    position: relative;
    overflow: hidden;
}
.profile-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.04);
    pointer-events: none;
}
.profile-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.2);
    pointer-events: none;
}
.profile-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}
.profile-identity .label {
    background: rgba(251, 191, 36, 0.12);
    color: var(--accent-gold);
    border: 1px solid rgba(251, 191, 36, 0.25);
}
.profile-title {
    font-size: 2.1rem;
    color: #fff;
    margin: 0.7rem 0 1rem;
    line-height: 1.15;
}
.profile-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    padding: 0.36rem 1rem;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.77);
    margin-bottom: 1.2rem;
}
.profile-year-badge svg {
    width: 14px;
    height: 14px;
    color: var(--accent-gold);
}
.profile-year-badge strong {
    color: var(--accent-gold);
    font-weight: 700;
}
.profile-desc {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.profile-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    padding: 0.95rem 1.15rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 86px;
    transition:
        background 0.3s,
        border-color 0.3s;
}
.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}
.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.54);
    line-height: 1.35;
}
.profile-vm {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}
.vm-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.6rem;
    transition:
        background 0.3s,
        border-color 0.3s,
        transform 0.3s;
}
.vm-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-3px);
}
.vm-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(251, 191, 36, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.95rem;
}
.vm-icon svg {
    width: 19px;
    height: 19px;
    color: var(--accent-gold);
}
.vm-card h3 {
    font-size: 1.06rem;
    color: #fff;
    margin-bottom: 0.65rem;
}
.vm-card p {
    font-size: 0.89rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.74;
}
.misi-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.58rem;
}
.misi-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.52rem;
    font-size: 0.89rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.52;
}
.misi-list li svg {
    width: 13px;
    height: 13px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

/* ── Team Section ── */
.team-section {
    background: #fff;
}
.team-section .section-desc {
    max-width: 540px;
    margin: 0.7rem auto 0;
    color: var(--text-gray);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-top: 2.4rem;
}
.team-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 1.4rem;
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s;
    box-shadow: 0 2px 14px rgba(15, 30, 68, 0.06);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 38px rgba(15, 30, 68, 0.12);
}
.team-photo {
    aspect-ratio: 1/1;
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.team-card:hover .team-photo img {
    transform: scale(1.06);
}
.team-avatar-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-avatar-placeholder svg {
    width: 38%;
    height: 38%;
    color: var(--midnight-blue);
    opacity: 0.3;
}
.team-info {
    padding: 1.05rem 0.95rem 0.2rem;
}
.team-info h3 {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--prussian-blue);
    margin-bottom: 0.28rem;
}
.team-posisi {
    font-size: 0.79rem;
    color: var(--text-gray);
    margin-bottom: 0.62rem;
}
.team-skills {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}
.skill-tag {
    font-size: 0.63rem;
    font-weight: 600;
    padding: 0.13rem 0.45rem;
    background: var(--light-blue);
    color: var(--midnight-blue);
    border-radius: 4px;
}

/* ── Blogs Section ── */
.blogs-section {
    background: var(--bg-light);
}
.blogs-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.blogs-top h2 {
    font-size: 2rem;
    color: var(--prussian-blue);
    margin-top: 0.4rem;
}
.blogs-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.75rem;
    align-items: start;
}
.blog-featured {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(15, 30, 68, 0.07);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s;
}
.blog-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(15, 30, 68, 0.13);
}
.blog-featured .blog-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-featured .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s;
}
.blog-featured:hover .blog-img img {
    transform: scale(1.05);
}
.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--prussian-blue);
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.24rem 0.75rem;
    border-radius: 50px;
}
.blog-featured .blog-content {
    padding: 1.6rem;
}
.blog-featured .blog-content h3 {
    font-size: 1.12rem;
    color: var(--prussian-blue);
    line-height: 1.4;
    margin: 0.55rem 0 0.65rem;
}
.blog-featured .blog-content p {
    font-size: 0.89rem;
    color: var(--text-gray);
    line-height: 1.72;
    margin-bottom: 1.15rem;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.blog-cat {
    font-size: 0.69rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--midnight-blue);
    background: var(--light-blue);
    padding: 0.18rem 0.65rem;
    border-radius: 50px;
}
.blog-date {
    font-size: 0.78rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.28rem;
}
.blog-date svg {
    width: 11px;
    height: 11px;
}
.blogs-side {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}
.blog-side-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(15, 30, 68, 0.06);
    display: grid;
    grid-template-columns: 100px 1fr;
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s;
}
.blog-side-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 30, 68, 0.12);
}
.blog-img-side {
    overflow: hidden;
    aspect-ratio: 1/1;
}
.blog-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
}
.blog-side-card:hover .blog-img-side img {
    transform: scale(1.08);
}
.blog-side-card .blog-content {
    padding: 0.78rem 0.95rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
}
.blog-side-card .blog-content h3 {
    font-size: 0.83rem;
    color: var(--prussian-blue);
    line-height: 1.44;
    font-weight: 600;
}
.blogs-empty-side {
    color: var(--text-gray);
    font-size: 0.87rem;
    padding: 0.8rem;
}

/* ── Empty State ── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}
.empty-state svg {
    width: 46px;
    height: 46px;
    margin: 0 auto 1rem;
    opacity: 0.28;
    display: block;
}
.empty-state p {
    font-size: 0.94rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .profile-title {
        font-size: 1.6rem;
    }
    .blogs-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .blogs-top h2 {
        font-size: 1.5rem;
    }
    .pf-btn {
        font-size: 0.76rem;
        padding: 0.38rem 0.85rem;
    }
    .blog-side-card {
        grid-template-columns: 78px 1fr;
    }
}
@media (max-width: 420px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Portfolio Header dengan tombol di kanan (seperti blogs) ── */
.portfolio-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.portfolio-top > div {
    flex: 1;
}

.portfolio-top h2 {
    margin-bottom: 0;
}

/* Deskripsi di bawah header */
.portfolio-desc {
    max-width: 680px;
    color: #8899b8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .portfolio-top .btn-flow {
        align-self: flex-start;
    }
}
