:root {
    /* Skema Warna: Navy & Gold */
    --primary-color: #c5a059;       
    --primary-light: #d4af37;       
    --secondary-color: #001f3f;     
    --accent-color: #f4e4bc;        
    --light-color: #ffffff;
    --dark-color: #001f3f;          
    --gray-color: #555e6b;
    --light-gray: #f0f2f5;
    --border-radius: 12px;
    --shadow: 0 8px 25px rgba(0, 31, 63, 0.08);
    --shadow-hover: 0 15px 35px rgba(197, 160, 89, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, var(--secondary-color), #003366);
    --gradient-gold: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

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

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

/* Header & Navigation - MODIFIKASI UTAMA LAGI */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(0px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 31, 63, 0.04);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Logo Styles - Tetap di kiri */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0; /* Mencegah logo mengecil */
}

.logo:hover {
    transform: translateY(-2px);
}

.logo span {
    color: var(--primary-color);
}

.logo-img {
    height: 38px;
    width: auto;
    transition: var(--transition);
}

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

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    transition: var(--transition);
}

.logo i {
    font-size: 26px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}/* RESET TOTAL: Penting untuk buang ijo-ijo di pinggir */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa; /* Samakan dengan warna area teks */
}

/* AREA GAMBAR */
.hero-image-part {
    position: relative;
    width: 100%;
    height: 60vh; /* Sesuaikan tinggi gambar yang kamu mau */
    overflow: hidden;
    line-height: 0; /* Menghilangkan celah whitespace di bawah gambar */
}

.hero-actual-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* GRADASI: Biar transisi ke area teks halus banget */
.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #f8f9fa);
}

/* AREA TEKS */
.hero-text-part {
    background-color: #f8f9fa; /* Warna off-white premium */
    padding: 40px 20px 80px;
    text-align: center;
}

.hero-text-part h1 {
    color: #002d5b;
    font-size: 2.8rem;
    font-weight: 800;
}

.divider {
    width: 60px;
    height: 4px;
    background: #d1a84f;
    margin: 20px auto;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Navigation Container - MODIFIKASI UTAMA LAGI */
.nav-container {
    display: flex;
    align-items: center;
    gap: 4px; /* DIKECILKAN LAGI! dari 8px */
}

/* Navigation Menu - DIPINDAH LEBIH DEKAT KE DARK MODE */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 8px; /* GAP LEBIH KECIL ANTAR MENU */
}

nav ul li {
    margin: 0; /* HAPUS margin-left */
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 13px; /* DIKECILKAN LAGI dari 14px */
    transition: var(--transition);
    position: relative;
    padding: 6px 8px; /* Padding horizontal dikurangi */
    white-space: nowrap;
    display: block;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    bottom: 0;
    left: 8px; /* Sesuaikan dengan padding */
    right: 8px; /* Sesuaikan dengan padding */
    border-radius: 2px;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: calc(100% - 16px); /* Sesuaikan dengan padding */
}

/* Dark Mode Toggle - LEBIH DEKAT DENGAN NAV */
.theme-toggle {
    background: var(--gradient-gold);
    border: none;
    width: 40px; /* DIKECILKAN dari 44px */
    height: 40px; /* DIKECILKAN dari 44px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 8px; /* DIKECILKAN dari 12px */
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Mencegah button mengecil */
}

.theme-toggle:hover {
    transform: rotate(30deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
}

.theme-toggle i {
    color: white;
    font-size: 1rem; /* DIKECILKAN dari 1.1rem */
    transition: var(--transition);
}

.theme-toggle .fa-sun {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
    margin-left: 8px; /* DIKECILKAN dari 12px */
    z-index: 1001;
}

.mobile-menu:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding: clamp(100px, 12vh, 180px) 0 clamp(50px, 8vh, 100px);
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.03) 0%, rgba(197, 160, 89, 0.05) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 31, 63, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.hero h1 {
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 3px 12px rgba(197, 160, 89, 0.25);
}

.hero p {
    font-size: 1rem;
    color: var(--gray-color);
    max-width: 650px;
    margin: 40px auto 50px;
    font-weight: 300;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: white;
    padding: 12px 26px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    gap: 8px;
}

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

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

.btn:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 16px;
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 3px 12px rgba(197, 160, 89, 0.25);
}

.section-title p {
    color: var(--gray-color);
    max-width: 650px;
    margin: 24px auto 0;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.about-img:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.about-img:hover::before {
    opacity: 0.1;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.04);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 24px;
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(197, 160, 89, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 31, 63, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-gold);
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.service-card:hover::before {
    width: 100%;
    opacity: 0.05;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;

}
.service-card * {
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.service-card i {
    font-size: 2rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

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

/* Team Section */
.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.team-member:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.member-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 60%, rgba(0, 31, 63, 0.4));
    z-index: 1;
}

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

.team-member:hover .member-img img {
    transform: scale(1.08);
}

.member-info {
    padding: 30px 24px;
    text-align: center;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.member-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.member-info p.position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.member-info p.description {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}
 /*NEWS AND OUR CLIENT */
  /* News Section */
.news {
    background-color: var(--light-color);
    padding: 80px 0;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 31, 63, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 160, 89, 0.3);
}

.news-img {
    height: 290px;
    overflow: hidden;
    position: relative;
}

.news-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 31, 63, 0.3));
    z-index: 1;
}

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

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

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-self: flex-start;
}

.news-content h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
}

.news-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Read More Button */
.news-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Ini yang membuat konten rata tengah */
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 10px 20px; /* Tambah padding untuk button lebih lebar */
    border-radius: 5px;
    margin: 10px auto 0; /* Auto di kiri-kanan untuk posisi tengah */
    text-align: center;
    border: 2px solid rgba(197, 160, 89, 0.2);
    background: rgba(197, 160, 89, 0.05);
    width: fit-content; /* Lebar sesuai konten */
}

.news-read-more:hover {
    color: var(--secondary-color);
    gap: 12px;
    background: rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
}

.news-read-more i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.news-read-more:hover i {
    transform: translateX(5px);
}

/* News Tags Styling (Optional - jika mau tambah tags) */
/* News Section */
.news {
    background-color: var(--light-color);
    padding: 80px 0;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 31, 63, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 160, 89, 0.3);
}

.news-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 31, 63, 0.3));
    z-index: 1;
}

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

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

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-self: flex-start;
}

.news-content h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
}

.news-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Read More Button */
.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 8px 0;
    border-radius: 5px;
    align-self: flex-start;
}

.news-read-more:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.news-read-more i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.news-read-more:hover i {
    transform: translateX(5px);
}

/* News Tags Styling (Optional - jika mau tambah tags) */
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.news-tag {
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: var(--transition);
}

.news-tag:hover {
    background: rgba(197, 160, 89, 0.2);
    transform: translateY(-2px);
}

/* View All Button */
/* View All Button Container */
.news-view-all {
    text-align: center;
    margin-top: 80px; /* Jarak atas yang cukup */
    padding-top: 40px;
    position: relative;
}

/* Garis dekoratif di atas tombol (opsional) */
.news-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

/* Tombol dengan animasi khusus */
.news-view-all .btn-outline {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efek hover untuk tombol */
.news-view-all .btn-outline:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(197, 160, 89, 0.2);
    background: var(--gradient-gold);
    color: white;
    border-color: var(--primary-color);
}

/* Animasi cahaya pada hover */
.news-view-all .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
    z-index: -1;
}

.news-view-all .btn-outline:hover::before {
    left: 100%;
}

/* Ikon dalam tombol */
.news-view-all .btn-outline i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.news-view-all .btn-outline:hover i {
    transform: rotate(15deg);
}

/* Responsive design */
@media (max-width: 768px) {
    .news-view-all {
        margin-top: 60px;
        padding-top: 30px;
    }
    
    .news-view-all::before {
        width: 80px;
    }
    
    .news-view-all .btn-outline {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .news-view-all {
        margin-top: 50px;
        padding-top: 25px;
    }
    
    .news-view-all::before {
        width: 60px;
    }
    
    .news-view-all .btn-outline {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* Tombol Toggle */
#toggle-news {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

#toggle-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(197, 160, 89, 0.2);
    background: var(--gradient-gold);
    color: white;
    border-color: var(--primary-color);
}

#toggle-icon {
    transition: transform 0.4s ease;
    margin-left: 5px;
}

#toggle-news.active #toggle-icon {
    transform: rotate(180deg);
}

/* Animasi untuk card yang disembunyikan/tampil */
.news-card {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi saat card muncul */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
    }
}

/* Class untuk animasi show/hide */
.news-card.showing {
    animation: slideDown 0.5s ease forwards;
    display: block !important;
}

.news-card.hiding {
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    0% {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
        display: none !important;
    }
}

/* Responsive grid untuk banyak card */
@media (max-width: 1200px) {
    .news-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Delay untuk animasi */
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.6s; }
.delay-6 { animation-delay: 0.7s; }
.delay-7 { animation-delay: 0.8s; }

/* Animations for delays */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Dark Mode Support */
body.dark-mode .news-card {
    background: var(--light-gray);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .news-content h3 {
    color: var(--dark-color);
}

body.dark-mode .news-content p {
    color: var(--gray-color);
}

body.dark-mode .news-date {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--dark-color);
}

body.dark-mode .news-read-more {
    color: var(--primary-light);
}

body.dark-mode .news-read-more:hover {
    color: var(--accent-color);
}

body.dark-mode .news-tag {
    background: rgba(197, 160, 89, 0.2);
    border-color: rgba(197, 160, 89, 0.4);
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .news-img {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 1.1rem;
    }
    
    .news-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .news {
        padding: 60px 0;
    }
    
    .news-img {
        height: 180px;
    }
    
    .news-content {
        padding: 18px;
    }
    
    .news-date {
        padding: 5px 14px;
        font-size: 0.8rem;
    }
    
    .news-content h3 {
        font-size: 1rem;
    }
    
    .news-content p {
        font-size: 0.85rem;
    }
}
    /* Clients Section Styles */
    .clients {
        padding: 80px 0;
        background: linear-gradient(135deg, rgba(0, 31, 63, 0.03) 0%, rgba(197, 160, 89, 0.05) 100%);
        overflow: hidden;
        position: relative;
    }

    /* Marquee Container */
    .clients-marquee {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 20px 0;
    }

    /* Track untuk animasi */
    .clients-track {
        display: flex;
        gap: 40px;
        width: max-content;
        animation: scroll 30s linear infinite;
        will-change: transform;
    }

    /* Pause on hover */
    .clients-track:hover {
        animation-play-state: paused;
    }

    /* Animation untuk scroll horizontal */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 20px)); /* 50% + setengah gap */
        }
    }

    /* Client Logo Styles */
    .client-logo {
        background: white;
        padding: 20px 30px;
        border-radius: 12px;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
        height: 100px;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .client-logo:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
        border: 2px solid rgba(197, 160, 89, 0.2);
    }

    .client-logo img {
        max-width: 140px;
        max-height: 60px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .client-logo:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }

    /* Gradient overlay untuk fade effect di sisi kiri dan kanan */
    .clients-marquee::before,
    .clients-marquee::after {
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        width: 100px;
        z-index: 2;
        pointer-events: none;
    }

    .clients-marquee::before {
        left: 0;
        background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
    }

    .clients-marquee::after {
        right: 0;
        background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .client-logo {
            min-width: 160px;
            height: 90px;
            padding: 15px 25px;
        }
        
        .client-logo img {
            max-width: 120px;
            max-height: 50px;
        }
        
        .clients-track {
            gap: 30px;
        }
        
        @keyframes scroll {
            100% {
                transform: translateX(calc(-50% - 15px));
            }
        }
    }

    @media (max-width: 768px) {
        .client-logo {
            min-width: 140px;
            height: 80px;
            padding: 15px 20px;
        }
        
        .client-logo img {
            max-width: 100px;
            max-height: 40px;
        }
        
        .clients-track {
            gap: 25px;
        }
        
        @keyframes scroll {
            100% {
                transform: translateX(calc(-50% - 12.5px));
            }
        }
        
        .clients-marquee::before,
        .clients-marquee::after {
            width: 60px;
        }
    }

    @media (max-width: 480px) {
        .client-logo {
            min-width: 120px;
            height: 70px;
            padding: 10px 15px;
        }
        
        .client-logo img {
            max-width: 80px;
            max-height: 35px;
        }
        
        .clients-track {
            gap: 20px;
        }
        
        @keyframes scroll {
            100% {
                transform: translateX(calc(-50% - 10px));
            }
        }
        
        .clients-marquee::before,
        .clients-marquee::after {
            width: 40px;
        }
    }

/* Contact Section */
.contact {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: flex;
    gap: 32px;
    align-items: stretch;
    flex-wrap: wrap;
}

.contact-info-card, .contact-form-card {
    flex: 1;
    min-width: 320px;
}

.contact-info-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.contact-form-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 48px 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.contact-info-card h3, .contact-form-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px;
}

.contact-info-card h3::after, .contact-form-card h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.contact-info-card p, .contact-form-card p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(197, 160, 89, 0.05);
    border-radius: 10px;
    transition: var(--transition);
    margin-bottom: 16px;
}

.contact-item:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateX(8px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.3rem;
}

.contact-text h4 {
    color: var(--secondary-color);
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-text p {
    color: var(--gray-color);
    line-height: 1.5;
}

.contact-social {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.contact-social h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.social-links-contact {
    display: flex;
    gap: 12px;
}

.social-links-contact a {
    width: 44px;
    height: 44px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 2px solid transparent;
}

.social-links-contact a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-4px) scale(1.08);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e5eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #a0a0a0;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    line-height: 1.5;
}

.form-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 16px;
}

.form-btn i {
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 32px 0 16px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background: var(--gradient);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 0.85rem;
    text-align: justify;
}

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

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 3px 0;
    position: relative;
    font-size: 0.8rem;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-col ul li a::before {
    content: '→';
    position: absolute;
    left: -16px;
    opacity: 0;
    transition: var(--transition);
    font-size: 0.75rem;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    left: -10px;
}

.social-links-footer {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.social-links-footer a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links-footer a:hover {
    background: var(--gradient);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.copyright {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    position: relative;
    z-index: 1;
}

.copyright p {
    margin-bottom: 6px;
    line-height: 1.3;
}

.copyright p:last-child {
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-card,
    .contact-form-card {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-card, .contact-form-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Navigation untuk mobile - MENYEMBUNYIKAN NAV MENU */
    .nav-container {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    /* Sembunyikan menu desktop di mobile */
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Menu mobile saat aktif */
    .mobile-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 16px 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        display: none;
    }
    
    .mobile-nav.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }
    
    .mobile-nav li {
        margin: 0;
        text-align: left;
        padding: 12px 20px;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-nav li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav li a {
        display: block;
        width: 100%;
        padding: 8px 0;
        font-size: 14px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        max-width: 550px;
        margin: 30px auto 35px;
    }
    
    .btn-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
        align-items: center;
    }
    
    .btn-outline {
        margin: 0;
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 32px 24px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    /* Responsive untuk footer */
    footer {
        padding: 24px 0 12px;
    }
    
    .footer-container {
        margin-bottom: 16px;
        display: flex;
    	justify-content: space-between;
    	gap: 40px; /* Jarak keseluruhan antar kolom */
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-col p {
        font-size: 0.8rem;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .footer-col ul li {
        margin-bottom: 4px;
    }
    
    .footer-col ul li a {
        font-size: 0.75rem;
        padding: 2px 0;
    }
    
    .copyright {
        padding-top: 12px;
        font-size: 0.7rem;
    }
    
    /* Responsive untuk logo */
    .logo-text {
        font-size: 14px;
    }
    
    .logo-img {
        height: 36px;
    }
    
    /* Dark mode toggle di mobile */
    .theme-toggle {
        width: 36px;
        height: 36px;
        margin-left: 6px;
    }
    
    .theme-toggle i {
        font-size: 0.9rem;
    }
    
    .mobile-menu {
        font-size: 20px;
        margin-left: 6px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .contact-container {
        gap: 32px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 24px 20px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .services-container,
    .team-container {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile kecil */
    footer {
        padding: 20px 0 10px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-col {
        text-align: center;
        flex: 1;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links-footer {
        justify-content: center;
    }
    
    .footer-col p {
        text-align: center;
        margin-bottom: 8px;
    }

    .footer-col-middle {
        margin: 0 20px; /* Memberi jarak ekstra di kiri dan kanan kolom tengah */
    }
    
    /* Atau alternatif dengan margin yang lebih spesifik */
    .footer-col:first-child {
        margin-right: 30px; /* Jarak antara kolom pertama dan kedua */
    }
    
    .footer-col:nth-child(2) {
        margin: 0 15px; /* Jarak seimbang untuk kolom tengah */
    }
    
    .footer-col:last-child {
        margin-left: 30px; /* Jarak antara kolom kedua dan ketiga */
    }
    
    /* Untuk tampilan responsif */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 30px;
        }
        
        .footer-col, 
        .footer-col-middle {
            margin: 0 !important; /* Reset margin di mobile */
        }
    }
    
    /* Responsive untuk logo */
    .logo-text {
        display: none;
    }
    
    .logo-img {
        height: 34px;
    }
    
    /* Ukuran lebih kecil untuk mobile */
    .theme-toggle {
        width: 34px;
        height: 34px;
    }
    
    .mobile-menu {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.3rem;
    }
    
    .logo {
        font-size: 18px;
    }
    
    /* Navigation lebih kompak di mobile kecil */
    .nav-container {
        gap: 2px;
    }
    
    .theme-toggle {
        width: 32px;
        height: 32px;
        margin-left: 4px;
    }
    
    .theme-toggle i {
        font-size: 0.8rem;
    }
    
    .mobile-menu {
        margin-left: 4px;
        font-size: 16px;
    }
}

/* Dark Mode Styles */
body.dark-mode {
    --light-color: #0f172a;
    --dark-color: #f8fafc;
    --gray-color: #94a3b8;
    --light-gray: #1e293b;
    --secondary-color: #c5a059;
}

body.dark-mode h1, 
body.dark-mode h2, 
body.dark-mode h3, 
body.dark-mode h4,
body.dark-mode .section-title h2,
body.dark-mode .service-card h3,
body.dark-mode .about-text h3,
body.dark-mode .member-info h4 {
    color: #ffffff;
}

body.dark-mode .service-card,
body.dark-mode .contact-info-card,
body.dark-mode .contact-form-card,
body.dark-mode .team-member,
body.dark-mode .member-info {
    background-color: var(--light-gray) !important;
    color: var(--dark-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

body.dark-mode .service-card p,
body.dark-mode .about-text p,
body.dark-mode .member-info p.description,
body.dark-mode .contact-text p {
    color: var(--gray-color);
}

body.dark-mode .form-input {
    background-color: #0f1420;
    border-color: #2a3147;
    color: #ffffff;
}

body.dark-mode .logo {
    color: #ffffff;
}

body.dark-mode .logo-text {
    color: #ffffff;
}

body.dark-mode .logo span {
    color: var(--primary-color);
}

body.dark-mode .logo i {
    filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.4));
}

body.dark-mode nav ul li a {
    color: #ffffff;
}

body.dark-mode header {
    background-color: rgba(18, 24, 38, 0.95);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

body.dark-mode .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.25);
}

body.dark-mode .contact-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(46, 125, 50, 0.15);
}

body.dark-mode .contact-item:hover {
    background: rgba(46, 125, 50, 0.15);
    border-color: rgba(46, 125, 50, 0.3);
}

body.dark-mode .theme-toggle .fa-moon {
    display: block;
}

body.dark-mode .theme-toggle .fa-sun {
    display: none;
}

body.dark-mode .social-links-contact a,
body.dark-mode .social-links-footer a {
    background: #2a3147;
    color: var(--dark-color);
}

body.dark-mode .social-links-contact a:hover,
body.dark-mode .social-links-footer a:hover {
    background: var(--gradient);
    color: white;
}

body.dark-mode footer {
    background-color: #0a0e17;
    color: var(--dark-color);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

body.dark-mode footer::before {
    background: var(--gradient-gold);
    box-shadow: 0 0 6px rgba(197, 160, 89, 0.25);
}

body.dark-mode .footer-col h4 {
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body.dark-mode .footer-col h4::after {
    background: var(--gradient-gold);
}

body.dark-mode .footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .footer-col ul li a:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

body.dark-mode .social-links-footer a {
    background: #2a3147;
    color: var(--dark-color);
}

body.dark-mode .social-links-footer a:hover {
    background: var(--gradient);
    color: white;
}