@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #126759;      /* Ana renk - koyu yeşil */
    --primary-dark: #0e5347; /* Ana rengin daha koyu tonu */
    --secondary: #12a19a;    /* İkincil renk - turkuaz */
    --accent: #d9b56e;       /* Vurgu renk - altın */
    --background: #f8fafc;
    --surface: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--body-font);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    font-weight: 400;
}

/* Üst Bar */
.top-bar {
    background-color: var(--surface);
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--background);
    color: var(--text);
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    margin-left: 16px;
    transition: all 0.3s ease;
}

.contact-btn i {
    margin-right: 8px;
}

.contact-btn:hover {
    background-color: var(--background);
}

/* Ana Menü */
.main-nav {
    background-color: var(--surface);
    padding: 16px 24px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    padding: 10px 0;
    max-width: 300px;
    margin-right: 20px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.menu-item {
    font-family: var(--heading-font);
    font-weight: 500;
    text-decoration: none;
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius);
    margin-left: 16px;
    transition: all 0.3s ease;
}

.menu-item.active {
    background-color: var(--background);
    color: var(--primary);
}

.donate-btn {
    background-color: var(--secondary);
    color: white !important;
}

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

/* Hero Bölümü */
.hero-section {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    color: white;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: heroPattern 60s linear infinite;
}

@keyframes heroPattern {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: var(--heading-font);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.calculate-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hesaplama Bölümü */
.calculator-section {
    padding: 48px 24px;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 100px;
}

.calculator-wrapper {
    background-color: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 24px;
    padding: 24px;
}

.calculator-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: none;
    background-color: var(--background);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--text);
    font-family: var(--heading-font);
    font-weight: 500;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
}

.info-box {
    background-color: var(--background);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-box.warning {
    background-color: #fff3cd;
    border: 1px solid var(--accent);
}

.info-box.warning i {
    color: var(--accent);
}

.info-box.danger {
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
}

.info-box.danger i {
    color: #e53e3e;
}

.info-box.danger p {
    color: #c53030;
}

.info-box i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 2px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    background-color: var(--background);
    padding: 24px;
    border-radius: var(--radius);
}

.amount-input {
    position: relative;
    display: flex;
    align-items: center;
    margin: 16px 0 32px 0;
}

.amount-input input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1.1rem;
}

.amount-input .currency {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.preview-amount {
    position: absolute;
    right: 16px;
    bottom: -20px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: none;
}

.preview-amount.show {
    display: block;
}

.preview-amount i {
    color: var(--primary);
    margin-right: 8px;
}

/* Seçili döviz gösterimi */
#selected-currency {
    font-weight: 500;
    color: var(--primary);
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 48px 24px;
    background-color: var(--background);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    background-color: var(--surface);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info h2 {
    margin-bottom: 32px;
    color: var(--primary);
    font-size: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    font-size: 24px;
    color: var(--primary);
    background-color: var(--background);
    padding: 12px;
    border-radius: var(--radius);
}

.info-content h3 {
    margin-bottom: 8px;
    color: var(--text);
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 4px;
}

.info-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Hesap Numaraları Sayfası Stilleri */
.accounts-section {
    padding: 48px 24px;
    background-color: var(--background);
    min-height: calc(100vh - 200px);
}

.accounts-container {
    max-width: 900px;
    margin: 0 auto;
}

.accounts-container h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    font-family: var(--heading-font);
}

.bank-card {
    background-color: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 103, 89, 0.1);
}

.bank-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(18, 103, 89, 0.1);
}

.bank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: var(--primary);
    color: white;
}

.bank-header:hover {
    background: var(--primary-dark);
}

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

.bank-logo i {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 8px;
}

.bank-logo h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--heading-font);
}

.toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.account-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--surface);
    padding: 0 24px;
}

.bank-card.active .account-details {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
    padding: 24px;
}

.bank-card.active .toggle-icon {
    transform: rotate(180deg);
}

.detail-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(18, 103, 89, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--text);
    min-width: 140px;
    font-size: 0.95rem;
}

.detail-item .value {
    color: var(--text-light);
    flex: 1;
    font-family: 'Open Sans', monospace;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    margin-left: 12px;
}

.copy-btn:hover {
    background-color: rgba(217, 181, 110, 0.1);
    transform: scale(1.1);
}

.copy-btn i {
    font-size: 16px;
}

/* Animasyonlar */
@keyframes slideDown {
    from { max-height: 0; }
    to { max-height: 1000px; }
}

@keyframes slideUp {
    from { max-height: 1000px; }
    to { max-height: 0; }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .accounts-container h2 {
        font-size: 2rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .detail-item .label {
        min-width: 100%;
    }
}

.result-box {
    background-color: var(--surface);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.result-box h3 {
    color: var(--primary);
    font-size: 1.5rem;
    text-align: center;
}

.result-amount {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

/* Zekat Rehberi Bölümü */
.zekat-guide-section {
    padding: 64px 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.zekat-guide-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 48px;
}

.guide-tabs {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.guide-tab {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    width: 250px;
}

.guide-tab:hover {
    transform: translateY(-5px);
}

.guide-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.guide-tab h3 {
    color: var(--text);
    font-size: 1.2rem;
    line-height: 1.4;
    font-family: var(--heading-font);
    font-weight: 600;
}

.guide-content {
    position: relative;
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.guide-text {
    display: none;
    animation: fadeIn 0.5s ease;
}

.guide-text.active {
    display: block;
}

.guide-text h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.guide-text h5 {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 24px 0 16px 0;
    font-weight: 600;
}

.guide-text p {
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
    text-align: justify;
}

.guide-text ul {
    list-style: none;
    padding: 0;
}

.guide-text li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.guide-text li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Sıkça Sorulan Sorular Bölümü */
.faq-section {
    padding: 64px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 48px;
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--text);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--secondary);
}

.faq-item.active .faq-question span,
.faq-item.active .faq-question i {
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}

.faq-item .fa-chevron-down {
    transition: transform 0.3s ease;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer p {
    color: var(--text);
    line-height: 1.8;
    text-align: justify;
}

/* Footer Bölümü */
.footer-section {
    background-color: var(--primary-dark);
    color: white;
    padding: 64px 24px 24px 24px;
    margin-top: 64px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.kamu-yarari {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--radius);
}

.kamu-yarari i {
    font-size: 24px;
    color: #ffd700;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-list i {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 16px;
}

.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;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

.calculator-title {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--heading-font);
}

.calculator-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.expenses-checkbox {
    margin: 16px 0;
}

.expenses-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.expenses-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

#expenses-input {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* Başlık stilleri */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
}

/* Kopyalandı bildirimi */
.copy-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.copy-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Gümüş sekmesi için özel stiller */
#gumus-content .preview-amount {
    display: none;
    color: var(--text-light);
}

#gumus-content .preview-amount.show {
    display: block;
}

.add-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.add-btn:hover {
    background-color: var(--primary-dark);
    opacity: 0.9;
}

/* Hesap Özeti Alanı */
.calculator-summary {
    background-color: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.summary-header {
    background-color: var(--primary);
    color: white;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.summary-header::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    top: -50%;
    left: -50%;
    z-index: 1;
}

.summary-header h3 {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--heading-font);
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-header h3::before {
    content: '\f53b';  /* FontAwesome calculator icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: var(--radius);
}

.summary-header p {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 60px;
}

.summary-items {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: var(--background);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.summary-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-type {
    font-weight: 500;
    color: var(--text);
    font-size: 1.1rem;
}

.item-amount {
    color: var(--text-light);
    font-size: 0.95rem;
}

.remove-item {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: rgba(18, 103, 89, 0.1);
}

.remove-item:hover {
    background-color: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.summary-totals {
    padding: 24px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.total-row:last-child {
    border-bottom: none;
}

.total-row.highlight {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.25rem;
    padding-top: 24px;
}

.calculate-final-btn {
    width: 100%;
    background: linear-gradient(to right, var(--accent), #e4c17f);
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--radius);
    margin: 24px;
    width: calc(100% - 48px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 1.1rem;
}

.calculate-final-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 181, 110, 0.3);
}

/* Select (Açılır Menü) Stilleri */
.currency-select select,
#asset-type,
#gold-type,
#debt-currency,
#debt-gold-type {
    appearance: none;
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--text);
    background-color: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

.currency-select select:hover,
#asset-type:hover,
#gold-type:hover,
#debt-currency:hover,
#debt-gold-type:hover {
    border-color: var(--primary);
    background-color: var(--background);
}

.currency-select select:focus,
#asset-type:focus,
#gold-type:focus,
#debt-currency:focus,
#debt-gold-type:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(18, 103, 89, 0.1);
}

/* Select container stilleri */
.select-container {
    position: relative;
    margin-bottom: 16px;
}

.select-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

/* Select option stilleri */
.currency-select select option,
#asset-type option,
#gold-type option,
#debt-currency option,
#debt-gold-type option {
    padding: 12px;
    font-size: 1rem;
    background-color: var(--surface);
    color: var(--text);
}

/* Alt Menü - Daha Şık Tasarım */
.site-map {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #eee;
    position: relative;
}

.site-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #126759, #12a19a, #126759);
}

.site-map .site-map-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.site-map .site-map-grid > div {
    position: relative;
    padding-left: 15px;
}

.site-map .site-map-grid > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #126759, transparent);
}

.site-map .site-map-grid h2 {
    color: #126759;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.site-map .site-map-grid h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #126759;
}

.site-map .site-map-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-map .site-map-grid ul li {
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.site-map .site-map-grid ul li:hover {
    transform: translateX(5px);
}

.site-map .site-map-grid ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 15px;
}

.site-map .site-map-grid ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #126759;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
}

.site-map .site-map-grid ul li a:hover {
    color: #126759;
}

.site-map .site-map-grid ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .site-map .site-map-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }
    
    .site-map .site-map-grid > div {
        padding-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .site-map .site-map-grid {
        grid-template-columns: 1fr !important;
    }
    
    .site-map {
        padding: 40px 0;
    }
}