/* CSS Reset and Base Styles */

/*
1620 x 600 px bannerlar olacak.

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

:root {
    --color-burgundy: #C81E1E;
    --color-red-dark: #8A1414;
    --color-orange: #FF6B00;
    --color-black: #171412;
    --color-gray-dark: #2b2724;
    --color-gray: #6b6560;
    --color-gray-light: #f5f3f1;
    --color-white: #ffffff;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: var(--font-sans);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

.logo-text h1 {
    font-size: 1.25rem;
    color: var(--color-burgundy);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--color-orange);
}

.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    position: relative;
    color: var(--color-gray);
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-burgundy), var(--color-orange));
}

.nav-link.login-btn {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-link.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--color-burgundy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid var(--color-gray-light);
    padding: 1rem;
    gap: 0.5rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link-mobile:hover {
    background: var(--color-gray-light);
}

.nav-link-mobile.active {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    color: white;
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-black), var(--color-gray-dark));
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-section h3 {
    color: var(--color-orange);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-orange);
    transform: scale(1.2) rotate(5deg);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--color-orange);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    color: white;
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    color: white;
    font-size: 1.125rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
}

/* Responsive */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .container-small {
        padding: 0 2rem;
    }

    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo-text h1 {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.7), rgba(139, 21, 56, 0.5), rgba(26, 26, 26, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    max-width: 768px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-orange);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-orange), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--color-gray);
    max-width: 672px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.feature-card p {
    color: var(--color-gray);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 256px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-black), var(--color-gray-dark));
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero (for inner pages) */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(139, 21, 56, 0.9), rgba(255, 107, 53, 0.8));
}

.page-hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.page-hero-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    max-width: 768px;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.content-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
}

.content-card p {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-burgundy {
    color: var(--color-burgundy);
    font-weight: 600;
}

.highlight-orange {
    color: var(--color-orange);
    font-weight: 600;
}

/* Vision/Mission Cards */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(243, 244, 246, 1), white);
    border: 2px solid var(--color-gray-light);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.info-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: rotate(360deg);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.info-card p {
    color: var(--color-gray);
    line-height: 1.8;
}

/* Quote Section */
.quote-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    text-align: center;
}

.quote-content {
    max-width: 896px;
    margin: 0 auto;
    color: white;
}

.quote-mark {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

/* Staff Section */
.staff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.staff-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.staff-image {
    position: relative;
    height: 256px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.staff-info {
    padding: 1.5rem;
}

.staff-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--color-black);
}

.staff-title {
    color: var(--color-orange);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.staff-department {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 0.75rem;
}

.staff-info p {
    color: var(--color-gray);
}

/* Contact Form */
.contact-section {
    padding: 5rem 0;
    background: white;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-burgundy);
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.form-group textarea {
    resize: none;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--color-black);
}

.contact-info-card p {
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--color-gray-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.1), rgba(255, 107, 53, 0.1));
}

.map-content {
    text-align: center;
}

.map-content svg {
    color: var(--color-burgundy);
    margin: 0 auto 1rem;
}

.map-content p {
    color: var(--color-gray);
    font-weight: 500;
}

.quick-contact-card {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    padding: 2rem;
    border-radius: 12px;
    color: white;
}

.quick-contact-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.quick-contact-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.quick-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-contact-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.3s ease;
}

.quick-contact-links a:hover {
    opacity: 0.8;
}

.faq-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.faq-item p {
    color: var(--color-gray);
}

/* Story Highlights (öne çıkanlar) */
.stories-section {
    padding: 2rem 0 1rem;
    background: white;
    border-bottom: 1px solid var(--color-gray-light);
}

.stories-row {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem 0 1rem;
    scrollbar-width: thin;
}

.stories-row::-webkit-scrollbar {
    height: 6px;
}

.stories-row::-webkit-scrollbar-thumb {
    background: var(--color-gray-light);
    border-radius: 10px;
}

.story-item {
    flex: 0 0 auto;
    width: 92px;
    text-align: center;
    cursor: pointer;
}

.story-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-burgundy));
    padding: 3px;
    margin: 0 auto 0.5rem;
    transition: transform 0.25s ease;
}

.story-item:hover .story-ring {
    transform: scale(1.08);
}

.story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid white;
    overflow: hidden;
    background: var(--color-gray-light);
}

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

.story-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Hero Banner Carousel (3 slot, ok butonlu) */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: var(--color-black);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.9), rgba(255, 107, 0, 0.85));
    color: white;
    text-align: center;
    padding: 1rem;
}

.carousel-slide-placeholder svg {
    opacity: 0.85;
}

.carousel-slide-placeholder span {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.95;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: white;
}

.carousel-caption h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.carousel-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(23, 20, 18, 0.45);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--color-orange);
    transform: translateY(-50%) scale(1.08);
}

.carousel-arrow.prev {
    left: 16px;
}

.carousel-arrow.next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 14px;
    right: 20px;
    display: flex;
    gap: 0.4rem;
    z-index: 10;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-orange);
    width: 22px;
    border-radius: 5px;
}

/* Achievements Page */
.achievement-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.achievement-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.achievement-image {
    height: 200px;
    overflow: hidden;
}

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

.achievement-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.achievement-tag {
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-orange));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.achievement-date {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.achievement-body h3 {
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.achievement-body p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* Announcements Page */
.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.announcement-item {
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 1.75rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-left: 4px solid var(--color-orange);
}

.announcement-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateX(4px);
}

.announcement-item.pinned {
    border-left-color: var(--color-burgundy);
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.04), white);
}

.announcement-date-badge {
    flex-shrink: 0;
    width: 64px;
    text-align: center;
    background: var(--color-gray-light);
    border-radius: 10px;
    padding: 0.6rem 0.4rem;
}

.announcement-date-badge .day {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-burgundy);
    line-height: 1;
}

.announcement-date-badge .month {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.announcement-content h3 {
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 0.4rem;
}

.announcement-content .announcement-meta {
    font-size: 0.8rem;
    color: var(--color-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.announcement-content p {
    color: var(--color-gray);
}

.success-message {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero {
        height: 700px;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .stat-label {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-carousel {
        height: 460px;
    }

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero {
        height: 500px;
    }

    .page-hero-content h1 {
        font-size: 4rem;
    }

    .content-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-info-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .achievement-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* ─────────────────────────────────────────────
   CMS — Duyuru Bandı (Admin panelinden yönetilir)
   ───────────────────────────────────────────── */
.cms-announcement-bar {
    background: var(--primary, #1f3c88);
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    padding: 8px 12px;
}

/* ─────────────────────────────────────────────
   CMS Admin Panel — İçerik Yönetimi
   ───────────────────────────────────────────── */
.cms-field-card {
    background: var(--surface, #fff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

.cms-field-card label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.cms-field-card input[type="text"],
.cms-field-card textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}

.cms-field-card textarea {
    min-height: 90px;
    resize: vertical;
}

.cms-field-preview {
    max-width: 220px;
    max-height: 120px;
    border-radius: 8px;
    margin-top: 10px;
    display: block;
    object-fit: cover;
}

.cms-field-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

.cms-field-actions .btn-reset {
    background: none;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    color: #6b7280;
}

.cms-save-bar {
    position: sticky;
    bottom: 0;
    background: var(--surface, #fff);
    padding: 14px 20px;
    border-top: 1px solid var(--border, #e5e7eb);
    display: flex;
    justify-content: flex-end;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}