:root {
    --bg-color: #030712;
    --card-bg: rgba(17, 24, 39, 0.45);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --primary-blue: #3b82f6;
    --primary-emerald: #10b981;
    --primary-purple: #8b5cf6;
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --glow-blue: rgba(59, 130, 246, 0.15);
    --glow-emerald: rgba(16, 185, 129, 0.12);
    --glow-purple: rgba(139, 92, 246, 0.12);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    position: relative;
}

/* Background animated glow shapes */
.glow-bg {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    animation: slowGlow 25s infinite alternate ease-in-out;
}

.glow-1 {
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.glow-2 {
    background: radial-gradient(circle, var(--primary-emerald) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.glow-3 {
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes slowGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(100px, 80px) scale(1.15);
    }
    100% {
        transform: translate(-50px, -40px) scale(0.9);
    }
}

/* Navbar Layout */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
}

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

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-box {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.logo-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.btn-premium {
    padding: 0.65rem 1.35rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-login {
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-nav-login:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-nav-register {
    background: var(--primary-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-nav-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 90vh;
    width: 100vw;
    overflow: hidden;
    background: #02040a;
}

.slide-container {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.slide {
    width: 100vw;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3,7,18,0.2) 0%, rgba(3,7,18,0.95) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 0 2rem;
    transform: scale(0.95) translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active-slide .slide-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    color: #ffffff;
    line-height: 1.15;
    background: linear-gradient(to bottom, #ffffff 60%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(17, 24, 39, 0.45);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.35rem;
    cursor: pointer;
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-arrow:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-50%) scale(1.05);
}

.arrow-prev { left: 2rem; }
.arrow-next { right: 2rem; }

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active-dot {
    width: 1.75rem;
    border-radius: 20px;
    background: var(--primary-blue);
}

/* Sections */
section {
    padding: 7rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    background: rgba(59, 130, 246, 0.08);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bento Grid */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.choose-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    pointer-events: none;
}

.choose-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.1);
}

.choose-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.icon-blue { background: rgba(59,130,246,0.08); color: #60a5fa; box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
.icon-emerald { background: rgba(16,185,129,0.08); color: #34d399; box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }
.icon-purple { background: rgba(139,92,246,0.08); color: #a78bfa; box-shadow: 0 0 20px rgba(139, 92, 246, 0.2); }

.choose-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.2px;
}

.choose-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-large { grid-column: span 7; }
.card-small { grid-column: span 5; }

/* About row layout */
.about-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-info {
    flex: 1.2;
}

.about-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
    letter-spacing: -0.75px;
}

.about-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.about-visual {
    flex: 0.8;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
}

.about-badge-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
}

.about-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(16,185,129,0.08);
    color: #34d399;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.about-badge-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.about-badge-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Counters */
.counter-section {
    background: rgba(17, 24, 39, 0.2);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 5rem 2rem;
    backdrop-filter: blur(10px);
}

.counter-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.counter-item {
    position: relative;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.05);
}

.counter-number {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
}

.counter-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(59,130,246,0.3) 10%, rgba(59,130,246,0.3) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #090d16;
    border: 2px solid var(--primary-blue);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    z-index: 5;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.timeline-item:nth-child(odd) .timeline-badge { right: -1.5rem; }
.timeline-item:nth-child(even) .timeline-badge { left: -1.5rem; }

.timeline-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.timeline-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

/* Parallax CTA */
.cta-parallax {
    position: relative;
    background-image: url('../images/slider_invest_3.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 3rem;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -1px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Mini Contact & Contact Layout */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info-panel h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
    letter-spacing: -0.75px;
}

.contact-info-panel p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.15);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.contact-info-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-info-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 3rem;
    backdrop-filter: blur(25px) saturate(180%);
    box-shadow: var(--shadow-premium);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(3, 7, 18, 0.65);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(59,130,246,0.15);
}

.alert-box {
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    display: none;
}

.alert-success {
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.25);
    color: #34d399;
}

.alert-error {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.25);
    color: #f87171;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto 6rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.25);
}

.faq-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active-faq .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-blue);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.25rem;
}

/* Legal Pages */
.document-wrapper {
    max-width: 850px;
    margin: 0 auto 6rem auto;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    backdrop-filter: blur(25px) saturate(180%);
    box-shadow: var(--shadow-premium);
}

.document-content {
    line-height: 1.75;
    font-size: 1rem;
    color: #cbd5e1;
}

.document-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 0.5rem;
}

.document-content p {
    margin-bottom: 1.5rem;
}

/* Hero for static pages */
.page-hero {
    padding: 7rem 2rem 4rem 2rem;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -1px;
}

.page-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Narrative Story on About Page */
.narrative-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 5rem 0;
}

.narrative-text {
    flex: 1.2;
}

.narrative-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
    letter-spacing: -0.75px;
}

.narrative-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.narrative-visual {
    flex: 0.8;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
}

.stat-circle {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: 4px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
    color: white;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    background: rgba(3, 7, 18, 0.4);
}

/* Info Sidebar (Contact Page) */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(15px);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.15);
    color: #60a5fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.info-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

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

.office-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.75rem;
}

.office-panel h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.office-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.office-hours-row span:first-child {
    color: var(--text-secondary);
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    background: rgba(3, 5, 12, 0.97);
    padding: 5rem 2rem 3rem 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-logo-desc h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.footer-logo-desc p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsiveness */
@media (max-width: 968px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .choose-grid { display: flex; flex-direction: column; }
    .about-layout { flex-direction: column; gap: 3rem; }
    .counter-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .counter-item::after { display: none; }
    .timeline::before { left: 0; }
    .timeline-item { width: 100%; text-align: left !important; padding-left: 2rem; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-badge { left: -1.5rem !important; }
    .contact-section { grid-template-columns: 1fr; gap: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .narrative-row { flex-direction: column; gap: 3rem; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .slide-content h1 { font-size: 2.25rem; }
    .slide-content p { font-size: 1rem; }
    .page-hero h1 { font-size: 2.25rem; }
}
