/* Design System & Reset */
:root {
    --primary-color: #1b5e20; /* Royal Green */
    --primary-dark: #0d3b12;
    --secondary-color: #c5a059; /* Bronze/Gold */
    --accent-color: #d32f2f; /* Alert Red for important info */
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(0,0,0,0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f0f4f0; /* Softer background */
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs Styling */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    /* Removed heavy 80px blur for speed optimization */
    opacity: 0.3;
}

.blob {
    position: absolute;
    border-radius: 50%;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: drift 20s infinite alternate;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    animation: drift 25s infinite alternate-reverse;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #81c784 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: drift 15s infinite alternate;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

/* Branded Overlay */
.branded-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 20h4v-4h-4v4zm0-8h4v-4h-4v4zm8 16h4v-4h-4v4zm0-8h4v-4h-4v4zm8 16h4v-4h-4v4zm0-8h4v-4h-4v4zm8 16h4v-4h-4v4zm0-8h4v-4h-4v4zM2 40h4v-4H2v4zm0-8h4v-4H2v4zm8 16h4v-4h-4v4zm0-8h4v-4h-4v4zm8 16h4v-4h-4v4zm0-8h4v-4h-4v4zm8 16h4v-4h-4v4zm0-8h4v-4h-4v4zM40 2h4V-2h-4v4zm0 8h4v-4h-4v4zm8 16h4v-4h-4v4zm0-8h4v-4h-4v4zm8 16h4v-4h-4v4zm0-8h4v-4h-4v4zm8 16h4v-4h-4v4zm0-8h4v-4h-4v4z' fill='%231b5e20' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

.bg-light { background-color: var(--bg-light); }

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-dark);
    line-height: 1.2;
}

/* Navbar */
#navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(27, 94, 32, 0.1);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    gap: 2px;
}

.logo-icon {
    display: none; /* Removed for a high-end minimalist look */
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    line-height: 0.9;
    text-transform: uppercase;
}

.logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 3px;
    margin-top: 5px;
    border-top: 1px solid var(--secondary-color);
    padding-top: 4px;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.btn-phone {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

.btn-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
/* Hero Section (Video Version) */
#hero {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center; /* Back to center for overall content */
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    background: #1b5e20;
}

#hero h1 {
    position: absolute;
    top: 100px; /* Right below navbar */
    left: 50%;
    transform: translateX(-50%) translateY(-30px);
    width: 90%;
    font-size: 2.8rem;
    color: var(--white);
    text-align: center;
    margin: 0;
    z-index: 10;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    opacity: 0;
    animation: heroEntranceTop 1s forwards ease-out 0.5s;
}

@keyframes heroEntranceTop {
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Moved to positive z-index */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2; /* Between video and content */
}

.hero-content {
    position: relative;
    z-index: 3; /* Always on top */
    max-width: 800px;
}

/* Note: #hero h1 CSS has been moved up and merged */

#hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    font-weight: 400;
    transform: translateY(-30px);
    animation: heroEntrance 1s forwards ease-out 0.8s;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #b08e4a;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
    margin-left: 20px;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
}

.btn-full { width: 100%; display: block; }

/* Stats Section */
#hizmetler {
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Pricing Section */
#fiyatlar { padding: 100px 0; }

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 { font-size: 36px; margin-bottom: 15px; }

.underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.pricing-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eee;
}

.card-content { padding: 30px; }

.card-content h3 { font-size: 24px; margin-bottom: 10px; }

.price-range {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.group-tag {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    color: var(--secondary-color);
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.65rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
    z-index: 10;
}

.pricing-card {
    position: relative; /* Ensure tags are positioned correctly */
}

.badge {
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

.price-groups {
    margin-bottom: 20px;
}

.price-groups p {
    margin-bottom: 5px;
    font-size: 16px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.features i {
    color: var(--primary-color);
    margin-right: 15px;
}

.pricing-card.highlight {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.img-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    color: var(--primary-color);
    font-size: 80px;
}

/* How it Works */
#nasil-calisir { padding: 100px 0; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    counter-reset: step;
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step h4 { margin-bottom: 15px; font-size: 20px; }

/* FAQ Section */
#sss { padding: 100px 0; }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover { background: #f1f8e9; }

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fafafa;
}

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

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

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 20px;
}

footer .logo { color: var(--white); margin-bottom: 20px; display: inline-block; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

footer h4 { color: var(--secondary-color); margin-bottom: 25px; }

.footer-contact p { margin-bottom: 15px; display: flex; align-items: center; }

.footer-contact i { margin-right: 15px; color: var(--secondary-color); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.form-group { margin-bottom: 20px; }

.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}


/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

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

.hidden { display: none; }

.success-icon {
    font-size: 60px;
    color: #2e7d32;
    text-align: center;
    margin-bottom: 20px;
}

/* Premium MP3 Player in Navbar */
.nav-music {
    margin-left: 15px;
}

.mp3-player-capsule {
    display: flex;
    align-items: center;
    background: rgba(27, 94, 32, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 5px 15px;
    border-radius: 50px;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.player-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.status-msg {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 700;
}

.wave-container {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
    margin-top: 2px;
}

.wave-bar {
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 2px;
}

.mp3-player-capsule.playing .wave-bar {
    animation: waveAnim 0.8s ease-in-out infinite alternate;
}

.mp3-player-capsule.playing .wave-bar:nth-child(2) { animation-delay: 0.2s; }
.mp3-player-capsule.playing .wave-bar:nth-child(3) { animation-delay: 0.4s; }

@keyframes waveAnim {
    from { height: 20%; }
    to { height: 100%; }
}

.music-btn {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.music-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.audio-control { display: none; } /* Hide old floating button */

/* Responsive */
@media (max-width: 768px) {
    #navbar .nav-links { display: none; }
    #hero h1 { font-size: 36px; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-whatsapp { margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Guide Page Styles */
.rehber-body { background-color: #f4f7f4; }

.guide-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 40px;
}

.guide-header h1 { color: var(--white); font-size: 48px; margin-bottom: 15px; }

.search-container {
    max-width: 600px;
    margin: 30px auto 0;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 18px 25px 18px 55px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-size: 16px;
    outline: none;
}

.search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 20px;
}

.guide-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.guide-sidebar { position: relative; }

.sidebar-sticky {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.guide-sidebar h3 { font-size: 18px; margin-bottom: 20px; color: var(--primary-color); }

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

.sidebar-link {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: var(--transition);
    font-weight: 500;
}

.sidebar-link:hover, .sidebar-link.active {
    background: #e8f5e9;
    color: var(--primary-color);
    padding-left: 20px;
}

.guide-content { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); }

.guide-section { margin-bottom: 60px; scroll-margin-top: 100px; }

.guide-section h2 { font-size: 32px; margin-bottom: 25px; border-left: 5px solid var(--secondary-color); padding-left: 15px; }

.guide-card { background: #f9fbf9; border: 1px solid #e0e0e0; padding: 25px; border-radius: 15px; margin: 25px 0; }

.guide-card h4 { margin-bottom: 15px; color: var(--primary-color); }

/* Premium Dua & Arabic Styling */
.dua-box {
    background: #fdfaf5;
    border: 1px solid #f1e4d0;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.arab-text {
    font-family: 'Times New Roman', serif;
    font-size: 28px;
    line-height: 2;
    color: #2c3e50;
    margin-bottom: 20px;
    direction: rtl;
}

.latin-text {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.meaning-text {
    color: #666;
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
}

.highlight-box {
    background: #fff5f5;
    border-left: 5px solid #e74c3c;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
}

.guide-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.guide-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
}

.guide-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.guide-section {
    scroll-margin-top: 120px;
}

@media (max-width: 992px) {
    .guide-layout { grid-template-columns: 1fr; }
    .guide-sidebar { display: none; }
}
/* 3. Premium MP3 Player Capsule */
.nav-music { margin-left: 15px; }
.mp3-player-capsule { display: flex; align-items: center; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(197, 160, 89, 0.4); padding: 6px 15px; border-radius: 50px; gap: 12px; transition: var(--transition); }
.status-msg { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--secondary-color); font-weight: 800; line-height: 1; }
.wave-container { display: flex; align-items: flex-end; gap: 2px; height: 14px; margin-top: 3px; }
.wave-bar { width: 2px; height: 30%; background: var(--secondary-color); border-radius: 2px; transition: height 0.3s ease; }
.mp3-player-capsule.playing .wave-bar { animation: wavePulse 0.6s infinite alternate; }
.mp3-player-capsule.playing .wave-bar:nth-child(2) { animation-delay: 0.2s; }
.mp3-player-capsule.playing .wave-bar:nth-child(3) { animation-delay: 0.4s; }
@keyframes wavePulse { from { height: 30%; } to { height: 100%; } }
.music-btn { width: 32px; height: 32px; background: var(--secondary-color); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; cursor: pointer; transition: var(--transition); }
.music-btn:hover { transform: scale(1.1); filter: brightness(1.2); }

/* Ensure Hero Content is always on top */
.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 11;
    opacity: 0;
    transform: translateY(-30px);
    animation: heroEntrance 1s forwards ease-out 1.1s;
}

@keyframes heroEntrance {
    to { opacity: 1; transform: translateY(0); }
}


/* --- MOBILE HAMBURGER MENU --- */
@media (max-width: 960px) {
  .menu-toggle { display: flex; flex-direction: column; cursor: pointer; z-index: 1001; }
  .menu-toggle .bar { width: 30px; height: 3px; background-color: var(--secondary-color) !important; margin: 5px 0; transition: all 0.3s ease; border-radius: 3px; }
  .nav-links { position: fixed; right: -100%; top: 0; flex-direction: column; background: rgba(27, 94, 32, 0.98); width: 100%; height: 100vh; justify-content: center; text-align: center; transition: 0.4s; z-index: 1000; backdrop-filter: none; }
  .nav-links.active { right: 0 !important; display: flex !important; }
  .nav-links li { margin: 15px 0; }
  .nav-links a { font-size: 1.4rem; color: var(--white); }
  .nav-links a.active { color: var(--secondary-color) !important; font-weight: 700; border-bottom: 2px solid var(--secondary-color); padding-bottom: 5px; }
  
  .nav-links a.active { color: var(--secondary-color) !important; font-weight: 700; border-bottom: 2px solid var(--secondary-color); padding-bottom: 5px; }
  
  /* Hamburger to X Animation */
  .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  
  .nav-music { display: flex !important; margin: 0 15px 0 0; transform: scale(0.85); order: 0; position: relative; } /* Next to hamburger */
  .nav-contact { display: none !important; } 
}

/* Mobile Performance & Global Visibility Fixes */
@media (max-width: 960px) {
  .logo-text { color: var(--primary-color) !important; }
  .logo-text span { color: var(--secondary-color) !important; border-top-color: var(--secondary-color) !important; }
}

/* --- STICKY MOBILE ACTIONS (LEFT & RIGHT) --- */
.sticky-actions {
    position: fixed;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 9999;
    pointer-events: none; /* Allows clicking through the middle space */
}

.sticky-btn {
    pointer-events: auto; /* Re-enable for buttons */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.sticky-btn:active {
    transform: scale(0.9);
}

.sticky-price {
    background: rgba(27, 94, 32, 0.9);
}

.sticky-whatsapp {
    background: #25D366;
}

.sticky-donate {
    background: rgba(197, 160, 89, 0.95); /* Gold/Bronze */
    /* Make the middle button slightly more prominent */
    transform: scale(1.05);
}

.sticky-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    pointer-events: auto;
}

.sticky-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

/* --- MARQUEE SCROLL (KAYAN YAZI) --- */
.marquee-container {
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah - videonun üstünde güzel durur */
    color: var(--secondary-color);
    padding: 10px 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float { display: none !important; } /* Hide old one */
}

