/* ============================================================
   NUR AZIZAH — ACADEMIC PORTFOLIO
   Premium Dark Theme with Gold Accents
   ============================================================ */

/* === CSS Custom Properties === */
:root {
    /* Primary Colors */
    --black: #0a0a0a;
    --black-light: #111111;
    --black-medium: #1a1a1a;
    --black-soft: #222222;

    /* Gold / Mustard Palette */
    --gold: #c8a84e;
    --gold-light: #d4b85c;
    --gold-bright: #e8c84a;
    --gold-dark: #a88a3a;
    --gold-muted: rgba(200, 168, 78, 0.15);
    --gold-glow: rgba(200, 168, 78, 0.3);

    /* Neutral */
    --white: #f5f1eb;
    --white-pure: #ffffff;
    --gray-100: #e8e4de;
    --gray-200: #d0ccc5;
    --gray-300: #a8a49e;
    --gray-400: #7a7672;
    --gray-500: #4a4744;
    --gray-600: #2d2a28;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--gray-200);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-bright);
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* === Utility === */
.gold {
    color: var(--gold);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* === Particles Background === */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* === Animations === */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-slow) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 168, 78, 0.1);
    padding: 12px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: var(--gold-muted);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(200, 168, 78, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(200, 168, 78, 0.04) 0%, transparent 40%);
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold-muted);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-600);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 0 40px rgba(200, 168, 78, 0.2);
}

.hero-cta:hover {
    background: var(--gold-bright);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(200, 168, 78, 0.35);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-image-border {
    position: relative;
    width: 380px;
    height: 460px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 4px solid var(--gold);
    background-color: #1a1a1a;
    box-shadow:
        0 0 80px rgba(200, 168, 78, 0.3),
        0 30px 60px rgba(0, 0, 0, 0.7);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: contrast(1.1) brightness(1.25);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--gold);
    animation: scrollLine 2s ease-in-out infinite;
}

/* === Sections === */
.section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--black);
}

.section-dark {
    background: var(--black-light);
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    margin: 0 auto;
    border-radius: 2px;
}

/* === About Section === */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray-100);
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-200);
    line-height: 1.85;
}

.about-text strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Timeline Card */
.timeline-card,
.expertise-card {
    background: var(--black-medium);
    border: 1px solid rgba(200, 168, 78, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    transition: border-color var(--transition-base);
}

.timeline-card:hover,
.expertise-card:hover {
    border-color: rgba(200, 168, 78, 0.25);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 28px;
}

.card-title svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 24px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--gray-600);
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -21px;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--gray-600);
    border: 2px solid var(--black-medium);
}

.timeline-dot.active {
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}

.timeline-badge {
    display: inline-block;
    padding: 2px 10px;
    background: var(--gold-muted);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 6px;
}

.timeline-content h4 {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 16px;
    background: var(--gold-muted);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-light);
    transition: all var(--transition-fast);
}

.tag:hover {
    background: rgba(200, 168, 78, 0.25);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* === Content Block === */
.content-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.content-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    background: var(--gold-muted);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    color: var(--gold);
}

/* === Feature Card === */
.feature-card {
    background: var(--black-medium);
    border: 1px solid rgba(200, 168, 78, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
    transition: border-color var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(200, 168, 78, 0.25);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(200, 168, 78, 0.08) 0%, transparent 60%);
    border-bottom: 1px solid rgba(200, 168, 78, 0.08);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gold-muted);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: var(--radius-md);
    color: var(--gold);
    flex-shrink: 0;
}

.feature-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-subtitle {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.feature-card-body {
    padding: 32px;
}

.feature-card-body p {
    color: var(--gray-200);
    line-height: 1.85;
}

/* === Methodology Grid === */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.method-card {
    background: var(--black-soft);
    border: 1px solid rgba(200, 168, 78, 0.08);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.method-card:hover {
    border-color: rgba(200, 168, 78, 0.2);
    transform: translateY(-4px);
}

.method-card:hover::before {
    transform: scaleX(1);
}

.method-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 12px;
    line-height: 1;
}

.method-card h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.method-card p {
    font-size: 0.88rem;
    color: var(--gray-300);
    line-height: 1.7;
}

/* === Highlight Box === */
.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(200, 168, 78, 0.06) 0%, rgba(200, 168, 78, 0.02) 100%);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gold-muted);
    border-radius: var(--radius-sm);
    color: var(--gold);
}

.highlight-box p {
    color: var(--gray-100);
    line-height: 1.85;
    font-size: 0.95rem;
}

.highlight-box strong {
    color: var(--gold-light);
}

/* === Research Section === */
.research-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.research-main p {
    margin-bottom: 20px;
    color: var(--gray-200);
    line-height: 1.85;
}

.research-main strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Research Focus Card */
.research-focus-card,
.research-process-card {
    background: var(--black-medium);
    border: 1px solid rgba(200, 168, 78, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    transition: border-color var(--transition-base);
}

.research-focus-card:hover,
.research-process-card:hover {
    border-color: rgba(200, 168, 78, 0.25);
}

.research-focus-card h3,
.research-process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 24px;
}

.focus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.focus-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray-200);
}

.focus-list li svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    background: var(--black-soft);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--gray-200);
    transition: all var(--transition-fast);
}

.process-step:hover {
    background: var(--gold-muted);
    color: var(--gold-light);
}

.step-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* === Pengabdian Cards === */
.pengabdian-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pengabdian-card {
    background: var(--black-soft);
    border: 1px solid rgba(200, 168, 78, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pengabdian-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(200, 168, 78, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pengabdian-card:hover {
    border-color: rgba(200, 168, 78, 0.25);
    transform: translateY(-6px);
}

.pengabdian-card:hover::before {
    opacity: 1;
}

.pengabdian-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--gold-muted);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: var(--radius-md);
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pengabdian-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.pengabdian-card p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* === Integrasi Section === */
.integrasi-hero {
    max-width: 700px;
    margin: 0 auto 56px;
}

.tridharma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.tridharma-card {
    position: relative;
    background: var(--black-medium);
    border: 1px solid rgba(200, 168, 78, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.tridharma-card:hover {
    border-color: rgba(200, 168, 78, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.tridharma-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-muted), rgba(200, 168, 78, 0.05));
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 50%;
    color: var(--gold);
    margin-bottom: 24px;
}

.tridharma-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 14px;
}

.tridharma-card p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.75;
}

.tridharma-connector {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    opacity: 0.3;
    z-index: 2;
}

.tridharma-card:last-child .tridharma-connector {
    display: none;
}

/* === Closing Statement === */
.closing-statement {
    max-width: 800px;
    margin: 0 auto;
}

.closing-statement blockquote {
    position: relative;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(200, 168, 78, 0.06) 0%, rgba(200, 168, 78, 0.02) 100%);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
}

.closing-statement blockquote::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

.closing-statement blockquote p {
    font-size: 1.05rem;
    color: var(--gray-100);
    line-height: 1.9;
    font-style: italic;
}

.closing-statement blockquote strong {
    color: var(--gold);
    font-style: normal;
}

/* === Footer === */
.footer {
    background: var(--black-light);
    border-top: 1px solid rgba(200, 168, 78, 0.08);
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-600);
    margin-bottom: 24px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--white);
    font-weight: 600;
    margin-top: 8px;
    font-size: 1rem;
}

.footer-role {
    color: var(--gray-400) !important;
    font-weight: 400 !important;
    font-size: 0.88rem !important;
    margin-top: 4px !important;
    line-height: 1.5 !important;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .research-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    html {
        font-size: 15px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black-light);
        flex-direction: column;
        padding: 100px 32px;
        transition: right var(--transition-base);
        border-left: 1px solid rgba(200, 168, 78, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-image-border {
        width: 280px;
        height: 340px;
    }

    .hero-container {
        padding: 100px 24px 60px;
    }

    .pengabdian-cards {
        grid-template-columns: 1fr;
    }

    .tridharma-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tridharma-connector {
        display: none;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

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

    .feature-card-header {
        flex-direction: column;
        text-align: center;
    }

    .highlight-box {
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .closing-statement blockquote {
        padding: 28px;
    }
}
