/* ===================================
   DÜŞÜNCE DERNEĞİ - MODERN CSS
   =================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #1e3a5f;
    --primary-dark: #152b47;
    --primary-light: #2d4a70;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;

    --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);

    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;

    --max-width: 1400px;
    --header-height: 80px;
}

/* === RESET & BASE === */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* === SITE FLASH MESSAGES === */
.site-flash{display:flex;align-items:flex-start;gap:10px;padding:12px 16px;border-radius:10px;border:2px solid transparent;font-weight:600;margin:14px 0;box-shadow:var(--shadow-sm)}
.site-flash i{margin-top:2px}
.site-flash--success{background:#ecfdf5;border-color:#a7f3d0;color:#065f46}
.site-flash--error{background:#fee2e2;border-color:#fecaca;color:#7f1d1d}

/* === TOAST NOTIFICATIONS (Unified with Iletisim page) === */
.notification{position:fixed;top:100px;right:-400px;background:var(--bg-white);padding:20px 24px;border-radius:var(--border-radius);box-shadow:var(--shadow-xl);display:flex;align-items:center;gap:16px;z-index:9999;transition:right .3s ease;max-width:350px}
.notification.show{right:30px}
.notification-success{border-left:4px solid var(--success-color)}
.notification-error{border-left:4px solid var(--danger-color)}
.notification i{font-size:1.5rem}
.notification-success i{color:var(--success-color)}
.notification-error i{color:var(--danger-color)}
.notification span{flex:1;color:var(--text-dark)}
@media (max-width: 768px){.notification{max-width:calc(100% - 40px);right:-100%}.notification.show{right:20px}}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* === CONTAINER === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    width: 25%;
    height: 100%;
    position: relative;
}

.logo img {
    height: 85%;
}

.logo span {
    line-height: 1;
}

.logo a {
    position: absolute;
    width: 100%;
    height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu>li>a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--primary-color);
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu>li>a:hover::after,
.nav-menu>li>a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0 20px;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 0;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

.navbar-actions {
    margin-left: -2%;
}

.navbar-actions .login-btn {
    display: flex;
    gap: 8px;
    align-items: center;
    transition: var(--transition);
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.05rem;
}

.navbar-actions .login-btn i {
    font-size: 1.1rem;
}

.navbar-actions .login-btn:hover {
    border: 2px solid var(--text-dark);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 80px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgb(245 158 11 / 29%) 0%, #141e8c00 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-link:hover {
    gap: 12px;
}

/* === STATS SECTION === */
.stats {
    padding: 60px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 1.125rem;
}

/* === SECTION COMMON === */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* === NEWS BANNER SECTION === */
.news-banner {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.news-banner-slider {
    position: relative;
    width: 100%;
    height: 450px;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.news-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.news-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.news-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.92) 0%, rgba(21, 43, 71, 0.88) 100%);
    border-radius: 25px;
}

.news-banner-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 32px;
    z-index: 2;
    height: 100%;
}

.news-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    }
}

.news-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.news-content {
    text-align: center;
}

.news-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 12px;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.news-title {
    font-size: 1.5rem;
    color: var(--bg-white);
    margin-bottom: 8px;
    font-weight: 700;
}

.news-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.news-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bg-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    white-space: nowrap;
}

.news-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    gap: 12px;
}

.news-cta i {
    transition: var(--transition);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--bg-white);
    width: 32px;
    border-radius: 6px;
}

/* === MISSION SECTION === */
.mission {
    background: var(--bg-light);
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* === ACTIVITIES SECTION === */
.activities {
    background: var(--bg-white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.activity-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
}

.activity-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.activity-icon i {
    font-size: 1.75rem;
    color: var(--bg-white);
}

.activity-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.activity-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* === EVENTS SECTION === */
.events {
    background: var(--bg-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.event-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.event-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.event-content {
    padding: 28px 24px;
}

.event-content h3 {
    font-size: 1.375rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.event-detail i {
    color: var(--primary-color);
    width: 18px;
}

.event-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 60px 0;
}

.cta-container {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 48px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.cta-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-text {
    max-width: 700px;
}

.cta-text h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.cta-action {
    margin-top: 8px;
}

.cta-action .btn {
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

/* === DONATION SECTION === */
.donation-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a70 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.4;
}

.donation-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-badge i {
    font-size: 1rem;
    color: white;
}

.section-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donation-header h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.donation-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.donation-wrapper {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* QR Code & IBAN Section */
.donation-qr-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qr-card,
.iban-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.qr-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.qr-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.qr-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.qr-placeholder {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed #cbd5e1;
    gap: 12px;
}

.qr-placeholder i {
    font-size: 4rem;
    color: #94a3b8;
}

.qr-placeholder p {
    font-size: 0.9375rem;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

.qr-instructions {
    background: #f8fafc;
    padding: 14px 16px;
    border-radius: 8px;
    text-align: center;
}

.qr-instructions p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.qr-instructions i {
    color: var(--primary);
    font-size: 1rem;
}

/* IBAN Card */
.iban-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f1f5f9;
}

.iban-header i {
    font-size: 1.25rem;
    color: var(--primary);
}

.iban-header span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.iban-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-row label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.iban-row {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.iban-copy-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.iban-number {
    font-family: 'Courier New', monospace;
    font-size: 0.9375rem;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
}

.copy-btn {
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: #10b981;
}

.iban-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.iban-note i {
    color: #10b981;
    font-size: 1rem;
}

.iban-note span {
    font-size: 0.875rem;
    color: #166534;
    font-weight: 500;
}

/* Donor Information Form */
.form-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    position: relative;
    width: 48px;
    height: 24px;
    -webkit-appearance: none;
    appearance: none;
    background: #cbd5e1;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    outline: none;
    border: none;
}

.form-checkbox input[type="checkbox"]:checked {
    background: var(--primary-dark);
}

.form-checkbox input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.form-checkbox input[type="checkbox"]:checked::before {
    left: 26px;
}

.form-checkbox input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    cursor: pointer;
}

.privacy-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-link:hover {
    color: var(--primary-dark);
}

.btn-submit {
    width: fit-content !important;
    padding: 16px 32px !important;
    font-size: 1.0625rem !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: var(--primary-color) !important;
    color: var(--bg-white) !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.btn-submit:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25) !important;
}

.btn-submit:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.2) !important;
}

.form-note {
    background: #fef3c7;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #92400e;
    margin: 0;
    display: flex;
    align-items: start;
    gap: 10px;
    line-height: 1.6;
    border-left: 4px solid #f59e0b;
}

.form-note i {
    color: #f59e0b;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* === FOOTER === */
.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo i {
    font-size: 2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--bg-white);
}

.social-links a:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--bg-white);
    padding-left: 8px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info li i {
    color: var(--bg-white);
    margin-top: 3px;
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .features-grid,
    .activities-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ===================================
   HAKKIMIZDA PAGE SPECIFIC STYLES
   =================================== */

/* Content Card */
.content-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--border-color);
}

.content-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.03), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.content-card:hover {
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.15);
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.content-card:hover::after {
    opacity: 1;
}

.content-card .card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(30, 58, 95, 0.15);
    transition: var(--transition);
    position: relative;
}

.content-card .card-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.content-card:hover .card-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(30, 58, 95, 0.25);
}

.content-card:hover .card-icon::after {
    opacity: 0.1;
}

.content-card .card-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.content-card .card-title {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 16px;
}

.content-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.text-content {
    color: var(--text-gray);
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content p:last-child {
    margin-bottom: 0;
}