/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
    display: block;
}

.logo {
    margin: 0;
    padding: 0;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.65) 0%, rgba(59, 130, 246, 0.70) 50%, rgba(99, 102, 241, 0.68) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--white);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-down:hover {
    transform: translateX(-50%) scale(1.2);
    color: var(--accent-color);
}

.scroll-down svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

/* Section Genel Stiller */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Management Section */
.management-section {
    background: var(--bg-light);
}

.management-section .section-title {
    color: #2f5d9d;
}

.management-section .title-underline {
    background: #2f5d9d;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.management-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.management-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.management-avatar svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

/* Tüm avatar'lar yeşil */
.avatar-color-1 .management-avatar,
.avatar-color-2 .management-avatar,
.avatar-color-3 .management-avatar,
.avatar-color-4 .management-avatar,
.avatar-color-5 .management-avatar,
.avatar-color-6 .management-avatar,
.avatar-color-7 .management-avatar {
    background: linear-gradient(135deg, #10b981, #34d399);
}

/* İsimler önceki renklerinde */
.avatar-color-1 h3 {
    color: #3b82f6;
}

.avatar-color-2 h3 {
    color: #10b981;
}

.avatar-color-3 h3 {
    color: #f59e0b;
}

.avatar-color-4 h3 {
    color: #8b5cf6;
}

.avatar-color-5 h3 {
    color: #ef4444;
}

.avatar-color-6 h3 {
    color: #06b6d4;
}

.avatar-color-7 h3 {
    color: #ec4899;
}

.management-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.management-role {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--text-light) !important;
    margin-top: 0.5rem;
}

.management-card p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Professional Management Section */
.management-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.management-card-professional {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.management-card-professional:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.management-avatar-professional {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f3f4f6;
}

.management-avatar-professional svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.management-info {
    flex: 1;
    text-align: left;
}

.management-card-professional h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.management-role-professional {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Statute Section */
.statute-section {
    background: var(--bg-light);
}

.statute-section .section-title {
    color: #2f5d9d;
}

.statute-section .title-underline {
    background: #2f5d9d;
}

.statute-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.statute-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.statute-text {
    color: #374151;
    line-height: 1.9;
    font-size: 1rem;
}

.statute-text p {
    margin-bottom: 1.2rem;
    color: #374151;
}

.statute-text ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.statute-text ol {
    margin-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.statute-text li {
    margin-bottom: 0.8rem;
    line-height: 1.9;
    color: #374151;
}

.statute-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #2f5d9d;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.statute-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.statute-box h3 {
    color: #1f2937;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.statute-box h4 {
    color: #1f2937;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.statute-box p {
    color: #374151;
    line-height: 1.9;
    font-size: 1rem;
}

.statute-box strong {
    color: #1f2937;
    font-weight: 600;
}

/* Representatives Section */
.representatives-section {
    background: var(--bg-light);
}

.representatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.representative-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.representative-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.rep-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rep-avatar svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.representative-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.rep-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rep-contact {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* İktisadi İşlemler Section */
.iktisadi-section {
    background: var(--white);
    position: relative;
}

.iktisadi-underline {
    background: #10b981;
}

.iktisadi-card {
    border: 2px solid #10b98120;
}

.iktisadi-header {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.bank-header.iktisadi-header {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.iktisadi-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1)) !important;
    border: 2px solid #10b981 !important;
}

.bank-detail-item.highlight.iktisadi-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1)) !important;
    border: 2px solid #10b981 !important;
    font-weight: 600;
}

.bank-details .bank-detail-item.highlight.iktisadi-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1)) !important;
    border: 2px solid #10b981 !important;
}

.iktisadi-iban {
    color: #10b981;
}

.copy-btn.iktisadi-copy-btn {
    background: #10b981 !important;
}

.copy-btn.iktisadi-copy-btn:hover {
    background: #059669 !important;
    transform: scale(1.1);
}

.copy-btn.iktisadi-copy-btn:active {
    transform: scale(0.95);
}

.copy-btn.iktisadi-copy-btn.copied {
    background: #10b981 !important;
}

/* Donation Section */
.donation-section {
    background: var(--bg-light);
    position: relative;
}

.donation-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.donation-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.donation-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.bank-info-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid #3b82f620;
}

.bank-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 2rem;
    text-align: center;
}

.bank-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.bank-details {
    padding: 2.5rem 2rem;
}

.bank-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bank-detail-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.bank-detail-item.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    border: 2px solid #3b82f6;
    font-weight: 600;
}

.detail-label {
    color: var(--text-light);
    font-weight: 500;
    min-width: 120px;
}

.detail-value {
    color: var(--text-dark);
    font-weight: 500;
    text-align: right;
    word-break: break-word;
}

.detail-value.iban {
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    color: #3b82f6;
}

.iban-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
}

.copy-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
    min-width: 36px;
    height: 36px;
}

.copy-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn svg {
    width: 18px;
    height: 18px;
}

.copy-btn.copied {
    background: #10b981;
}

.copy-btn.copied svg {
    display: none;
}

.copy-btn.copied::after {
    content: '✓';
    font-size: 1.2rem;
    font-weight: bold;
}

.donation-note {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(37, 99, 235, 0.05));
    padding: 1.5rem;
    text-align: center;
    border-top: 2px dashed #3b82f6;
}

.donation-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 25px;
    height: 25px;
    color: var(--white);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #111827 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #00a8ff;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

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

    .features-grid,
    .management-grid,
    .management-grid-professional,
    .statute-content,
    .representatives-grid {
        grid-template-columns: 1fr;
    }
    
    .management-card-professional {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .management-avatar-professional {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .management-avatar-professional svg {
        width: 30px;
        height: 30px;
    }
    
    .management-card-professional h3 {
        font-size: 1.1rem;
    }
    
    .management-role-professional {
        font-size: 0.9rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .bank-details {
        padding: 1.5rem 1rem;
    }

    .bank-detail-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
    }

    .detail-label {
        min-width: auto;
        font-size: 0.9rem;
    }

    .detail-value {
        text-align: left;
        font-size: 0.95rem;
    }

    .iban-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .copy-btn {
        min-width: 32px;
        height: 32px;
        padding: 0.4rem;
    }

    .copy-btn svg {
        width: 16px;
        height: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .btn {
        padding: 0.8rem 2rem;
        width: 100%;
        max-width: 320px;
    }

    .logo-img {
        height: 50px;
    }

    .logo h2 {
        font-size: 1.2rem;
    }

    .scroll-down {
        bottom: 3rem;
        width: 40px;
        height: 40px;
    }
}

/* reCAPTCHA form alanı */
.g-recaptcha-wrapper {
    display: flex;
    justify-content: flex-start;
}
.g-recaptcha-wrapper .g-recaptcha {
    transform-origin: left top;
}

/* İletişim formu başarı/hata popup */
.form-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.form-popup[aria-hidden="false"] {
    display: flex;
}
.form-popup-inner {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.form-popup-inner p {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}
.form-popup-inner .form-popup-close {
    cursor: pointer;
}
.form-popup.form-popup-success .form-popup-inner p {
    color: var(--primary-color);
}
.form-popup.form-popup-error .form-popup-inner p {
    color: #dc2626;
}

