/* 
 * Güneşin Oğlu - Website Styles
 * Ana Site + Proje Detay Sayfası CSS
 * Siyah-Turuncu Tema
 */


/* ===================================
   GENEL STILLER
   =================================== */

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

:root {
    --primary: #ff6b00;
    --primary-dark: #e55f00;
    --dark: #0a0a0a;
    --dark-2: #1a1a1a;
    --dark-3: #2a2a2a;
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --text-primary: #0a0a0a;
    --text-secondary: #666;
    --border: #e5e5e5;
}

[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #999;
    --border: #2a2a2a;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}


/* ===================================
   NAVBAR
   =================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-badge {
    background: var(--primary);
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

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

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

.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--primary);
}


/* ===================================
   HERO SLIDER
   =================================== */

.hero-slider {
    margin-top: 60px;
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 4rem;
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%);
}

.slide.active {
    opacity: 1;
}

.slide-1,
.slide-2,
.slide-3 {
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
}

.slide-content {
    text-align: left;
    color: white;
    padding: 2rem 0;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.slide-content h1 .highlight {
    color: var(--primary);
}

.slide-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 500px;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
}

.slide-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
}

.visual-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.visual-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.visual-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.visual-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.stat-box-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.visual-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.mini-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* Slider Controls */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

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

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

.dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}


/* ===================================
   BUTONLAR
   =================================== */

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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


/* ===================================
   STATS BANNER
   =================================== */

.stats {
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ===================================
   SECTION
   =================================== */

section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

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


/* ===================================
   FEATURE CARDS
   =================================== */

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

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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


/* ===================================
   PROJECT CARDS
   =================================== */

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

.project-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.project-header {
    padding: 0;
    background: var(--dark);
    color: white;
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.project-year {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    z-index: 1;
}

.project-content {
    padding: 1.5rem;
}

.project-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

.project-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--primary-dark);
}


/* ===================================
   SPONSORS SHOWCASE (ORBIT)
   =================================== */

.sponsors-showcase {
    padding: 6rem 2rem;
    background: var(--bg-primary);
    overflow: hidden;
}

.sponsors-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sponsors-orbit {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 4rem auto;
}

.sun-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255, 107, 0, 0.4);
    z-index: 10;
    animation: sunPulse 3s ease-in-out infinite;
}

@keyframes sunPulse {
    0%,
    100% {
        box-shadow: 0 0 60px rgba(255, 107, 0, 0.4);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(255, 107, 0, 0.6);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.sun-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.sun-text {
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    text-align: center;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(255, 107, 0, 0.2);
    border-radius: 50%;
    animation: rotateOrbit 60s linear infinite;
}

.orbit-ring-1 {
    width: 400px;
    height: 400px;
}

.orbit-ring-2 {
    width: 520px;
    height: 520px;
    animation-duration: 80s;
    animation-direction: reverse;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.sponsor-planet {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
}

.sponsor-planet-inner {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 1rem;
}

.sponsor-planet-inner:hover {
    background: var(--bg-card);
    border-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sponsor-logo {
    font-size: 2rem;
}

.sponsor-name-small {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.2;
}


/* Sponsor Orbits */

.sponsor-planet-1 {
    animation: orbit1 30s linear infinite;
}

.sponsor-planet-2 {
    animation: orbit2 30s linear infinite;
}

.sponsor-planet-3 {
    animation: orbit3 30s linear infinite;
}

.sponsor-planet-4 {
    animation: orbit4 30s linear infinite;
}

.sponsor-planet-5 {
    animation: orbit5 40s linear infinite reverse;
}

.sponsor-planet-6 {
    animation: orbit6 40s linear infinite reverse;
}

.sponsor-planet-7 {
    animation: orbit7 40s linear infinite reverse;
}

.sponsor-planet-8 {
    animation: orbit8 40s linear infinite reverse;
}

@keyframes orbit1 {
    from {
        transform: rotate(0deg) translateX(200px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(200px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(90deg) translateX(200px) rotate(-90deg);
    }
    to {
        transform: rotate(450deg) translateX(200px) rotate(-450deg);
    }
}

@keyframes orbit3 {
    from {
        transform: rotate(180deg) translateX(200px) rotate(-180deg);
    }
    to {
        transform: rotate(540deg) translateX(200px) rotate(-540deg);
    }
}

@keyframes orbit4 {
    from {
        transform: rotate(270deg) translateX(200px) rotate(-270deg);
    }
    to {
        transform: rotate(630deg) translateX(200px) rotate(-630deg);
    }
}

@keyframes orbit5 {
    from {
        transform: rotate(45deg) translateX(260px) rotate(-45deg);
    }
    to {
        transform: rotate(405deg) translateX(260px) rotate(-405deg);
    }
}

@keyframes orbit6 {
    from {
        transform: rotate(135deg) translateX(260px) rotate(-135deg);
    }
    to {
        transform: rotate(495deg) translateX(260px) rotate(-495deg);
    }
}

@keyframes orbit7 {
    from {
        transform: rotate(225deg) translateX(260px) rotate(-225deg);
    }
    to {
        transform: rotate(585deg) translateX(260px) rotate(-585deg);
    }
}

@keyframes orbit8 {
    from {
        transform: rotate(315deg) translateX(260px) rotate(-315deg);
    }
    to {
        transform: rotate(675deg) translateX(260px) rotate(-675deg);
    }
}


/* ===================================
   PRICING CARDS
   =================================== */

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

.pricing-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    background: var(--dark);
    color: white;
    transform: scale(1.03);
}

.pricing-badge {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-badge {
    background: var(--primary);
    color: white;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-period {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
}


/* ===================================
   TEAM CARDS
   =================================== */

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

.team-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.team-avatar {
    height: 240px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}

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

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-dept {
    color: var(--text-secondary);
    font-size: 0.875rem;
}


/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 3rem 2rem;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ===================================
   FOOTER
   =================================== */

footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}


/* ===================================
   PROJE DETAY SAYFASI
   =================================== */

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--primary);
}

.project-hero {
    margin-top: 60px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-text h1 .highlight {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.meta-icon {
    font-size: 1.25rem;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.main-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.content-section ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-section ul li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.content-section ul li::before {
    content: '→';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

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

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

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.awards {
    background: var(--primary);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.awards h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.awards p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.related-projects {
    background: var(--bg-secondary);
    padding: 4rem 2rem;
}

.related-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.related-header h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

.related-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.related-image {
    height: 180px;
    overflow: hidden;
}

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

.related-content {
    padding: 1.5rem;
}

.related-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.related-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.visual-icon,
.sun-icon,
.menu-icon,
.stat-icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif !important;
}


/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .hero-content,
    .content-section {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .feature-grid,
    .project-grid,
    .team-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .slide {
        grid-template-columns: 1fr;
        padding: 2rem;
        text-align: center;
    }
    .slide-content {
        text-align: center;
    }
    .slide-content h1 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    .slide-visual {
        display: none;
    }
    .section-title {
        font-size: 2rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .feature-grid,
    .project-grid,
    .pricing-grid,
    .team-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .slider-arrow.prev {
        left: 1rem;
    }
    .slider-arrow.next {
        right: 1rem;
    }
    .sponsors-orbit {
        width: 350px;
        height: 350px;
    }
    .sun-center {
        width: 120px;
        height: 120px;
    }
    .sun-icon {
        font-size: 2.5rem;
    }
    .sun-text {
        font-size: 0.875rem;
    }
    .orbit-ring-1 {
        width: 240px;
        height: 240px;
    }
    .orbit-ring-2 {
        width: 300px;
        height: 300px;
    }
    .sponsor-planet {
        width: 70px;
        height: 70px;
        margin: -35px 0 0 -35px;
    }
    .sponsor-logo {
        font-size: 1.5rem;
    }
    .sponsor-name-small {
        font-size: 0.6rem;
    }
    @keyframes orbit1 {
        from {
            transform: rotate(0deg) translateX(120px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
        }
    }
    @keyframes orbit2 {
        from {
            transform: rotate(90deg) translateX(120px) rotate(-90deg);
        }
        to {
            transform: rotate(450deg) translateX(120px) rotate(-450deg);
        }
    }
    @keyframes orbit3 {
        from {
            transform: rotate(180deg) translateX(120px) rotate(-180deg);
        }
        to {
            transform: rotate(540deg) translateX(120px) rotate(-540deg);
        }
    }
    @keyframes orbit4 {
        from {
            transform: rotate(270deg) translateX(120px) rotate(-270deg);
        }
        to {
            transform: rotate(630deg) translateX(120px) rotate(-630deg);
        }
    }
    @keyframes orbit5 {
        from {
            transform: rotate(45deg) translateX(150px) rotate(-45deg);
        }
        to {
            transform: rotate(405deg) translateX(150px) rotate(-405deg);
        }
    }
    @keyframes orbit6 {
        from {
            transform: rotate(135deg) translateX(150px) rotate(-135deg);
        }
        to {
            transform: rotate(495deg) translateX(150px) rotate(-495deg);
        }
    }
    @keyframes orbit7 {
        from {
            transform: rotate(225deg) translateX(150px) rotate(-225deg);
        }
        to {
            transform: rotate(585deg) translateX(150px) rotate(-585deg);
        }
    }
    @keyframes orbit8 {
        from {
            transform: rotate(315deg) translateX(150px) rotate(-315deg);
        }
        to {
            transform: rotate(675deg) translateX(150px) rotate(-675deg);
        }
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .main-content {
        padding: 2rem;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
}