@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Variables */
:root {
    --primary-bg: #0b0f19;
    --secondary-bg: #151c2c;
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --accent-rgb: 251, 191, 36;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(251, 191, 36, 0.1);
    --border-hover: rgba(251, 191, 36, 0.3);
    --glass-bg: rgba(21, 28, 44, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Global Layout Utilities */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.section-title span {
    background: linear-gradient(to right, var(--accent), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(251, 191, 36, 0.2); }
    50% { box-shadow: 0 0 25px rgba(251, 191, 36, 0.4); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: #0b0f19;
    border: none;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(251, 191, 36, 0.05);
    transform: translateY(-2px);
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
}

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

.logo-text span {
    color: var(--accent);
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 5px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 20px 80px 20px;
    background: radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(21, 28, 44, 1) 0%, transparent 60%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    background-color: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--accent);
    display: block;
    background: linear-gradient(to right, var(--accent), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.hero-card-img-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

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

.hero-card-stat {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--secondary-bg);
    border: 1.5px solid var(--accent);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: pulse-glow 3s infinite;
}

.hero-card-stat .stat-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.hero-card-stat .stat-lbl {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hero-card-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.hero-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* About Section */
.about {
    background-color: var(--secondary-bg);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-info-badge {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: block;
}

.about-heading {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-text:last-of-type {
    margin-bottom: 35px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

.stat-count {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    font-family: var(--font-heading);
}

.stat-count span {
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.about-media {
    position: relative;
}

.about-image-stack {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 480px;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

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

.about-img-1 {
    grid-column: 1 / span 9;
    grid-row: 1 / span 9;
    z-index: 2;
}

.about-img-2 {
    grid-column: 4 / -1;
    grid-row: 5 / -1;
    z-index: 1;
    border: 2px solid var(--primary-bg);
}

/* Visi & Misi Section */
.visimisi {
    background-color: var(--primary-bg);
}

.visimisi-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.visi-card {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #0d1322 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    height: fit-content;
    position: sticky;
    top: 120px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.visi-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
}

.visi-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.visi-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.misi-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.misi-item {
    background-color: var(--secondary-bg);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    transition: var(--transition-normal);
}

.misi-item:hover {
    border-color: var(--border-hover);
    transform: translateX(5px);
}

.misi-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
    line-height: 1;
}

.misi-content h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.misi-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Products Section */
.products {
    background-color: var(--secondary-bg);
}

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

.product-card {
    background: var(--primary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.product-image-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image-container img {
    transform: scale(1.08);
}

.product-badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
}

.product-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-specs {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.spec-label {
    color: var(--text-muted);
}

.spec-val {
    color: var(--text-primary);
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    background-color: var(--primary-bg);
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    background-color: var(--secondary-bg);
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.5) 60%, transparent 100%);
    color: var(--text-primary);
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    display: inline-block;
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Our Strengths Section */
.strengths {
    background-color: var(--primary-bg);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.strength-card {
    background: var(--secondary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-normal);
    display: flex;
    gap: 20px;
}

.strength-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.strength-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.strength-card:hover .strength-icon {
    background-color: var(--accent);
    color: #0b0f19;
    transform: scale(1.05);
}

.strength-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.strength-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.partners-container {
    background-color: var(--secondary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.partners-heading {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partners-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-item {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-heading);
    transition: var(--transition-fast);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px dashed rgba(255,255,255,0.05);
}

.partner-item:hover {
    color: var(--accent);
    border-color: rgba(251, 191, 36, 0.3);
    background-color: rgba(251, 191, 36, 0.02);
}

/* Legality Section */
.legality {
    background-color: var(--secondary-bg);
}

.legality-layout {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--primary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-item.active {
    border-color: var(--border-hover);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.accordion-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-title-icon {
    color: var(--accent);
}

.accordion-arrow {
    transition: transform var(--transition-normal);
    color: var(--text-secondary);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.accordion-content-inner {
    padding: 0 24px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 20px;
}

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

.legal-info-item {
    font-size: 0.9rem;
}

.legal-info-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.legal-info-value {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-kbli-list {
    grid-column: 1 / -1;
}

.kbli-item {
    background-color: var(--secondary-bg);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 8px;
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
}

.kbli-code {
    color: var(--accent);
    font-weight: 700;
}

.kbli-desc {
    color: var(--text-secondary);
}

/* Team Section */
.team {
    background-color: var(--primary-bg);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-card {
    background: var(--secondary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    width: 280px;
    transition: var(--transition-normal);
}

.team-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.team-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    overflow: hidden;
    border: 3px solid var(--accent);
    padding: 4px;
}

.team-img-wrapper .avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent);
    object-fit: cover;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.team-role {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Section */
.contact {
    background-color: var(--secondary-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background-color: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-map-card {
    background-color: var(--primary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #131b2e 0%, #0b0f19 100%);
    border: 1px dashed rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-secondary);
    padding: 20px;
    margin-bottom: 25px;
}

.map-placeholder svg {
    margin-bottom: 12px;
    color: var(--accent);
}

.contact-cta-box {
    text-align: center;
}

.contact-cta-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--primary-bg);
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 50px 20px 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
}

.footer-logo img {
    height: 35px;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-copy {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-desc {
        margin: 0 auto 30px auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-stack {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .visimisi-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visi-card {
        position: relative;
        top: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-bg);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
