:root {
    --primary-purple: #7e22ce;
    --secondary-purple: #a855f7;
    --accent-purple: #c084fc;
    --dark-purple: #581c87;
    --light-purple: #ede9fe;
    --text-dark: #1e1b4b;
    --text-light: #f3e8ff;
    --bg-dark: #0f0e17;
    --bg-light: #f5f3ff;
    --card-bg-light: #ffffff;
    --card-bg-dark: #1e1b4b;
    --shadow-light: 0 10px 25px -5px rgba(126, 34, 206, 0.15);
    --shadow-dark: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0c3fc 100%);
    color: var(--text-dark);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
    padding-top: 30px; /* Untuk menghindari konten tersembunyi di bawah header */
}

body.dark-theme {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%);
    color: var(--text-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tombol Utama */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    color: white;
    box-shadow: 0 4px 16px rgba(126, 34, 206, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #581c87, #7e22ce);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 34, 206, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-block {
    width: 100%;
}

/* Untuk tampilan mobile */
@media (max-width: 576px) {
    .btn {
        width: 100%;
        padding: 14px;
        font-size: 1.2rem;
    }
}


.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

body.dark-theme .header {
    background: rgba(30, 27, 75, 0.9);
    box-shadow: var(--shadow-dark);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

body.dark-theme .logo h1 {
    background: linear-gradient(135deg, var(--accent-purple), #e9d5ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo p {
    font-size: 0.7rem;
    color: var(--primary-purple);
    font-weight: 500;
}

body.dark-theme .logo p {
    color: var(--accent-purple);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

body.dark-theme .nav-link {
    color: var(--text-light);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
    transition: var(--transition);
    border-radius: 10px;
}

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

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-left: 20px;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-theme .theme-toggle {
    color: var(--text-light);
}

.theme-toggle:hover {
    background: rgba(126, 34, 206, 0.1);
    transform: rotate(15deg);
}

body.dark-theme .theme-toggle:hover {
    background: rgba(192, 132, 252, 0.2);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-purple);
}

body.dark-theme .menu-toggle {
    color: var(--accent-purple);
}

.form-success {
    background: var(--card-bg-light);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(126, 34, 206, 0.08);
    padding: 36px 24px;
    text-align: center;
    margin-top: 24px;
    transition: background 0.3s ease, color 0.3s ease;
}

body.dark-theme .form-success {
    background: var(--card-bg-dark);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.form-success i {
    color: var(--primary-purple);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

body.dark-theme .form-success i {
    color: var(--accent-purple);
}

.form-success h3 {
    color: #222;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

body.dark-theme .form-success h3 {
    color: var(--text-light);
}

.form-success p {
    color: #444;
    font-size: 1.1rem;
}

body.dark-theme .form-success p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.05) 0%, rgba(224, 195, 252, 0.1) 100%);
}

body.dark-theme .hero {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.2) 0%, rgba(58, 24, 103, 0.3) 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 600px;
    position: relative;
}

.hero-badge {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 2px;
}

body.dark-theme .hero-title {
    background: linear-gradient(135deg, var(--accent-purple), #e9d5ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    max-width: 550px;
    line-height: 1.6;
    font-weight: 500;
}

body.dark-theme .hero-subtitle {
    color: var(--text-light);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.7;
}

body.dark-theme .hero-description {
    color: var(--text-light);
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(126, 34, 206, 0.25);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.hero-main-image:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.8;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 30px;
    top: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent-purple), #e9d5ff);
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
    animation: float 4s ease-in-out infinite reverse;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-purple), var(--dark-purple));
    border-radius: 15px;
    top: 50%;
    right: -30px;
    animation: float 5s ease-in-out infinite 1s;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(126, 34, 206, 0.5);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

body.dark-theme .particle {
    background: rgba(192, 132, 252, 0.5);
}

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

@keyframes float-particle {
    from { transform: translateY(0) translateX(0); opacity: 1; }
    to { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* Tombol "Pelajari Lebih Lanjut" */
.btn-secondary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    box-shadow: 0 4px 16px rgba(126, 34, 206, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

body.dark-theme .btn-primary,
body.dark-theme .btn-secondary {
    background: linear-gradient(135deg, var(--accent-purple), #3c1863);
    color: white;
}

body.dark-theme .btn-primary:hover,
body.dark-theme .btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-purple), #3c1863);
    transform: translateY(-2px);
}

/* Custom misi-list dengan centang ungu */
.misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.misi-list li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 15px;
    font-size: 1.08rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.misi-list li::before {
    content: '\2713';
    color: var(--secondary-purple);
    font-size: 1.3em;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

body.dark-theme .misi-list li {
    color: var(--text-light);
}

body.dark-theme .misi-list li::before {
    color: var(--accent-purple);
}

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

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

.section-badge {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-theme .section-header h2 {
    background: linear-gradient(135deg, var(--accent-purple), #e9d5ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

body.dark-theme .section-header p {
    color: var(--text-light);
    opacity: 0.7;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    gap: 5px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin: 30px 0 20px;
    color: var(--primary-purple);
}

body.dark-theme .about-text h3 {
    color: var(--accent-purple);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0c3fc 100%);
    position: relative;
}

body.dark-theme .timeline-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%);
}

.timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
    z-index: 1;
}

.timeline-item {
    position: relative;
    text-align: center;
    width: 30%;
    z-index: 2;
}

.timeline-icon {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(126, 34, 206, 0.2);
}

.timeline-content {
    padding: 20px;
    background: var(--card-bg-light);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

body.dark-theme .timeline-content {
    background: var(--card-bg-dark);
    box-shadow: var(--shadow-dark);
}

.timeline-content:hover {
    transform: translateY(-10px);
}

.timeline-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

body.dark-theme .timeline-content h3 {
    color: var(--accent-purple);
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.9;
}

body.dark-theme .timeline-content p {
    color: var(--text-light);
    opacity: 0.8;
}

/* Structure Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.member-card {
    background: var(--card-bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

body.dark-theme .member-card {
    background: var(--card-bg-dark);
    box-shadow: var(--shadow-dark);
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
}

.member-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px rgba(126, 34, 206, 0.2);
}

body.dark-theme .member-card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.member-image {
    height: 220px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.member-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.2), transparent 30%);
    animation: rotate 15s linear infinite;
}

.member-image i {
    font-size: 5rem;
    z-index: 2;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-purple);
}

body.dark-theme .member-info h3 {
    color: var(--accent-purple);
}

.position {
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

body.dark-theme .position {
    color: var(--accent-purple);
}

.division {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Register Section */
.register {
    padding: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

body.dark-theme .form-container {
    background: var(--card-bg-dark);
    box-shadow: var(--shadow-dark);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--primary-purple);
}

body.dark-theme .form-group label {
    color: var(--accent-purple);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-purple);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

body.dark-theme .form-group input,
body.dark-theme .form-group select,
body.dark-theme .form-group textarea {
    background: rgba(30, 27, 75, 0.5);
    border: 2px solid rgba(192, 132, 252, 0.3);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(126, 34, 206, 0.2);
}

body.dark-theme .form-group input:focus,
body.dark-theme .form-group select:focus,
body.dark-theme .form-group textarea:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.2);
}

.error-message {
    color: #EF4444;
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    font-weight: 500;
}

.form-success {
    text-align: center;
    padding: 50px 20px;
}

.form-success i {
    color: var(--secondary-purple);
    margin-bottom: 25px;
    font-size: 4rem;
}

body.dark-theme .form-success i {
    color: var(--accent-purple);
}

.form-success h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

body.dark-theme .form-success h3 {
    color: var(--accent-purple);
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-purple), #4c1d95);
    color: white;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-purple);
    border-radius: 3px;
}

.footer-section p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-section i {
    margin-right: 12px;
    width: 20px;
    color: var(--accent-purple);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.5rem;
}

.social-icons a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social-icons a:hover {
    background: var(--accent-purple);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: left 0.4s ease;
        z-index: 1000;
    }

    body.dark-theme .nav-list {
        background: rgba(30, 27, 75, 0.95);
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        margin: 20px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .hero {
        min-height: 700px;
    }

    .hero-image {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 60px 15px 40px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .hero-main-image {
        max-width: 100%;
        height: auto;
    }

    .shape-1, .shape-2, .shape-3, .hero-particles {
        display: none;
    }

    section {
        padding: 70px 0;
    }

    .timeline {
        flex-direction: column;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .timeline-icon {
        margin: 0;
    }

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

    .member-card {
        padding: 20px;
    }

    .member-image {
        height: 180px;
    }

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

    .social-icons {
        justify-content: center;
    }

    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}