:root {
    /* Light mode */
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #b04aff;
    --accent2-color: #f25c4d;
    --accent3-color: #a275d3;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --bg-color: #F8FAFC;
    --bg-secondary: #f1f5f9;
    --text-primary: #121C2B;
    --text-secondary: #4B5563;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] {
    /* Dark mode */
    --primary-color: #3b82f6;
    --secondary-color: #1e40af;
    --accent-color: #8b5cf6;
    --accent2-color: #dd5d4a;
    --accent3-color: #c4b5fd;
    --success-color: #4ade80;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --bg-color: #0B1E3F;
    --bg-secondary: #121C2B;
    --text-primary: #F5F5F5;
    --text-secondary: #94A3B8;
    --border-color: #334155;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

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

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

.anka-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.anka-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    max-width: 800px;
    transition: transform 0.5s ease-out;
    will-change: transform;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-content {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* Tema bazlı görünürlük */
.anka-light {
    display: none;
}
[data-theme="dark"] .anka-light {
    display: inline;
}
[data-theme="dark"] .anka-dark {
    display: none;
}


/* Navigation Styles */
.navbar {
    background: var(--bg-color) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
    transition: opacity 0.5s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.logo {
    height: 70px;
    max-height: 100%;
}

.logo-light {
    display: none;
}
.logo-dark {
    display: inline;
}

[data-theme="dark"] .logo-light {
    display: inline;
}
[data-theme="dark"] .logo-dark {
    display: none;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 0.5rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: var(--accent2-color);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    height: 2px;
    width: 0;
    background-color: var(--accent2-color);;
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link.active {
    color: var(--accent2-color);
}

.navbar-nav .nav-link.active::after {
    width: 100%;
    background-color: var(--accent2-color);
}


.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

[data-theme="dark"] .theme-toggle {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--accent2-color);
    color: white;
    transform: scale(1.1);
}

.button {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

[data-theme="dark"] .button {
    background: var(--bg-color);
    color: var(--text-primary);
}

.button:hover {
    background: var(--accent2-color);
    color: white;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right bottom,
    var(--bg-secondary) 0%,
    var(--accent2-color) 30%,
    var(--primary-color) 90%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    background-size: 180% 180%;
    animation: heroGradientShift 12s ease-in-out infinite;
}

[data-theme="dark"] .hero {
    background: linear-gradient(to right bottom,
        #a3776f 0%,     /* koyu kül */
        #c2362e 30%,    /* koyu alev */
        #1e4dcc 90%);   /* koyu phoenix mavi */
    background-size: 180% 180%;
    animation: heroGradientShift 10s ease-in-out infinite;
}

@keyframes heroGradientShift {
  0%, 100% { background-position: left top; }
  50% { background-position: right bottom; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background-size: 300px 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;

    animation: emberFloat 10s ease-in-out infinite;
    pointer-events: none;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 70% 30%, rgba(255, 80, 80, 0.08) 0%, transparent 60%);
  animation: pulseBackground 6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulseBackground {
  0%, 100% { opacity: 0.05; }
  50% { opacity: 0.12; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.9rem;
    font-weight: bolder;
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    background: var(--text-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--bg-color);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 450;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn i {
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.btn:hover i.fa-arrow-right {
  transform: translateX(5px);
}

.btn-primary-color {
    background: #0B1E3F;
    color: white;
    border: 1px solid var(--border-color);
}

.btn-primary-color:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-color);
    background: #0B1E3F;
    color: white;
    border: 2px solid #0B1E3F;
}

.btn-outline-color {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline-color:hover {
    transform: translateY(-2px);
    background: #0B1E3F;
    color: white;
    border-color: #0B1E3F;
    box-shadow: 0 10px 25px var(--shadow-color);
}

/* Features Section */
.phoenix-features {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.phoenix-features::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.phoenix-feature-card {
    background: var(--bg-color);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 25px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.phoenix-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.phoenix-feature-card:hover::before {
    opacity: 0.05;
}

.phoenix-feature-card:hover {
    transform: translateY(-15px);
    border-color: #0B1E3F;
    box-shadow: 0 20px 50px rgba(38, 56, 220, 0.2);
}

.phoenix-feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.phoenix-feature-card:hover .phoenix-feature-icon {
    transform: scale(1.1);
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
}

.phoenix-feature-card h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.phoenix-feature-card strong {
    color: var(--text-secondary);
    font-size: 0.90rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; /* veya 200px gibi bir değer */
    display: inline-block;

}

.phoenix-feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.phoenix-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.phoenix-section-title h2 {
    font-size: 3rem;
    font-weight: bold;
    background: var(--accent2-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: var(--accent3-color);
}

.phoenix-section-title .flame-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--text-primary));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    text-shadow: var(--accent3-color);
}

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

/* Stats Section - Rising Numbers */
.stats {
    background: var(--bg-color);
    color: white;
    padding: 4rem 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.stats::before {
    content: '';
    position: absolute;
    background: var(--bg-secondary);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    background: var(--accent2-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Carousel Section */

.carousel-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.carousel-wrapper {
    background: var(--bg-color);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.05;
    z-index: 1;
}

.carousel-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--shadow-color);
}

.carousel {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item img {
    border-radius: 20px;
    transition: transform 0.3s ease;
    transform: scale(1.02);
}

.img-dark {
    display: none;
}
[data-theme="dark"] .img-dark {
    display: inline;
}
[data-theme="dark"] .img-light {
    display: none;
}

.carousel-item:hover img {
    transform: scale(1.04);
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: var(--shadow-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Custom Carousel Indicators */
.carousel-indicators {
    margin-bottom: -2rem;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--text-secondary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

/* Carousel Responsive Design */
@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
}

/* Join Process Section */
.join {
    padding: 5rem 0;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.join::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0B1E3F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

[data-theme="dark"] .step-number{
    background: var(--accent2-color)
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    background: var(--bg-secondary);
    padding: 5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--bg-color);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 25px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.benefit-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.benefit-item:hover {
    transform: translateY(-15px);
    border-color: var(--accent2-color);
    box-shadow: 0 20px 50px rgba(38, 56, 220, 0.2);
    transform: scale(1.1);
}

[data-theme="dark"] .benefit-item:hover{
    border-color: #0B1E3F;
}

.benefit-item:hover::before {
    opacity: 0.05;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-item h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Journey Section */

.journey-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    opacity: 0.6;
    animation: journeyFloat 10s ease-in-out infinite;
}

@keyframes journeyFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Journey Step Cards */
.journey-step {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.journey-step:hover {
    transform: translateY(-10px);
}

/* Journey Icons */
.journey-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--shadow-color);
    background: linear-gradient(135deg, #f87171, #dd5d4a);
}

.journey-step:hover .journey-icon {
    transform: scale(1.1) rotate(5deg);
    animation: iconSpark 0.6s ease-in-out;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

/* Icon pulse effect */
.journey-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.journey-step h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.journey-step p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 250px;
    margin: 0 auto;
}

/* Journey Responsive Design */
@media (max-width: 768px) {
    .journey-icon {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .journey-step h4 {
        font-size: 1.3rem;
    }
    
    .journey-step p {
        font-size: 1rem;
        max-width: 280px;
    }
    
    .journey-connections {
        display: none;
    }
    
    .journey-step {
        margin-bottom: 4rem;
    }
}

/* CTA Section - Call to Rise */
.phoenix-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color), var(--primary-color));
    padding: 6rem 0;
    text-align: center;
    color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.phoenix-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.phoenix-cta {
    background: linear-gradient(to right bottom,
    var(--bg-secondary) 0%,
    var(--accent2-color) 30%,
    var(--primary-color) 90%);
    padding: 6rem 0;
    text-align: center;
    color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    background-size: 180% 180%;
    animation: heroGradientShift 12s ease-in-out infinite;
}

[data-theme="dark"] .phoenix-cta {
    background: linear-gradient(to right bottom,
        #a3776f 0%,     /* koyu kül */
        #c2362e 30%,    /* koyu alev */
        #1e4dcc 90%);   /* koyu phoenix mavi */
    background-size: 180% 180%;
    animation: heroGradientShift 10s ease-in-out infinite;
}

@keyframes heroGradientShift {
  0%, 100% { background-position: left top; }
  50% { background-position: right bottom; }
}

.phoenix-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

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

.phoenix-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 70% 30%, rgba(255, 80, 80, 0.08) 0%, transparent 60%);
  animation: pulseBackground 6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulseBackground {
  0%, 100% { opacity: 0.05; }
  50% { opacity: 0.12; }
}

.phoenix-cta h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--text-primary);
}

.phoenix-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    color: var(--bg-secondary);
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn i {
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.btn:hover i.fa-arrow-right {
  transform: translateX(5px);
}

/* -------------------------- About Page ----------------------- */

/* About Hero Section */

.about-page-section {
    background: linear-gradient(to right bottom,
    var(--bg-secondary) 0%,
    var(--accent2-color) 30%,
    var(--primary-color) 90%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
    border-bottom: 1px solid var(--border-color);
    animation: aboutGradientShift 12s ease-in-out infinite;
    background-size: 180% 180%;
}

[data-theme="dark"] .about-page-section {
    background: linear-gradient(to right bottom,
        #a3776f 0%,     /* koyu kül */
        #c2362e 30%,    /* koyu alev */
        #1e4dcc 90%);   /* koyu phoenix mavi */
    background-size: 180% 180%;
    animation: aboutGradientShift 10s ease-in-out infinite;
}

@keyframes aboutGradientShift {
  0%, 100% { background-position: left top; }
  50% { background-position: right bottom; }
}

.about-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background-size: 300px 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.about-page-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-page-section h1 {
    font-size: 2.9rem;
    font-weight: bolder;
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    background: var(--text-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.about-page-section .about-lead {
    font-size: 1.1rem;
    color: var(--bg-color);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 450;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.about-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.about-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.about-card h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* Vision Mission Section */
.vision-mission {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.vision-mission::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.vm-card {
    background: var(--bg-color);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.vm-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.vm-card:hover {
    transform: translateY(-15px);
    border-color: #0B1E3F;
    box-shadow: 0 20px 50px rgba(38, 56, 220, 0.2);
}

.vm-card:hover::before {
    opacity: 0.05;
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon {
    transform: scale(1.1);
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
}

.vm-card h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.vm-card strong {
    color: var(--text-secondary);
    font-size: 0.90rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 100%; /* veya 200px gibi bir değer */
    display: inline-block;
}

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

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.team-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

/* Profile Card */
.profile-card {
    background: var(--bg-color);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 25px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.profile-card:hover::before {
    opacity: 0.05;
}

.profile-card:hover {
    transform: translateY(-15px);
    border-color: #0B1E3F;
    box-shadow: 0 20px 50px rgba(38, 56, 220, 0.2);
    background: var(--bg-secondary);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.profile-card:hover .profile-avatar {
    transform: scale(1.1);
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
}

.profile-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.7rem;
    position: relative;
    z-index: 2;
}

.profile-role {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.values-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.value-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px var(--shadow-color);
    border-left: 4px solid var(--accent2-color);
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.value-item h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.value-item h5 i {
    margin-right: 1rem;
    width: 25px;
}

.value-item strong {
    color: var(--text-secondary);
    font-size: 0.90rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; /* veya 200px gibi bir değer */
    display: inline-block;
}

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

/* Rising From Ashes Section */
.rising-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.rising-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.phoenix-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.phoenix-visual {
    width: 200px;
    height: 200px;
    margin: 0 auto 3rem;
    position: relative;
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phoenixPulse 3s ease-in-out infinite;
}

@keyframes phoenixPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(242, 92, 77, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(242, 92, 77, 0.5);
    }
}

.phoenix-visual i {
    font-size: 4rem;
    color: white;
    animation: phoenixFlicker 2s ease-in-out infinite;
}

@keyframes phoenixFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.phoenix-visual::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent2-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: phoenixRing 4s linear infinite;
}

@keyframes phoenixRing {
    0% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    100% { transform: rotate(360deg) scale(1.1); opacity: 0; }
}

.phoenix-quote {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Coming Soon Cards */
.coming-soon-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.project-preview-card {
    background: var(--bg-color);
    border: 2px dashed var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 25px var(--shadow-color);
    position: relative;
    overflow: hidden;
    opacity: 0.7;
}

.project-preview-card:hover {
    opacity: 1;
    transform: translateY(-10px);
    border-color: var(--text-primary);
    box-shadow: 0 20px 50px rgba(242, 92, 77, 0.2);
    background: var(--bg-secondary);
}

.project-preview-card:hover::before {
    opacity: 0.05;
}

.project-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.project-preview-card:hover .project-icon {
    transform: scale(1.1);
    animation: iconSpark 0.6s ease-in-out;
}

@keyframes iconSpark {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 10px rgba(242, 92, 77, 0.8)); }
}

.project-preview-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.project-preview-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.project-status {
    position: relative;
    z-index: 2;
    padding: 0.5rem 1rem;
    background: #0B1E3F;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    animation: statusGlow 2s ease-in-out infinite;
}

@keyframes statusGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(242, 92, 77, 0.3); }
    50% { box-shadow: 0 0 20px rgba(242, 92, 77, 0.6); }
}

.project-preview-card strong{
    color: var(--text-secondary);
    font-size: 0.90rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; /* veya 200px gibi bir değer */
    display: inline-block;
}

/* Educator Call Section */
.educator-call {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.educator-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent2-color), var(--primary-color), var(--accent-color));
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1%, transparent 70%),url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\<circle cx="20" cy="80" r="2" fill="%23f97316" opacity="0.6">\<animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle>\<circle cx="80" cy="70" r="1.5" fill="%23bfa6a2" opacity="0.7">\<animate attributeName="cy" values="70;10;70" dur="5s" repeatCount="indefinite"/></circle>\<circle cx="50" cy="90" r="1" fill="%232563eb" opacity="0.8">\<animate attributeName="cy" values="90;30;90" dur="3s" repeatCount="indefinite"/></circle>\</svg>') repeat;
    animation: emberFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.educator-card {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.educator-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-primary);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.educator-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.educator-card:hover .educator-icon {
    transform: scale(1.1);
}

.educator-card h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

/* Footer */
.footer {
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 2rem;
}

.footer h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer p, .footer a {
    color: var(--text-primary);
    text-decoration: none;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--bg-color);;
    color: var(--text-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: var(--accent2-color);
    color: var(--bg-secondary);
}

[data-theme="dark"] .social-links a {
    background: var(--bg-color);
    color: var(--text-primary);
}

[data-theme="dark"] .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: var(--accent2-color);
    color: var(--text-primary);
}

.phoenix-message{
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-link {
    color: var(--accent2-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Contact Form Section */

.contact-form-container {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px var(--shadow-color);
    position: relative;
    z-index: 2;
}

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

.form-header h3 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent2-color);
    box-shadow: 0 0 0 3px rgba(242, 92, 77, 0.1);
    background: var(--bg-color);
    color: var(--text-secondary);
}

.form-select {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-select:focus{
    outline: none;
    border-color: var(--accent2-color);
    box-shadow: 0 0 0 3px rgba(242, 92, 77, 0.1);
    background: var(--bg-color);
    color: var(--text-secondary);
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-check {
    margin-left: 0.4rem;
    background: var(--bg-color);
    border-radius: 12px;
}

.form-check-input {
    width: 20px;
    height: 20px;
}

.form-check-label {
    color: var(--text-secondary);
    margin-left: 0.7rem;
    line-height: 1.6;
    cursor: pointer;
}

.form-check-label a {
    color: var(--accent2-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

/* FAQ Section */
.accordion-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.accordion-button {
    background: var(--bg-color);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    font-size: 1.1rem;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--accent2-color);
    color: white;
}

.accordion-body {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 1.5rem;
    line-height: 1.7;
}

.response-card {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px var(--shadow-color);
    position: relative;
    z-index: 2;
    text-align: center;
}

.response-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.response-card h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.response-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.response-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.response-stats .stat {
    text-align: center;
}

.response-stats .stat-number {
    font-size: 3rem;
    font-weight: bolder;
    color: var(--accent2-color);
    display: block;
}

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

.privacy-section {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-color);
    border-color: var(--text-primary);
}

.section-title {
    display: flex;
    align-items: center; /* ikon ve yazıyı aynı hizada tutar */
    gap: 12px; /* ikon ve yazı arasındaki boşluk */
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    margin-right: 1rem; /* ikon ve başlık arasındaki boşluk */
}

.privacy-section:hover .section-icon {
    transform: scale(1.1);
}

.privacy-section h2 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.privacy-section h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    margin-top: 2rem;
}

.privacy-section p, .privacy-section li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    padding-left: 1.5rem;
}

.phoenix-section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.phoenix-section-title h2 {
    font-size: 3rem;
    font-weight: bold;
    background: var(--accent2-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.security-highlight {
    background: linear-gradient(135deg, var(--accent2-color)10, var(--primary-color)10);
    border: 2px solid var(--accent2-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.security-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent2-color);
    opacity: 0.05;
    border-radius: 10px;
}

.contact-section {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-section:hover {
    transform: translateY(-5px);
    border-color: var(--text-primary);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0B1E3F, var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.contact-section:hover .contact-icon {
    transform: scale(1.1);
}

/* Error Content */
.error-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    top: 75px;
}

.error-number {
    font-size: 12rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
    line-height: 0.8;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--text-primary), var(--accent2-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(242, 92, 77, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(242, 92, 77, 0.6));
    }
}

.error-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    background: var(--text-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.error-description {
    font-size: 1.1rem;
    color: var(--bg-color);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 450;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.1rem;
    }

    .btn-custom {
        display: block;
        text-align: center;
        margin: 10px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .about-card,
    .vm-card,
    .profile-card {
        padding: 2rem;
    }

    .profile-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}