/*
Theme Name: PSDA Red Theme
Theme URI: https://psda.apmd.ac.id
Author: PSDA Team
Author URI: https://psda.apmd.ac.id
Description: Tema elegan modern dengan nuansa merah untuk Pusat Studi Desa & Adat
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: psda-red
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
    --primary-red: #C41E24;
    --primary-red-dark: #8B0000;
    --primary-red-light: #E84A4F;
    --primary-gold: #C9A84C;
    --dark-bg: #1A1A1A;
    --dark-gray: #2D2D2D;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--light-gray);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-red-dark);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: var(--text-light);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-branding .custom-logo {
    max-height: 55px;
    width: auto;
    transition: var(--transition);
}

.site-branding .custom-logo:hover {
    transform: scale(1.05);
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

.site-title a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.site-title a:hover {
    color: var(--primary-red-light);
}

.site-description {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin: 0;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    color: var(--text-light);
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item a::after {
    width: 60%;
}

.main-navigation ul li a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
}

.main-navigation ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--dark-gray);
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.05);
    flex-direction: column;
    gap: 0;
}

.main-navigation ul li:hover > ul {
    display: flex;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-navigation ul li ul li a {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 0;
    color: rgba(255,255,255,0.85);
}

.main-navigation ul li ul li a::after {
    display: none;
}

.main-navigation ul li ul li a:hover {
    background: rgba(196, 30, 36, 0.15);
    color: var(--text-light);
}

.menu-toggle {
    display: none;
    background: var(--primary-red);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--primary-red-dark);
    transform: scale(1.02);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    transform: rotate(15deg);
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.site-main {
    padding: 40px 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.post-card {
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-card .post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.post-card .post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-card .post-content {
    padding: 25px;
}

.post-card .post-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-card .post-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.post-card .post-title a:hover {
    color: var(--primary-red);
}

.post-card .post-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.post-card .post-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.post-card .read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.post-card .read-more::after {
    content: '→';
    margin-left: 6px;
    transition: var(--transition);
}

.post-card .read-more:hover::after {
    margin-left: 12px;
}

.sidebar {
    margin-top: 40px;
}

.sidebar .widget {
    background: var(--text-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar .widget-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-red);
    position: relative;
}

.sidebar .widget ul {
    list-style: none;
    padding: 0;
}

.sidebar .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.sidebar .widget ul li:last-child {
    border-bottom: none;
}

.sidebar .widget ul li a {
    color: var(--text-dark);
    transition: var(--transition);
}

.sidebar .widget ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 16px;
    background: var(--text-light);
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.pagination a:hover,
.pagination .current {
    background: var(--primary-red);
    color: var(--text-light);
    border-color: var(--primary-red);
}

.site-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widgets .widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-red-light);
}

.footer-widgets ul {
    list-style: none;
    padding: 0;
}

.footer-widgets ul li {
    padding: 6px 0;
}

.footer-widgets ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-widgets ul li a:hover {
    color: var(--primary-red-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
    color: var(--primary-red-light);
}

.single-post .entry-header {
    margin-bottom: 30px;
}

.single-post .entry-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.single-post .entry-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.single-post .entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.single-post .entry-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.single-post .entry-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 25px 0 12px;
}

.single-post .entry-content p {
    margin-bottom: 20px;
}

.single-post .entry-content img {
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 992px) {
    .site-header {
        padding: 0 20px;
        min-height: 70px;
    }
    .site-title {
        font-size: 1.2rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .post-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-wrap: wrap;
        padding: 12px 16px;
        min-height: auto;
    }
    .site-branding {
        flex: 1;
        gap: 12px;
    }
    .site-branding .custom-logo {
        max-height: 40px;
    }
    .site-title {
        font-size: 1rem;
    }
    .site-description {
        font-size: 0.7rem;
    }
    .menu-toggle {
        display: block;
        margin-left: auto;
    }
    .main-navigation {
        flex-basis: 100%;
        display: none;
        margin-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 12px;
    }
    .main-navigation.active {
        display: block;
    }
    .main-navigation ul {
        flex-direction: column;
        gap: 2px;
        width: 100%;
    }
    .main-navigation ul li {
        width: 100%;
    }
    .main-navigation ul li a {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    .main-navigation ul li a::after {
        display: none;
    }
    .main-navigation ul li ul {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.05);
        border-radius: 6px;
        margin: 2px 0 2px 20px;
        padding: 4px 0;
        animation: none;
    }
    .hero-section {
        padding: 50px 0;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .post-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .single-post .entry-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 10px 12px;
    }
    .site-branding .custom-logo {
        max-height: 32px;
    }
    .site-title {
        font-size: 0.85rem;
    }
    .menu-toggle {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   SLIDER ADDITIONAL STYLES
============================================ */
.slide {
    display: none !important;
}

.slide.active {
    display: flex !important;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-btn {
    z-index: 100;
}

/* Animasi tambahan untuk slide */
.slide .slide-content {
    animation: slideContentIn 0.8s ease;
}

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

/* Efek glow pada dots aktif */
.dot.active {
    background: #C41E24;
    box-shadow: 0 0 20px rgba(196, 30, 36, 0.6);
}

/* Hover effect pada card */
.card .btn {
    position: relative;
    overflow: hidden;
}

.card .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.card .btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Responsive slider dots */
@media (max-width: 480px) {
    .slider-dots {
        gap: 8px;
        margin-top: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   FOOTER STYLING
============================================ */
.site-footer {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 40px 0;
    margin-top: 0;
    border-top: 4px solid #C41E24;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

/* Kolom About / Logo */
.footer-about {
    gap: 15px;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #FFFFFF;
    margin: 0;
}

.footer-institution {
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.footer-address-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C41E24;
}

.footer-icon {
    margin-right: 8px;
}

/* Kolom Menu */
.footer-widget-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: #C41E24;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(196, 30, 36, 0.3);
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #C41E24;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 8px;
}

.footer-menu-list li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu-list li a::before {
    content: '›';
    margin-right: 6px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-menu-list li a:hover {
    color: #C41E24;
    padding-left: 10px;
}

.footer-menu-list li a:hover::before {
    opacity: 1;
    margin-right: 8px;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-copyright a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-credit a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #C41E24;
}

.footer-sep {
    margin: 0 10px;
    color: rgba(255,255,255,0.2);
}

/* ============================================
   FOOTER RESPONSIVE
============================================ */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 30px 0;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px 0;
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-widget-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 15px 0;
    }
    
    .footer-logo img {
        max-height: 45px;
    }
    
    .footer-institution {
        font-size: 0.9rem;
    }
    
    .footer-address-text,
    .footer-contact p {
        font-size: 0.8rem;
    }
    
    .footer-menu-list li a {
        font-size: 0.85rem;
    }
}

/* ============================================
   FOOTER ELEGAN - MODERN
============================================ */

.site-footer {
    background: #0D0D0D;
    color: #FFFFFF;
    margin-top: 0;
    position: relative;
}

/* Garis merah di atas footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C41E24, #E84A4F, #C41E24);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

/* Footer Top */
.footer-top {
    padding: 60px 40px 40px;
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

/* ============================================
   KOLOM ABOUT / LOGO
============================================ */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-about {
    gap: 12px;
}

.footer-logo img {
    max-height: 65px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #FFFFFF;
    margin: 0;
}

.footer-institution {
    font-size: 1.05rem;
    color: #FFFFFF;
    margin-bottom: 2px;
    font-weight: 600;
}

.footer-address-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 5px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin: 8px 0 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #C41E24;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 36, 0.3);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Kontak */
.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C41E24;
}

.footer-icon {
    margin-right: 8px;
    font-size: 0.9rem;
}

/* ============================================
   KOLOM MENU
============================================ */
.footer-widget-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: #FFFFFF;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(196, 30, 36, 0.25);
    position: relative;
    letter-spacing: 0.5px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #C41E24;
    transition: width 0.3s ease;
}

.footer-column:hover .footer-widget-title::after {
    width: 60px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-menu-list li:hover {
    opacity: 1;
}

.footer-menu-list li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-menu-list li a::before {
    content: '›';
    margin-right: 4px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #C41E24;
}

.footer-menu-list li a:hover {
    color: #FFFFFF;
    padding-left: 16px;
}

.footer-menu-list li a:hover::before {
    opacity: 1;
    transform: translateX(0);
    margin-right: 8px;
}

/* ============================================
   FOOTER BOTTOM
============================================ */
.footer-bottom {
    background: #0A0A0A;
    padding: 18px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-copyright a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #C41E24;
}

.footer-sep {
    margin: 0 12px;
    color: rgba(255,255,255,0.15);
}

/* ============================================
   RESPONSIVE FOOTER
============================================ */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 20px 30px;
    }
    
    .footer-bottom {
        padding: 15px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
    
    .footer-widget-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 0.8rem;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 30px 15px 20px;
    }
    
    .footer-bottom {
        padding: 12px 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-logo img {
        max-height: 45px;
    }
    
    .footer-institution {
        font-size: 0.95rem;
    }
    
    .footer-address-text,
    .footer-contact p {
        font-size: 0.8rem;
    }
    
    .footer-menu-list li a {
        font-size: 0.85rem;
    }
    
    .footer-widget-title {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   ANIMASI HALUS
============================================ */
.footer-column {
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.05s; }
.footer-column:nth-child(2) { animation-delay: 0.10s; }
.footer-column:nth-child(3) { animation-delay: 0.15s; }
.footer-column:nth-child(4) { animation-delay: 0.20s; }
.footer-column:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FOOTER RAPI & TERSTRUKTUR
============================================ */

.site-footer {
    background: #0D0D0D;
    color: #FFFFFF;
    margin-top: 0;
    border-top: 4px solid #C41E24;
}

/* Footer Top */
.footer-top {
    padding: 50px 40px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

/* ============================================
   KOLOM ALAMAT
============================================ */
.footer-address-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo img {
    max-height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin: 0;
}

.footer-address-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin: 0;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 3px 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C41E24;
}

.footer-icon {
    margin-right: 6px;
}

/* ============================================
   KOLOM MENU
============================================ */
.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(196, 30, 36, 0.3);
    position: relative;
    letter-spacing: 0.5px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #C41E24;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 6px;
}

.footer-menu-list li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu-list li a:hover {
    color: #C41E24;
    padding-left: 5px;
}

/* ============================================
   FOOTER BOTTOM
============================================ */
.footer-bottom {
    background: #0A0A0A;
    padding: 15px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-copyright a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

.footer-credit {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-credit a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #C41E24;
}

.footer-sep {
    margin: 0 10px;
    color: rgba(255,255,255,0.1);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 25px;
    }
    
    .footer-address-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 35px 20px 25px;
    }
    
    .footer-bottom {
        padding: 12px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-address-col {
        grid-column: 1 / -1;
    }
    
    .footer-widget-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .footer-menu-list li a {
        font-size: 0.8rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 25px 15px 20px;
    }
    
    .footer-bottom {
        padding: 10px 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .footer-address-col {
        grid-column: 1;
    }
    
    .footer-logo img {
        max-height: 40px;
    }
    
    .footer-address-text,
    .footer-contact p {
        font-size: 0.8rem;
    }
    
    .footer-widget-title {
        font-size: 0.85rem;
    }
    
    .footer-menu-list li a {
        font-size: 0.8rem;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 0.7rem;
    }
}

/* ============================================
   FOOTER SIMPLE HORIZONTAL
============================================ */

.site-footer {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 25px 40px 15px;
    border-top: 3px solid #C41E24;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Baris Footer */
.footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 8px 0;
}

.footer-row-top {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 12px;
}

.footer-row-menu {
    padding: 10px 0;
}

.footer-row-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 12px;
    justify-content: space-between;
}

/* Logo */
.footer-logo img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-site-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* Info Alamat & Kontak */
.footer-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 15px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-info a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #C41E24;
}

.footer-divider {
    color: rgba(255,255,255,0.15);
}

/* Menu Horizontal */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 25px;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C41E24;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #C41E24;
}

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

/* Copyright & Links */
.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-copyright a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

.footer-links {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C41E24;
}

.footer-sep {
    margin: 0 8px;
    color: rgba(255,255,255,0.1);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 20px 12px;
    }
    
    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 6px 0;
    }
    
    .footer-row-top {
        flex-direction: column;
    }
    
    .footer-row-bottom {
        flex-direction: column;
        gap: 6px;
    }
    
    .footer-info {
        justify-content: center;
        font-size: 0.8rem;
        gap: 4px 10px;
    }
    
    .footer-nav {
        gap: 6px 16px;
    }
    
    .footer-nav a {
        font-size: 0.8rem;
    }
    
    .footer-logo img {
        max-height: 35px;
    }
    
    .footer-copyright,
    .footer-links {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 15px 12px 10px;
    }
    
    .footer-info {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 2px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-nav {
        gap: 4px 12px;
    }
    
    .footer-nav a {
        font-size: 0.75rem;
    }
    
    .footer-logo img {
        max-height: 30px;
    }
}

/* ============================================
   FOOTER HORIZONTAL PROPORSIONAL
============================================ */

.site-footer {
    background: #111111;
    color: #FFFFFF;
    padding: 20px 40px 12px;
    border-top: 3px solid #C41E24;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   BARIS UTAMA - 3 KOLOM
============================================ */
.footer-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Kolom Logo */
.footer-col-logo {
    flex: 0 0 auto;
    min-width: 120px;
}

.footer-col-logo img {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
    transition: transform 0.3s ease;
}

.footer-col-logo img:hover {
    transform: scale(1.05);
}

.footer-site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
}

/* Kolom Info (Tengah) */
.footer-col-info {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 25px;
    justify-content: center;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-label {
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.06);
    padding: 1px 8px;
    border-radius: 3px;
}

.footer-value {
    color: rgba(255,255,255,0.6);
}

.footer-value a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-value a:hover {
    color: #C41E24;
}

/* Kolom Menu (Kanan) */
.footer-col-menu {
    flex: 0 0 auto;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 18px;
}

.footer-nav a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 0;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #C41E24;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #C41E24;
}

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

/* ============================================
   BARIS BAWAH
============================================ */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding-top: 12px;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

.footer-copyright a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

.footer-legal a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #C41E24;
}

.footer-sep {
    margin: 0 10px;
    color: rgba(255,255,255,0.1);
}

/* ============================================
   RESPONSIVE
============================================ */

/* Tablet */
@media (max-width: 992px) {
    .footer-main-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-col-logo {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .footer-col-logo img {
        margin: 0 auto;
    }
    
    .footer-col-info {
        flex: 0 0 100%;
        justify-content: center;
        gap: 4px 20px;
    }
    
    .footer-col-menu {
        flex: 0 0 100%;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 16px 20px 10px;
    }
    
    .footer-main-row {
        flex-direction: column;
        gap: 12px;
        padding-bottom: 10px;
    }
    
    .footer-col-logo img {
        max-height: 38px;
    }
    
    .footer-col-info {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    
    .footer-info-item {
        font-size: 0.78rem;
    }
    
    .footer-nav {
        gap: 4px 14px;
    }
    
    .footer-nav a {
        font-size: 0.78rem;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        padding-top: 10px;
    }
    
    .footer-copyright,
    .footer-legal {
        font-size: 0.7rem;
    }
}

/* Mobile Kecil */
@media (max-width: 480px) {
    .site-footer {
        padding: 12px 12px 8px;
    }
    
    .footer-col-logo img {
        max-height: 32px;
    }
    
    .footer-info-item {
        font-size: 0.7rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-label {
        font-size: 0.6rem;
        padding: 0 6px;
    }
    
    .footer-nav {
        gap: 3px 10px;
    }
    
    .footer-nav a {
        font-size: 0.7rem;
    }
    
    .footer-sep {
        margin: 0 6px;
    }
}

/* ============================================
   FOOTER ELEGAN - RAPI & PROPORSIONAL
============================================ */

.site-footer {
    background: #0D0D0D;
    color: #FFFFFF;
    padding: 30px 40px 16px;
    border-top: 3px solid #C41E24;
    margin-top: 0;
    position: relative;
}

/* Efek gradien halus di bagian atas footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C41E24, #E84A4F, #C41E24);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

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

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

/* ============================================
   TOP SECTION - 3 Kolom
============================================ */
.footer-top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

/* Brand / Logo */
.footer-brand {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    min-width: 140px;
}

.footer-brand img {
    max-height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.footer-brand-tag {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 200px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #C41E24;
}

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.25);
    transition: color 0.3s ease;
}

.footer-contact-item:hover .footer-icon {
    color: #C41E24;
}

.footer-sep-dot {
    margin: 0 6px;
    color: rgba(255,255,255,0.15);
    font-size: 0.6rem;
}

/* Menu Navigation */
.footer-menu-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    flex: 0 0 auto;
    justify-content: flex-end;
}

.footer-menu-nav a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 0;
    letter-spacing: 0.3px;
}

.footer-menu-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #C41E24;
    transition: width 0.3s ease;
}

.footer-menu-nav a:hover {
    color: #FFFFFF;
}

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

/* ============================================
   BOTTOM SECTION
============================================ */
.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-top: 14px;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-copyright a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

.footer-legal-links {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-legal-links a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #C41E24;
}

.footer-sep-bar {
    margin: 0 10px;
    color: rgba(255,255,255,0.08);
}

/* ============================================
   RESPONSIVE
============================================ */

/* Tablet */
@media (max-width: 992px) {
    .site-footer {
        padding: 25px 30px 14px;
    }

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

    .footer-brand {
        align-items: center;
        min-width: auto;
    }

    .footer-contact-info {
        align-items: center;
        min-width: auto;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-menu-nav {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 20px 12px;
    }

    .footer-brand img {
        max-height: 40px;
    }

    .footer-brand-name {
        font-size: 1rem;
    }

    .footer-contact-item {
        font-size: 0.78rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 8px;
    }

    .footer-icon {
        width: 16px;
        height: 16px;
    }

    .footer-menu-nav {
        gap: 4px 14px;
    }

    .footer-menu-nav a {
        font-size: 0.78rem;
    }

    .footer-bottom-section {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        padding-top: 12px;
    }

    .footer-copyright,
    .footer-legal-links {
        font-size: 0.7rem;
    }

    .footer-sep-bar {
        margin: 0 6px;
    }
}

/* Mobile Kecil */
@media (max-width: 480px) {
    .site-footer {
        padding: 16px 14px 10px;
    }

    .footer-brand img {
        max-height: 34px;
    }

    .footer-brand-name {
        font-size: 0.9rem;
    }

    .footer-brand-tag {
        font-size: 0.6rem;
    }

    .footer-contact-item {
        font-size: 0.7rem;
        gap: 3px 6px;
    }

    .footer-icon {
        width: 14px;
        height: 14px;
    }

    .footer-menu-nav {
        gap: 3px 10px;
    }

    .footer-menu-nav a {
        font-size: 0.7rem;
    }

    .footer-sep-dot {
        margin: 0 4px;
    }

    .footer-sep-bar {
        margin: 0 4px;
    }
}

/* ============================================
   FOOTER ELEGAN - RAPI & PROPORSIONAL
============================================ */

.site-footer {
    background: #0D0D0D;
    color: #FFFFFF;
    padding: 30px 40px 16px;
    border-top: 3px solid #C41E24;
    margin-top: 0;
    position: relative;
}

/* Efek gradien halus di bagian atas footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C41E24, #E84A4F, #C41E24);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

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

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

/* ============================================
   TOP SECTION - 3 Kolom
============================================ */
.footer-top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

/* Brand / Logo */
.footer-brand {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    min-width: 140px;
}

.footer-brand img {
    max-height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.footer-brand-tag {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 200px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #C41E24;
}

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.25);
    transition: color 0.3s ease;
}

.footer-contact-item:hover .footer-icon {
    color: #C41E24;
}

.footer-sep-dot {
    margin: 0 6px;
    color: rgba(255,255,255,0.15);
    font-size: 0.6rem;
}

/* Menu Navigation */
.footer-menu-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    flex: 0 0 auto;
    justify-content: flex-end;
}

.footer-menu-nav a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 0;
    letter-spacing: 0.3px;
}

.footer-menu-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #C41E24;
    transition: width 0.3s ease;
}

.footer-menu-nav a:hover {
    color: #FFFFFF;
}

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

/* ============================================
   BOTTOM SECTION
============================================ */
.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-top: 14px;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-copyright a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

.footer-legal-links {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-legal-links a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #C41E24;
}

.footer-sep-bar {
    margin: 0 10px;
    color: rgba(255,255,255,0.08);
}

/* ============================================
   RESPONSIVE
============================================ */

/* Tablet */
@media (max-width: 992px) {
    .site-footer {
        padding: 25px 30px 14px;
    }

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

    .footer-brand {
        align-items: center;
        min-width: auto;
    }

    .footer-contact-info {
        align-items: center;
        min-width: auto;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-menu-nav {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 20px 12px;
    }

    .footer-brand img {
        max-height: 40px;
    }

    .footer-brand-name {
        font-size: 1rem;
    }

    .footer-contact-item {
        font-size: 0.78rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 8px;
    }

    .footer-icon {
        width: 16px;
        height: 16px;
    }

    .footer-menu-nav {
        gap: 4px 14px;
    }

    .footer-menu-nav a {
        font-size: 0.78rem;
    }

    .footer-bottom-section {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        padding-top: 12px;
    }

    .footer-copyright,
    .footer-legal-links {
        font-size: 0.7rem;
    }

    .footer-sep-bar {
        margin: 0 6px;
    }
}

/* Mobile Kecil */
@media (max-width: 480px) {
    .site-footer {
        padding: 16px 14px 10px;
    }

    .footer-brand img {
        max-height: 34px;
    }

    .footer-brand-name {
        font-size: 0.9rem;
    }

    .footer-brand-tag {
        font-size: 0.6rem;
    }

    .footer-contact-item {
        font-size: 0.7rem;
        gap: 3px 6px;
    }

    .footer-icon {
        width: 14px;
        height: 14px;
    }

    .footer-menu-nav {
        gap: 3px 10px;
    }

    .footer-menu-nav a {
        font-size: 0.7rem;
    }

    .footer-sep-dot {
        margin: 0 4px;
    }

    .footer-sep-bar {
        margin: 0 4px;
    }
}
... (isi CSS footer di atas)

/* ============================================
   FOOTER DEFAULT SEDERHANA
============================================ */

.site-footer {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 30px 20px 20px;
    border-top: 3px solid #C41E24;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-info {
    line-height: 1.8;
}

.footer-address {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 5px 0;
}

.footer-address strong {
    color: #FFFFFF;
    font-size: 1rem;
}

.footer-contact {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C41E24;
}

.footer-menu {
    width: 100%;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    display: inline;
}

.footer-nav a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #C41E24;
}

.footer-bottom {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    width: 100%;
}

.footer-bottom a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #C41E24;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 768px) {
    .site-footer {
        padding: 20px 16px 16px;
    }
    
    .footer-address {
        font-size: 0.85rem;
    }
    
    .footer-contact {
        font-size: 0.8rem;
    }
    
    .footer-nav {
        gap: 4px 14px;
    }
    
    .footer-nav a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 16px 12px 12px;
        margin-top: 30px;
    }
    
    .footer-address {
        font-size: 0.8rem;
    }
    
    .footer-contact {
        font-size: 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .footer-nav {
        gap: 3px 10px;
    }
    
    .footer-nav a {
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        font-size: 0.65rem;
    }
}

/* ============================================
   FOOTER STYLE UMY FISIPOL
============================================ */

.site-footer {
    background: #0D0D0D;
    color: #FFFFFF;
    padding: 40px 40px 16px;
    border-top: 4px solid #C41E24;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   BARIS 1 - LOGO, KONTAK, ALAMAT
============================================ */
.footer-top-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 25px;
}

/* Logo */
.footer-logo-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo-col img {
    max-height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 5px;
}

.footer-site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #FFFFFF;
    margin: 0;
}

.footer-tagline {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2px 0 0 0;
}

/* Kontak */
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item .footer-icon {
    font-size: 0.9rem;
    min-width: 20px;
    color: rgba(255,255,255,0.3);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #C41E24;
}

/* Alamat & Jam */
.footer-address-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.footer-address-item,
.footer-hours-item {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-address-item .footer-icon,
.footer-hours-item .footer-icon {
    font-size: 0.9rem;
    min-width: 20px;
    color: rgba(255,255,255,0.3);
}

.footer-address-item strong,
.footer-hours-item strong {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* ============================================
   BARIS 2 - MENU GRID
============================================ */
.footer-menu-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
}

.footer-menu-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(196, 30, 36, 0.3);
    position: relative;
}

.footer-menu-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 25px;
    height: 2px;
    background: #C41E24;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 5px;
}

.footer-menu-list li a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu-list li a:hover {
    color: #C41E24;
    padding-left: 4px;
}

/* ============================================
   BARIS 3 - COPYRIGHT
============================================ */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

.footer-copyright a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

.footer-credit {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

.footer-credit a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #C41E24;
}

.footer-sep {
    margin: 0 8px;
    color: rgba(255,255,255,0.08);
}

/* ============================================
   RESPONSIVE
============================================ */

/* Tablet */
@media (max-width: 992px) {
    .site-footer {
        padding: 30px 30px 14px;
    }

    .footer-top-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo-col {
        align-items: center;
        text-align: center;
    }

    .footer-contact-col {
        align-items: center;
        text-align: center;
    }

    .footer-address-col {
        align-items: center;
        text-align: center;
    }

    .footer-address-item,
    .footer-hours-item {
        justify-content: center;
    }

    .footer-menu-row {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 20px 12px;
    }

    .footer-logo-col img {
        max-height: 45px;
    }

    .footer-contact-item {
        font-size: 0.78rem;
    }

    .footer-address-item,
    .footer-hours-item {
        font-size: 0.78rem;
    }

    .footer-menu-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-menu-title {
        font-size: 0.8rem;
    }

    .footer-menu-list li a {
        font-size: 0.75rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .footer-copyright,
    .footer-credit {
        font-size: 0.7rem;
    }
}

/* Mobile Kecil */
@media (max-width: 480px) {
    .site-footer {
        padding: 16px 14px 10px;
    }

    .footer-logo-col img {
        max-height: 38px;
    }

    .footer-site-title {
        font-size: 1rem;
    }

    .footer-tagline {
        font-size: 0.6rem;
    }

    .footer-contact-item {
        font-size: 0.7rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-address-item,
    .footer-hours-item {
        font-size: 0.7rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-menu-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-copyright,
    .footer-credit {
        font-size: 0.65rem;
    }

    .footer-sep {
        margin: 0 4px;
    }
}

/* ============================================
   FOOTER COPYRIGHT ONLY
============================================ */

.site-footer {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 20px;
    border-top: 3px solid #C41E24;
    margin-top: 40px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-copyright a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 768px) {
    .site-footer {
        padding: 16px;
        margin-top: 30px;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 12px;
        margin-top: 20px;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }
}

/* ============================================
   FOOTER RATA TENGAH ELEGAN
============================================ */

.site-footer {
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    color: #FFFFFF;
    padding: 40px 20px 25px;
    border-top: 3px solid #C41E24;
    margin-top: 40px;
    text-align: center;
    position: relative;
}

/* Efek garis gradien animasi di atas */
.site-footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C41E24, #E84A4F, #C41E24, transparent);
    background-size: 300% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

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

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Logo */
.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    max-height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

/* Brand Info */
.footer-brand-info {
    margin-bottom: 15px;
}

.footer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 2px 0;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    letter-spacing: 0.3px;
}

/* Menu Nav */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 25px;
    margin-bottom: 18px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-nav a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 0;
    letter-spacing: 0.3px;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #C41E24;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.footer-nav a:hover::after {
    width: 70%;
}

/* Copyright */
.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.3px;
}

.footer-copyright a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

/* ============================================
   RESPONSIVE
============================================ */

/* Tablet */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 16px 20px;
        margin-top: 30px;
    }

    .footer-logo img {
        max-height: 45px;
    }

    .footer-brand {
        font-size: 1.2rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-description {
        font-size: 0.8rem;
    }

    .footer-nav {
        gap: 4px 18px;
        padding: 10px 0;
    }

    .footer-nav a {
        font-size: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .site-footer {
        padding: 25px 12px 16px;
        margin-top: 25px;
    }

    .footer-logo img {
        max-height: 38px;
    }

    .footer-brand {
        font-size: 1rem;
    }

    .footer-title {
        font-size: 0.9rem;
    }

    .footer-description {
        font-size: 0.7rem;
    }

    .footer-nav {
        gap: 3px 12px;
        padding: 8px 0;
    }

    .footer-nav a {
        font-size: 0.75rem;
    }

    .footer-copyright {
        font-size: 0.65rem;
    }
}
... (isi CSS footer di atas)

/* ============================================
   FOOTER LOGO KIRI TEPI
============================================ */

.site-footer {
    background: #0D0D0D;
    color: #FFFFFF;
    padding: 30px 20px 20px;
    border-top: 3px solid #C41E24;
    margin-top: 40px;
    text-align: center;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================
   BRAND - Logo Kiri + Teks
============================================ */
.footer-top {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-brand-text {
    text-align: left;
}

.footer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   MENU NAV
============================================ */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 25px;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-nav a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: #C41E24;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.footer-nav a:hover::after {
    width: 60%;
}

/* ============================================
   COPYRIGHT
============================================ */
.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

.footer-copyright a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 768px) {
    .site-footer {
        padding: 25px 16px 16px;
        margin-top: 30px;
    }

    .footer-brand img {
        max-height: 38px;
    }

    .footer-title {
        font-size: 0.9rem;
    }

    .footer-tagline {
        font-size: 0.6rem;
    }

    .footer-nav {
        gap: 4px 18px;
        padding: 8px 0;
    }

    .footer-nav a {
        font-size: 0.75rem;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 12px 12px;
        margin-top: 25px;
    }

    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

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

    .footer-brand img {
        max-height: 35px;
    }

    .footer-title {
        font-size: 0.85rem;
    }

    .footer-tagline {
        font-size: 0.55rem;
    }

    .footer-nav {
        gap: 3px 12px;
        padding: 6px 0;
    }

    .footer-nav a {
        font-size: 0.7rem;
    }

    .footer-copyright {
        font-size: 0.6rem;
    }
}

/* ============================================
   FOOTER - UKURAN SEPERTI HEADER
============================================ */

.site-footer {
    background: #0D0D0D;
    color: #FFFFFF;
    padding: 15px 40px;
    border-top: 3px solid #C41E24;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 65px;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   BRAND - Logo + Teks (Seperti Header)
============================================ */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.footer-brand img {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.3px;
}

.footer-site-desc {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   NAVIGASI (Seperti Header)
============================================ */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
}

.footer-nav a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.3px;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #C41E24;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.footer-nav a:hover::after {
    width: 60%;
}

/* ============================================
   COPYRIGHT
============================================ */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 10px;
    margin-top: 10px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
}

.footer-copyright a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

/* ============================================
   RESPONSIVE
============================================ */

/* Tablet */
@media (max-width: 992px) {
    .site-footer {
        padding: 15px 30px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        min-height: auto;
    }

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

    .footer-brand-text {
        align-items: center;
    }

    .footer-nav {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 12px 20px;
        margin-top: 30px;
    }

    .footer-brand img {
        max-height: 38px;
    }

    .footer-site-title {
        font-size: 0.95rem;
    }

    .footer-site-desc {
        font-size: 0.6rem;
    }

    .footer-nav {
        gap: 4px 14px;
    }

    .footer-nav a {
        font-size: 0.75rem;
    }

    .footer-copyright {
        font-size: 0.65rem;
    }
}

/* Mobile Kecil */
@media (max-width: 480px) {
    .site-footer {
        padding: 10px 14px;
        margin-top: 25px;
    }

    .footer-brand img {
        max-height: 32px;
    }

    .footer-site-title {
        font-size: 0.85rem;
    }

    .footer-nav {
        gap: 3px 10px;
    }

    .footer-nav a {
        font-size: 0.7rem;
    }
}

/* ============================================
   FOOTER MINIMALIS
============================================ */

.site-footer {
    background: #0D0D0D;
    color: #FFFFFF;
    padding: 12px 20px;
    border-top: 2px solid #C41E24;
    margin-top: 40px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

.footer-copyright a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #C41E24;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 768px) {
    .site-footer {
        padding: 10px 16px;
        margin-top: 30px;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 8px 12px;
        margin-top: 20px;
    }

    .footer-copyright {
        font-size: 0.6rem;
    }
}
