:root {
    --color-primary: #2977ff;
    --color-secondary: #6d4dff;
    --color-tertiary: #3bde97;
    --color-accent: #00b0f0;
    --color-text-dark: #0b1b37;
    --color-text-light: #ffffff;
    --color-text-gray: #666666;
    --color-bg-light: #ffffff;
    --color-bg-offwhite: #f5f6fa;
    --color-bg-dark: #0b1b37;
    --border-color: #e0e2eb;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
}

.page-wrapper {
    max-width: 1690px;
    margin: 0 auto;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    scroll-margin-top: 80px;
    /* navbar yüksekliğine göre ayarla */
}


.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(178deg, var(--color-primary) 0%, var(--color-accent) 1459.25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-text-gray);
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 48px;
    }
}

/* CSS for section section:header */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(245, 246, 250, 0.95);
    border-bottom: 1px solid rgba(76, 76, 76, 0.513);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.navbar {
    padding: 0 !important;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-brand span {
    font-size: 1.2rem;
    margin-top: 16px;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--color-text-dark);
        border-radius: 2px;
    }

    .logo-text {
        display: none;
    }
}

/* CSS for section section:hero */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 790px;
    padding: 0px 24px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(41, 119, 255, 0.05) 0%, #f5f6fa 100%);
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 50px;
}

.hero-title {
    font-size: clamp(1.8rem, 7vw, 5.5rem);
    font-weight: 700;
    background: linear-gradient(175deg, #2977ff 0%, #00b0f0 585.89%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
	margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 600;
    color: var(--color-secondary);
	margin-bottom: 20px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-gray);
    max-width: 800px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(165deg, #2977ff 0%, #00b0f0 246.32%);
    color: var(--color-text-light);
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 24px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(41, 119, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-primary);
    border-radius: 9999px;
}

.scroll-indicator-box {
    width: 4px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 9999px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 18px;
        opacity: 0.5;
    }

    100% {
        top: 8px;
        opacity: 1;
    }
}

/* CSS for section section:manifesto */
.manifesto-section {
    padding: 100px 0;
    background-color: rgba(245, 246, 250, 0.3);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.manifesto-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.manifesto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(179deg, #2977ff 0%, #00b0f0 5391.86%);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(41, 119, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.card-icon-wrapper img {
    width: 24px;
    height: 24px;
}

.card-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(90deg, #2977ff 0%, #6d4dff 100%);
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manifesto-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.manifesto-card p {
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.manifesto-summary {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-gray);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:journey */
.journey-section {
    padding: 100px 0;
    background-color: var(--color-bg-offwhite);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2977ff 0%, #6d4dff 50%, #3bde97 100%);
    opacity: 0.3;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item-left {
    left: 0;
    text-align: right;
}

.timeline-item-right {
    left: 50%;
}

.timeline-card {
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(1px);
    position: relative;
}

.timeline-item-left .timeline-card {
    text-align: right;
}

.timeline-item-right .timeline-card {
    text-align: left;
}

.timeline-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    /* ikon ile başlık arası boşluk */
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

/* Sol tarafta ikon sağda */
.timeline-item-left .timeline-card h3 {
    flex-direction: row;
    justify-content: flex-end;
}

/* Sağ tarafta ikon solda */
.timeline-item-right .timeline-card h3 {
    flex-direction: row;
    justify-content: flex-start;
}

.timeline-card h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.timeline-card p {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.timeline-card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seeker-icon {
    background-color: #eff6ff;
}

.pathfinder-icon {
    background-color: #faf5ff;
}

.explorer-icon {
    background-color: #f0fdf4;
}

.odyssey-icon {
    background-color: #fefce8;
}

.mentorship-icon {
    background-color: #fdf4ff;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2977ff 0%, #6d4dff 141.42%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-light);
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.timeline-item-left .timeline-dot {
    right: -32px;
}

.timeline-item-right .timeline-dot {
    left: -32px;
}

.journey-summary-card {
    max-width: 672px;
    margin: 0 auto;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(1px);
    text-align: center;
}

.journey-summary-card h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(177deg, #2977ff 0%, #6d4dff 998.26%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 16px;
}

.journey-summary-card p {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 32px;
    }

    .timeline-item,
    .timeline-item-right {
        width: 100%;
        left: 0;
        padding-left: 80px;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .timeline-item-left .timeline-card,
    .timeline-item-right .timeline-card {
        text-align: left;
    }

    .timeline-dot,
    .timeline-item-left .timeline-dot,
    .timeline-item-right .timeline-dot {
        left: 0;
    }

    .timeline-card-icon-wrapper {
        display: none;
    }

    .timeline-item-left .timeline-card h3 {
        justify-content: flex-start;
    }
}

/* CSS for section section:comparison */
.comparison-section {
    padding: 100px 0;
    background-color: var(--color-bg-offwhite);
}

.comparison-table {
    max-width: 1152px;
    margin: 0 auto 80px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.table-header {
    background: linear-gradient(90deg, #2977ff 0%, #6d4dff 100%);
    color: var(--color-text-light);
}

.header-cell {
    padding: 24px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cell:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.table-row {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--border-color);
}

.table-row:nth-child(odd) {
    background-color: #f5f6fa;
}

.row-label,
.cell {
    padding: 24px;
}

.row-label {
    font-weight: 500;
    color: var(--color-text-dark);
}

.cell {
    color: var(--color-text-gray);
    border-left: 1px solid var(--border-color);
}

.cell-way {
    color: var(--color-primary);
    font-weight: 500;
}

.comparison-summary-card {
    max-width: 768px;
    margin: 0 auto;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(1px);
    text-align: center;
}

.comparison-summary-card h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(177deg, #2977ff 0%, #00b0f0 1148.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 16px;
}

.comparison-summary-card p {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .comparison-table {
        display: block;
        border: none;
        border-radius: 0;
    }

    .table-header {
        display: none;
    }

    .table-row {
        display: block;
        margin-bottom: 16px;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        overflow: hidden;
    }

    .row-label,
    .cell {
        grid-column: span 3;
        border-left: none;
        padding: 12px 16px;
    }

    .row-label {
        background-color: #e9ecef;
    }

    .cell:nth-of-type(2)::before {
        content: 'Geleneksel: ';
        font-weight: 600;
    }

    .cell:nth-of-type(3)::before {
        content: 'W.A.Y.: ';
        font-weight: 600;
    }

    .cell:nth-of-type(3) {
        border-top: 1px dashed var(--border-color);
    }
}

/* CSS for section section:philosophy */
.philosophy-section {
    padding: 100px 0;
    background: linear-gradient(140deg, #6d4dff 0%, #3bde97 143.09%);
    overflow: hidden;
}

.philosophy-title {
    font-size: 48px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 24px;
}

.philosophy-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px;
    line-height: 1.5;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.philosophy-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
    z-index: -1;
}

.philosophy-card:nth-child(1)::before {
    background: linear-gradient(145deg, #ef4444 0%, #f97316 143.75%);
}

.philosophy-card:nth-child(2)::before {
    background: linear-gradient(145deg, #3b82f6 0%, #06b6d4 143.75%);
}

.philosophy-card:nth-child(3)::before {
    background: linear-gradient(145deg, #a855f7 0%, #ec4899 143.75%);
}

.philosophy-card:nth-child(4)::before {
    background: linear-gradient(145deg, #22c55e 0%, #14b8a6 143.59%);
}

.philosophy-card:nth-child(5)::before {
    background: linear-gradient(145deg, #eab308 0%, #f97316 143.59%);
}

.philosophy-card:nth-child(6)::before {
    background: linear-gradient(145deg, #6366f1 0%, #a855f7 143.59%);
}


.p-card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.p-card-icon-wrapper.red {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 141.42%);
}

.p-card-icon-wrapper.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 141.42%);
}

.p-card-icon-wrapper.purple {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 141.42%);
}

.p-card-icon-wrapper.green {
    background: linear-gradient(135deg, #22c55e 0%, #14b8a6 141.42%);
}

.p-card-icon-wrapper.yellow {
    background: linear-gradient(135deg, #eab308 0%, #f97316 141.42%);
}

.p-card-icon-wrapper.indigo {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 141.42%);
}

.philosophy-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    min-height: 56px;
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.philosophy-summary-card {
    max-width: 896px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    text-align: center;
}

.philosophy-summary-card h3 {
    font-size: 30px;
    color: #fde047;
    margin-bottom: 16px;
}

.philosophy-summary-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto 40px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #fde047;
    line-height: 1.2;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .philosophy-title {
        font-size: 36px;
    }

    .philosophy-subtitle {
        font-size: 18px;
        margin-bottom: 48px;
    }

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

/* CSS for section section:research */
.research-section {
  padding: 100px 0;
  background-color: var(--color-bg-offwhite);
}

/* Swiper ile uyum */
.research-slider {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0;
}

.swiper-slide {
  height: auto;
}

.research-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  backdrop-filter: blur(1px);
  height: 100%;
}

.research-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(41, 119, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.research-icon-wrapper img {
  width: 24px;
  height: 24px;
}

.research-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.research-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.research-content p {
  font-size: 16px;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.research-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.research-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.research-card.active .research-more {
  max-height: 1500px;
  opacity: 1;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(164deg, #2977ff 0%, #00b0f0 229.24%);
  color: var(--color-text-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(41, 119, 255, 0.2);
}

@media (max-width: 768px) {
  .research-card {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* CSS for section section:footer */
.site-footer {
    background-color: var(--color-bg-dark);
    color: rgba(245, 246, 250, 0.8);
    padding: 80px 0 40px;
}

.footer-logos {
    display: inline-flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-logos img {
    height: 25px;
    object-fit: contain;
}

.copyright {
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 5px 5px;
    border-radius: 8px;
    text-align: center;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.footer-about {
    max-width: 425px;
}

.footer-about h4,
.footer-contact h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.footer-about p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.motto {
    display: flex;
    flex-direction: column;
}

.motto span {
    font-size: 14px;
    color: rgba(245, 246, 250, 0.6);
}

.motto strong {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item a {
    transition: color 0.3s ease;
}

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

.copy-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.copy-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 246, 250, 0.2);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 16px;
}

.made-with {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Modal Glassmorphism Stilleri */
.modal-content {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    font-size: 11px;
}

.modal-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px 20px 0 0;
    backdrop-filter: blur(10px);
}

.modal-title {
    color: #333;
    font-weight: 600;
    font-size: 1.3rem;
}

.modal-body {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.modal-body h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.modal-body h6:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-body ul {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-footer {
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 20px 20px;
    backdrop-filter: blur(10px);
}

.btn-close {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 8px;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.modal-backdrop {
    backdrop-filter: blur(10px);
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

.modal-dialog {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}
