/* Dark Minimalist Theme for Team VISTA */

:root {
    --primary: #e21833;
    --accent: #ffd200;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #141414;
    --bg-hover: #1a1a1a;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-muted: #606060;
    --border: #252525;
    --border-light: #353535;
    --gradient-red: linear-gradient(135deg, #e21833, #a01025);
    --gradient-gold: linear-gradient(135deg, #ffd200, #e6bb00);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section - Minimalist */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    position: relative;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(226, 24, 51, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(255, 210, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 2rem auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-affiliation {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Buttons - Minimalist */
.btn {
    padding: 0.9rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    border: 1px solid transparent;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-primary);
}

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

.btn-outline {
    border-color: var(--border-light);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-donate {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    font-weight: 600;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 210, 0, 0.3);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Team Spotlight Section */
.team-spotlight {
    background: var(--bg-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.spotlight-content {
    position: relative;
}

.spotlight-text {
    text-align: center;
    margin-bottom: 3rem;
}

.spotlight-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.spotlight-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.team-photo-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

/* About Section - Minimalist Cards */
.about {
    background: var(--bg-dark);
}

.mission-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 900px;
}

.mission-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.mission-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-highlights {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Grid - Minimalist */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

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

.value-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon {
    font-size: 1.8rem;
    filter: grayscale(0.5);
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

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

/* Unique Approach Section - Redesigned */
.unique-approach {
    margin: 5rem 0;
    padding: 4rem 0;
}

.unique-title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.unique-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.unique-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: var(--bg-dark);
}

.unique-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.unique-content {
    flex: 1;
}

.unique-content h4 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.unique-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Gemstone Section - Elegant Box Design */
.gemstone-section {
    margin: 5rem 0 3rem;
}

.gemstone-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 20, 0.5) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.gemstone-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.gemstone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.gemstone-title-group {
    flex: 1;
}

.gemstone-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.gemstone-subtitle {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gemstone-logo {
    width: 120px;
    height: auto;
    opacity: 0.7;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.gemstone-container:hover .gemstone-logo {
    opacity: 1;
    filter: grayscale(0);
}

.gemstone-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gemstone-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.gemstone-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.gemstone-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.mentor-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.mentor-title {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.mentor-card {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.mentor-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.mentor-info h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.mentor-role {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.mentor-bio {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Interface Sections */
.interface-section {
    margin-bottom: 3rem;
}

.interface-title {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 2px solid var(--primary);
}

/* Team Grid - Horizontal Minimal Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.team-member {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    transition: var(--transition);
}

.team-member:hover {
    border-color: var(--primary);
    background: var(--bg-dark);
    transform: translateY(-2px);
}

.member-image {
    flex-shrink: 0;
}

.member-image img {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: var(--transition);
}

.team-member:hover .member-image img {
    filter: grayscale(0);
}

.member-details {
    flex: 1;
    min-width: 0;
}

.member-details h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.member-role {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.member-interface {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    display: none; /* Hide bio for minimal design */
}

/* Projects Section - Minimalist */
.projects {
    background: var(--bg-dark);
}

/* Interface Cards */
.interface-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.interface-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.interface-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(226, 24, 51, 0.1);
}

.interface-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.interface-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.interface-brief {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.interface-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.projects-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-primary);
}

.interface-project-section {
    background: var(--bg-card);
    border-left: 2px solid var(--primary);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.interface-project-title {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.project-highlights ul {
    list-style: none;
}

.project-highlights li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
}

.project-highlights li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Donation Section */
.donate-section {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    padding: 100px 0;
    text-align: center;
}

.donate-content {
    max-width: 800px;
    margin: 0 auto;
}

.donate-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.donate-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.donate-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.donate-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.donate-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.donate-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}


/* Project Timeline - Creative Design */
/* Simple Timeline */
.timeline-simple {
    margin-top: 4rem;
    padding: 3rem 0;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-block {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
}

/* Alternating layout */
.timeline-block:nth-child(even) {
    justify-content: flex-start;
    padding-right: 50%;
    padding-left: 2rem;
}

.timeline-block:nth-child(odd) {
    justify-content: flex-end;
    padding-left: 50%;
    padding-right: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    z-index: 2;
    transition: all 0.3s ease;
}

/* Season colors */
.timeline-block[data-season="fall"] .timeline-dot {
    background: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.timeline-block[data-season="spring"] .timeline-dot {
    background: #4ecdc4;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.2);
}

.timeline-dot.final {
    background: var(--accent);
    width: 24px;
    height: 24px;
    box-shadow: 0 0 0 4px rgba(255, 210, 0, 0.2);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-block:hover .timeline-content {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.timeline-block:hover .timeline-dot {
    transform: translateX(-50%) scale(1.2);
}

/* Arrow pointing to timeline */
.timeline-block:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent var(--bg-card);
}

.timeline-block:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent var(--bg-card) transparent transparent;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.timeline-season {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.timeline-block[data-season="fall"] .timeline-season {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
}

.timeline-block[data-season="spring"] .timeline-season {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-primary);
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-events {
    list-style: none;
}

.timeline-events li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.timeline-events li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Animation on scroll */
.timeline-block {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-block:nth-child(2) { animation-delay: 0.2s; }
.timeline-block:nth-child(3) { animation-delay: 0.4s; }
.timeline-block:nth-child(4) { animation-delay: 0.6s; }
.timeline-block:nth-child(5) { animation-delay: 0.8s; }

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-darker);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-secondary);
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.footer-subtitle {
    font-size: 0.95rem;
    color: var(--accent);
    margin: 0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--bg-darker);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        border-bottom: 1px solid var(--border);
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .mission-highlights,
    .donate-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mentor-card {
        flex-direction: column;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        padding: 1rem;
        gap: 1rem;
    }

    .member-image img {
        width: 60px;
        height: 60px;
    }

    .member-details h3 {
        font-size: 1rem;
    }

    .unique-grid {
        grid-template-columns: 1fr;
    }

    .unique-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .unique-number {
        font-size: 2rem;
    }

    .gemstone-container {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .gemstone-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .gemstone-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gemstone-logo {
        width: 65px;
    }
    
    /* Contact responsive */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Timeline Mini Design */
.timeline-mini {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-track {
    position: relative;
    padding: 2rem 0;
}

.timeline-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    transform: translateY(-50%);
}

.timeline-progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 15%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.timeline-points {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timeline-point::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 50%;
    order: 1;
}

.timeline-point.active::before {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(226, 24, 51, 0.5);
}

.point-year {
    font-size: 0.85rem;
    color: var(--text-muted);
    order: 0;
}

.point-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    order: 2;
}

.timeline-point.active .point-year,
.timeline-point.active .point-label {
    color: var(--primary);
    font-weight: 500;
}

.timeline-status {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.timeline-link {
    margin-top: 2rem;
    text-align: center;
}

.timeline-btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.timeline-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Old Compact Horizontal Timeline - Remove */
.timeline-compact {
    max-width: 800px;
    margin: 2rem auto;
}

.timeline-periods {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.period {
    flex: 1;
    text-align: center;
}

.period-arrow {
    color: var(--primary);
    opacity: 0.5;
    margin: 0 -10px;
}

.timeline-dots {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 0.8rem;
}

.timeline-dots::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.dot.current {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(226, 24, 51, 0.5);
    animation: pulse 2s infinite;
}

.dot.final {
    border-color: var(--accent);
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
}

.label {
    flex: 1;
    text-align: center;
    color: var(--text-muted);
}

.label.current {
    color: var(--primary);
    font-weight: 600;
}

.label.final {
    color: var(--accent);
}

.timeline-progress {
    margin: 2rem 0 1rem;
}

.progress-track {
    height: 4px;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-filled {
    height: 100%;
    width: 15%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    transition: width 2s ease;
}

.progress-label {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    padding: 0.65rem 1.8rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Compact timeline mobile */
    .timeline-periods {
        font-size: 0.7rem;
    }
    
    .period-arrow {
        display: none;
    }
    
    .timeline-progress {
        margin: 1rem 0;
    }
    
    /* Timeline mobile */
    .timeline-line {
        left: 20px;
    }

    .timeline-block:nth-child(even),
    .timeline-block:nth-child(odd) {
        padding-left: 60px;
        padding-right: 1rem;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-block:nth-child(even) .timeline-content::after,
    .timeline-block:nth-child(odd) .timeline-content::after {
        display: none;
    }

    .timeline-content {
        padding: 1.2rem;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}