/* Modern renk paleti */
:root {
    --primary: #0066FF;
    --primary-light: #4D9FFF;
    --primary-dark: #0047B3;
    --accent: #FF3366;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --text-dark: #111827;
    --text-light: #6B7280;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #0066FF, #4D9FFF);
}

/* Temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Modern Header */
header {
    background: var(--white);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Modern Hero Bölümü */
.hero {
    padding: 8rem 2rem 6rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(77, 159, 255, 0.05) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    position: relative;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Modern Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Modern Bölüm Başlıkları */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Modern Kartlar */
.card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Modern Footer */
footer {
    background: var(--white);
    padding: 2rem;
    border-top: 1px solid var(--gray-100);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.footer-bottom p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.developer-credit {
    color: var(--primary);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Kartlar */
.project-grid, .activity-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 1rem;
}

/* Faaliyet Kartları */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.activity-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.activity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.feature-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Animasyonlar */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.card-icon {
    animation: pulse 2s infinite;
}

/* Animasyonlar */
@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.project-card, .activity-card {
    animation: float 6s ease-in-out infinite;
    animation-delay: calc(var(--animation-order) * 0.2s);
}

/* Ürünler Bölümü */
.products {
    background: rgba(26, 26, 46, 0.8);
}

.coming-soon {
    background: rgba(77, 168, 218, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 168, 218, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.coming-soon:hover {
    transform: scale(1.02);
}

.timer {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4da8da;
    text-shadow: 0 0 10px rgba(77, 168, 218, 0.5);
    letter-spacing: 2px;
}

/* Modern İletişim Kartı */
.modern-contact-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--gray-100);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.modern-contact-card:hover .contact-icon {
    transform: rotate(0deg) scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--primary);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.contact-method:hover i {
    color: var(--white);
}

.contact-method a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-method:hover a {
    color: var(--white);
}

.social-media {
    text-align: center;
}

.social-media p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.social-button i {
    font-size: 1.5rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .modern-contact-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .social-buttons {
        flex-direction: column;
    }
    
    .social-button {
        width: 100%;
    }
}

/* Kurumsal Bölümü Kartları */
.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.about-card:hover .card-icon {
    transform: rotate(0deg) scale(1.1);
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.about-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-card:hover .card-decoration {
    transform: scaleX(1);
}

/* Proje Kartları */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.project-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    margin-bottom: 1rem;
}

.view-project {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: var(--white);
    color: var(--primary);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: var(--gray-50);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary);
}

/* Faaliyet Kartları */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.activity-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.activity-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-list {
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.feature-list i {
    color: var(--primary);
}

/* Proje Kartları için ek stiller */
.project-content {
    padding: 2rem;
    position: relative;
}

.tech-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.project-card:hover .tech-icon {
    transform: rotate(0deg) scale(1.1);
}

.tech-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Faaliyet Kartları için ek stiller */
.activity-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon {
    transform: rotate(0deg) scale(1.1);
}

.activity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.activity-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.activity-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Animasyonlar */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.project-card, .activity-card {
    animation: float 6s ease-in-out infinite;
    animation-delay: calc(var(--animation-order) * 0.2s);
}

/* Hover efektleri */
.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 1rem;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Sponsor Bölümü */
.sponsors {
    padding: 6rem 2rem;
    background: var(--white);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.sponsor-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.sponsor-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.sponsor-card:hover .sponsor-icon {
    transform: rotate(0deg) scale(1.1);
}

.sponsor-icon i {
    font-size: 2rem;
    color: var(--white);
}

.sponsor-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.sponsor-list {
    list-style: none;
}

.sponsor-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.sponsor-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Katılım Bölümü */
.join-us {
    padding: 6rem 2rem;
    background: var(--white);
}

.join-content {
    max-width: 1200px;
    margin: 0 auto;
}

.join-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.journey-text {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.opportunity-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.opportunity-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.opportunity-card .card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.opportunity-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.opportunity-card ul {
    list-style: none;
}

.opportunity-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.opportunity-card ul li i {
    color: var(--primary);
    margin-top: 0.3rem;
}

.areas-section {
    text-align: center;
}

.areas-section h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.area-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.area-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.area-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .lead-text {
        font-size: 1.3rem;
    }

    .journey-text {
        font-size: 1.1rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* Çok Yakında Stilleri */
.coming-soon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 500;
}

.coming-soon-badge i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.feature-list li i {
    color: var(--primary);
    opacity: 0.7;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.activity-content p {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Çok Yakında etiketi için stil */
.coming-soon-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    color: var(--white);
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    margin-top: 1rem;
}

/* Proje kartları için güncellenen stiller */
.project-content p {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
}

.project-tags {
    justify-content: center;
}

.coming-soon-badge {
    margin-top: 1.5rem;
    text-align: center;
}

/* İletişim başlığı için ek stil */
.contact-header {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
} 