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

:root {
    --primary-color: #8B0000;
    --primary-dark: #6B0000;
    --primary-light: #A00000;
    --secondary-color: #1a1a1a;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-dark: #1a1a1a;
    --accent-color: #f0f0f0;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #ffffff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='120' height='104' viewBox='0 0 120 104' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0L90 15v30L60 60 30 45V15z' fill='none' stroke='%238B0000' stroke-width='0.5' opacity='0.15'/%3E%3Cpath d='M0 52L30 37v30L0 82z' fill='none' stroke='%238B0000' stroke-width='0.5' opacity='0.15'/%3E%3Cpath d='M120 52L90 37v30l30 15z' fill='none' stroke='%238B0000' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 120px 104px;
    background-position: 0 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    display: block;
    height: 70px;
    width: auto;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-menu a.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 1rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.dropdown-menu a::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 140px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
    background: transparent;
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-image {
    width: auto;
    max-width: 350px;
    height: 500px;
    object-fit: contain;
    border-radius: 20px;
}

/* Page Hero (for non-home pages) */
.page-hero {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.02) 0%, rgba(255, 255, 255, 0.98) 50%, rgba(139, 0, 0, 0.01) 100%);
    position: relative;
    overflow: hidden;
}


.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: 40px 20px;
}

.directory-hero {
    padding-bottom: 30px;
}

.directory-content {
    padding-top: 20px;
}

.content-section {
    margin-bottom: 5rem;
}

.page-content .content-section {
    margin-bottom: 5rem;
}

.content-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Founders Benefits Grid */
.founders-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-box {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
}

.benefit-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.benefit-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .founders-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .page-subtitle[style*="white-space: nowrap"] {
        white-space: normal !important;
    }
}

/* Events Page Styles */
.event-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    min-height: 400px;
}

.event-item-reverse {
    direction: rtl;
}

.event-item-reverse > * {
    direction: ltr;
}

.event-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    color: var(--text-light);
    font-size: 1.1rem;
}

.event-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.event-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Section Styles */
section {
    padding: 40px 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: left;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Achievement Bar Section */
.achievement-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    padding: 2rem 20px;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.achievement-congrats {
    text-align: left;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 1;
}

.achievement-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.achievement-bar::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.achievement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.achievement-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.achievement-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.achievement-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: left;
}

/* Principles Section */
.principles {
    background: transparent;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.principles-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 1;
}

.principles-image-wrapper {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    align-items: start;
}

.principles-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.principles-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: fit-content;
}

.principle-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    text-align: left;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.principle-card:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.1);
    transform: translateX(8px);
}

.principle-card:hover::before {
    transform: scaleY(1);
}

.principle-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.principle-card h3 {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

/* Program Section */
.program {
    background: transparent;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.program .container {
    position: relative;
    z-index: 1;
}

.program-description {
    font-size: 1.15rem;
    text-align: left;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.7;
}

.program-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

.page-content .program-features {
    margin: 3rem 0 5rem 0;
}

.feature-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
}

.feature-item h3 {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.program-cta {
    margin-top: 2.5rem;
    padding: 2rem 2rem;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
}

.program-cta h3 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.program-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
}

/* Accelerator Page Specific Styles */
.accelerator-hero-image {
    padding: 0 20px 2rem;
    z-index: 1;
    position: relative;
}

.accelerator-hero-img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accelerator-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
    z-index: 1;
    position: relative;
}

.stat-card {
    background: white;
    padding: 1.5rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.1);
    transform: translateY(-2px);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.75rem;
}

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

.accelerator-image-section {
    margin: 2.5rem 0;
    z-index: 1;
    position: relative;
}

.accelerator-image-section .image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    color: var(--text-light);
    font-size: 1.1rem;
}

.demo-day-section {
    margin: 4rem 0;
    z-index: 1;
    position: relative;
}

.demo-day-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.demo-day-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.demo-day-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.demo-day-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.accelerator-image {
    width: 100%;
    max-width: 500px;
    max-height: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Sponsors Section */
.sponsors-section {
    background: var(--bg-secondary);
    padding: 60px 20px;
    text-align: center;
}

.sponsors-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.sponsors-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

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

.sponsor-logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 40px 20px;
    }
    
    .sponsors-grid {
        gap: 2rem;
        flex-direction: column;
    }
    
    .sponsor-item {
        width: 100%;
        max-width: 280px;
        padding: 1rem;
    }
    
    .sponsor-logo {
        max-height: 60px;
    }
}

/* Partners Section */
.partners {
    background: white;
    padding: 40px 20px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 0;
    margin-bottom: 3rem;
}

.partner-placeholder {
    background: var(--bg-secondary);
    padding: 4rem 2rem;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    color: var(--text-light);
    font-weight: 500;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.partner-placeholder:hover {
    border-color: var(--primary-color);
    background: white;
}

.partners-note {
    text-align: left;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.partners-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.partners-note a:hover {
    border-bottom-color: transparent;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
    padding: 60px 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    margin-top: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info h3 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    border-bottom-color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.social-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.social-links a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f0f 100%);
    color: white;
    padding: 4rem 20px 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 400px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: var(--bg-secondary);
        margin-top: 0;
        padding: 0;
        border-radius: 0;
    }

    .dropdown-menu a {
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .principles-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .principles-image-wrapper {
        order: 2;
        position: relative;
        top: 0;
    }
    
    .principles-image {
        aspect-ratio: 16/9;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        order: 1;
    }

    .event-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        min-height: auto;
    }

    .event-item-reverse {
        direction: ltr;
    }

    .event-image-placeholder {
        height: 250px;
    }
    
    .principle-card {
        padding: 2rem;
    }
    
    .program-features {
        grid-template-columns: 1fr;
    }

    .program-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .cta-links {
        flex-direction: column;
    }

    .cta-link {
        width: 100%;
        max-width: 300px;
    }

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

    .accelerator-hero-img {
        height: 300px;
    }

    .accelerator-image-section .image-placeholder {
        height: 250px;
    }

    .demo-day-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-day-image {
        order: -1;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Startup Directory Styles */
.startup-directory {
    max-width: 1200px;
    margin: 0 auto;
}

.directory-filters {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

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

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.startup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.startup-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.startup-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.15);
    transform: translateY(-2px);
}

.startup-card.hidden {
    display: none;
}

.startup-card-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.startup-logo {
    width: 140px;
    height: 140px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.startup-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
}

.startup-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
}

.startup-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.startup-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.startup-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.startup-cohort {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(139, 0, 0, 0.08);
    border-radius: 6px;
}

.startup-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.startup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
}

.startup-tags .tag {
    padding: 0.3rem 0.8rem;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.coming-soon-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: left;
}

.coming-soon-content {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.coming-soon-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .startup-grid {
        gap: 1.25rem;
    }
    
    .startup-card-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .startup-logo {
        width: 120px;
        height: 120px;
        min-width: 120px;
    }
    
    .startup-info {
        align-items: center;
    }
    
    .startup-header {
        justify-content: center;
    }
    
    .startup-name {
        font-size: 1.4rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .section-title,
    .section-subtitle {
        text-align: left;
    }
    
    .achievement-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .achievement-title {
        text-align: center;
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
}

@media (max-width: 768px) {
    .hero-visual {
        margin-top: 3rem;
    }
    
    .hero-image {
        max-width: 100%;
        height: 400px;
        border-radius: 20px;
    }
}

/* Form Container */
.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

/* Apply CTA Section */
.apply-cta-section {
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.apply-cta-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(139, 0, 0, 0.02) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.apply-cta-box:hover {
    box-shadow: 0 12px 32px rgba(139, 0, 0, 0.15);
    transform: translateY(-2px);
}

.apply-cta-box h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.apply-cta-box p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.3);
}

.btn-large:hover {
    box-shadow: 0 6px 24px rgba(139, 0, 0, 0.4);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .apply-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .apply-cta-box p {
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Fellow Roles Section */
.fellow-roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.fellow-role-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.fellow-role-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.1);
    transform: translateY(-2px);
}

.fellow-role-card h3 {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.role-responsibilities {
    margin-top: 1rem;
}

.role-responsibilities h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.role-responsibilities ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.role-responsibilities ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.role-responsibilities ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .fellow-roles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fellow-role-card {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}



